Guest User

Untitled

a guest
May 25th, 2022
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         1001
  3. // @namespace    http://tampermonkey.net/
  4. // @version      22.3
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        *://*/*
  8. // @icon         dat a:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant        none
  10. // ==/UserScript==
  11. (function() {
  12.     'use strict';
  13.     const $ = query => document.querySelector(query);
  14.     const elementExists = query => $(query) !== null;
  15.     const domainCheck = domains => new RegExp(domains).test(location.host)
  16.     const searchParams = new URLSearchParams(location.search);
  17.     const isPath = string => new RegExp(string).test(location.pathname)
  18.     const ree = new RegExp(/^\?([^&]+)/);
  19.  
  20.     function redirect(url, blog = true) {
  21.         location = blog ? 'https://faucetpay.nurul-huda.or.id/?url=' + url : url
  22.     }
  23.  
  24.     function waitForElm(query, callback) {
  25.         setTimeout(function() {
  26.             if (elementExists(query)) {
  27.                 callback($(query))
  28.             } else {
  29.                 waitForElm(query, callback)
  30.             }
  31.         }, 1000)
  32.     }
  33.  
  34.     function click(query) {
  35.         $(query).click()
  36.     }
  37.  
  38.     function submit(query) {
  39.         $(query).submit()
  40.     }
  41.  
  42.     function fun(domains, f, ...args) {
  43.         if (typeof f === 'object') {
  44.             if (Array.isArray(f)) f = {'/': f}
  45.             if (!(location.pathname in f)) return;
  46.             const [key, value] = f[location.pathname]
  47.             if (typeof key === 'object' && key.test(location.search)) return redirect(value + RegExp.$1, ...args)
  48.             const searchParams = new URLSearchParams(location.search);
  49.             if (searchParams.has(key)) redirect(value + searchParams.get(key), ...args)
  50.         } else if (domains === '*' || domainCheck(domains)) {
  51.             f(...args)
  52.         }
  53.     }
  54.  
  55.     function funif(ifcondition, ...args) {
  56.         if (ifcondition) {
  57.             fun('*', ...args)
  58.         }
  59.     }
  60.  
  61.     function params(domains, data, url, blog = true, use = null) {
  62.         if (!domainCheck(domains)) return;
  63.         if (typeof data === 'string' && data.split(',').every(p => searchParams.has(p))) {
  64.             use ??= data.split(',')[0]
  65.             redirect(url + searchParams.get(use), blog)
  66.         } else if (typeof data === 'object') {
  67.             if (!(location.pathname in data)) return;
  68.             params(domains, ...data[location.pathname])
  69.         }
  70.     }
  71.  
  72.     function meta(url, ifcon = isPath('/verify/'), regex = ree) {
  73.         if (!ifcon) return;
  74.         const m = location.search.match(regex)
  75.         url = url.replace(/(\$\d+)/g, function(match) {
  76.             const index = +match.replace('$', '')
  77.             return m[index]
  78.         });
  79.         document.head.appendChild(Object.assign(document.createElement('meta'), {
  80.             name: 'referrer',
  81.             content: 'origin'
  82.         }));
  83.         Object.assign(document.createElement('a'), {
  84.             href: url
  85.         }).click();
  86.     }
  87.  
  88.     function re(domains, regex, url) {
  89.         if (!domainCheck(domains)) return;
  90.         if (regex.test(location.pathname)) {
  91.             url = url.replace(/(\$\d+)/g, match => RegExp[match]);
  92.             redirect(url)
  93.         }
  94.     }
  95.     function recaptchaIntervalclick(query, act = 'click', timeInSec = 0.5) {if (elementExists(query)) {const timer = setInterval(function() {if (window.grecaptcha && !!window.grecaptcha.getResponse()) {bp(query)[act](); clearInterval(timer);}}, timeInSec * 1000);}}
  96.  
  97.     function clickIfElementExists(query, timeInSec = 1, funcName = 'setTimeout') {
  98.         if (elementExists(query)) {
  99.             window[funcName](function() {
  100.                 click(query);
  101.             }, timeInSec * 1000);
  102.         }
  103.     }
  104.  
  105.     function recaptchaInterval(query, act = 'submit', timeInSec = 0.5) {
  106.         if (elementExists(query)) {
  107.             const timer = setInterval(function() {
  108.                 if (window.grecaptcha && !!window.grecaptcha.getResponse()) {
  109.                     $(query)[act]();
  110.                     clearInterval(timer);
  111.                 }
  112.             }, timeInSec * 1000);
  113.         }
  114.     }
  115.     if (typeof hcaptcha == "object" && typeof apiCounter == "object") {
  116.         window.app_country_visitor = ""
  117.         window.hcaptcha.getResponse = () => {}
  118.         window.apiCounter.generateURL()
  119.         window.apiCounter.redirectTo($("button.button-element-verification"))
  120.     }
  121.     if (typeof tokenURL == "string") {
  122.         redirect(atob(window.tokenURL))
  123.     }
  124.  
  125.     if (location.host != 'faucetpay.nurul-huda.or.id') {
  126.         const listhide = document.querySelectorAll('#frame,#iframe,#particles-js,#canvas,.banner-inner,.floawing-banner,.floating-banner,.vanta-canvas,.particles-js-canvas-el,#s65c,#ofc9,#overlay,#footerads,.oulcsy,.blog-item,.sticky-bottom,.separator,html body iframe,html iframe,#cookie-pop,.vmyor,.tnjmvneldp')
  127.         listhide.forEach(el => el.remove())
  128.     }
  129.  
  130.     if (location.host != 'coin.mg') {
  131.         if (elementExists('#links')) {
  132.             setInterval(function() {
  133.                 submit('#links > form:nth-child(2)')
  134.             }, 3000);
  135.         }
  136.     }
  137.  
  138.     //temporary solution
  139.     if (elementExists('#go-link')) {
  140.         window.jQuery("#go-link").unbind().submit(function(e) {
  141.             e.preventDefault();
  142.             var form = window.jQuery(this);
  143.             var url = form.attr('action');
  144.             const pesan = form.find('button');
  145.             const notforsale = window.jQuery(".navbar-collapse.collapse");
  146.             const blogger = window.jQuery(".main-header");
  147.             const pemula = window.jQuery(".col-sm-6.hidden-xs");
  148.             window.jQuery.ajax({
  149.                 type: "POST",
  150.                 url: url,
  151.                 data: form.serialize(),
  152.                 beforeSend: function(xhr) {
  153.                     pesan.attr("disabled", "disabled");
  154.                     window.jQuery('a.get-link').text('Bypassed by Bloggerpemula');
  155.                     notforsale.replaceWith('<button class="btn btn-default , col-md-12 text-center" onclick="javascript: return false;"><b>Thanks for using Bypass All Shortlinks Scripts and for Donations , Regards : Bloggerpemula</b></button>');
  156.                     blogger.replaceWith('<button class="btn btn-default , col-md-12 text-center" onclick="javascript: return false;"><b>Thanks for using Bypass All Shortlinks Scripts and for Donations , Regards : Bloggerpemula</b></button>');
  157.                     pemula.replaceWith('<button class="btn btn-default , col-md-12 text-center" onclick="javascript: return false;"><b>Thanks for using Bypass All Shortlinks Scripts and for Donations , Regards : Bloggerpemula</b></button>');
  158.                 },
  159.                 success: function(result, xhr) {
  160.                     redirect(result.url)
  161.                 }
  162.             });
  163.         });
  164.     }
  165.  
  166.     fun('shortzon.com', function() {
  167.         $('.btn-primary.btn').onclick = new Function('console.log("Blocked")')
  168.    })
  169.  
  170.     fun('short.goldenfaucet.io|short.croclix.me|www.adz7short.space|www.shortique.com', function() {
  171.         function fireMouseEvents(query) {
  172.             const element = $(query);
  173.             if (!element) return;
  174.             ['mouseover', 'mousedown', 'mouseup', 'click'].forEach(eventName => {
  175.                 if (element.fireEvent) {
  176.                     element.fireEvent('on' + eventName);
  177.                 } else {
  178.                     const eventObject = document.createEvent('MouseEvents');
  179.                     eventObject.initEvent(eventName, true, false);
  180.                     element.dispatchEvent(eventObject);
  181.                 }
  182.             })
  183.         }
  184.         setInterval(function() {
  185.             if ($("#link").length > 0) {
  186.                 fireMouseEvents("#link")
  187.             }
  188.         }, 500);
  189.         setTimeout(function() {
  190.             if ($("input#continue").length > 0) {
  191.                 fireMouseEvents("input#continue");
  192.             }
  193.             if ($("a#continue.button").length > 0) {
  194.                 fireMouseEvents('a#continue.button')
  195.             }
  196.         }, 9000);
  197.         setTimeout(function() {
  198.             if ($('#btn-main').length < 0) return;
  199.             fireMouseEvents('#btn-main')
  200.         }, 5000);
  201.     })
  202.  
  203.     waitForElm('div#wpsafe-link > a', function(element) {
  204.         const regex = /redirect=(.*)',/;
  205.         const m = regex.exec(element.onclick.toString())[1]
  206.         location.href = JSON.parse(atob(m)).safelink
  207.     })
  208.  
  209.     recaptchaInterval('#userForm')
  210.     recaptchaInterval('#ShortLinkId')
  211.     recaptchaInterval('#file-captcha')
  212.     recaptchaInterval('#lview > form')
  213.     recaptchaInterval('#link-view')
  214.     recaptchaInterval('form.text-center')
  215.     recaptchaInterval('#wpsafelink-landing')
  216.     recaptchaInterval('.col-12 > form:nth-child(1)')
  217.     recaptchaInterval('.contenido > form:nth-child(2)')
  218.     recaptchaInterval('#showMe > center:nth-child(4) > form:nth-child(1)')
  219.     recaptchaInterval('#showMe > center:nth-child(1) > center:nth-child(4) > form:nth-child(1)')
  220.     recaptchaInterval('#adb-not-enabled > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > form:nth-child(1)')
  221.     recaptchaIntervalclick('.m-2.btn-captcha.btn-outline-primary.btn')
  222.     recaptchaIntervalclick('button#continue.btn.btn-primary.btn-captcha')
  223.     recaptchaIntervalclick('#yuidea-btn-before.yu-btn.yu-blue')
  224.     recaptchaIntervalclick('#yuidea-btn-after.yu-blue.yu-btn')
  225.     clickIfElementExists('.recaptcha-checkbox-border', 3)
  226.     clickIfElementExists('button#btn6.yu-btn.yu-go', 3)
  227.     clickIfElementExists('.mb-3 > .btn-primary.btn', 3)
  228.     clickIfElementExists('.yu-blue.yu-btn', 3)
  229.     clickIfElementExists('.fTk7vd > a:nth-child(1)', 3)
  230.     clickIfElementExists('#links > a:nth-child(2)', 3)
  231.     clickIfElementExists('button#showTimerText.btn.btn-accent', 3)
  232.     clickIfElementExists('#wpsafelinkhuman > img:nth-child(1)', 3)
  233.     clickIfElementExists('div.box-main:nth-child(2) > div:nth-child(4) > a:nth-child(1)', 3)
  234.     clickIfElementExists('button#btn6.g-recaptcha.btn.btn-primary', 3)
  235.     clickIfElementExists('button#btn6.btn.btn-outline-primary.btn-captcha.m-2', 3)
  236.     clickIfElementExists('button#submit-button.btn.btn-primary', 3)
  237.     clickIfElementExists('#link1s-snp > button:nth-child(1)', 3)
  238.     clickIfElementExists('button.btn-main.get-link', 3)
  239.     clickIfElementExists('.next-button.btn-lg.text-white.btn-info.btn', 3)
  240.     clickIfElementExists('.next-button.text-white.btn-info.btn', 3)
  241.     clickIfElementExists('.btn-outline-white.btn', 3)
  242.     clickIfElementExists('button#bt.btn.btn-info.btn-lg', 3)
  243.     clickIfElementExists('button#btn-main.btn.btn-main', 3)
  244.     clickIfElementExists('button#btn-get-link', 3)
  245.     clickIfElementExists('.col-md-8 > form:nth-child(17) > button:nth-child(3)', 3)
  246.     clickIfElementExists('#cl1 > center:nth-child(1) > a:nth-child(1)', 3)
  247.     clickIfElementExists('div#wpsafe-generate a img', 3)
  248.     clickIfElementExists('a.submitBtn.btn.btn-primary', 3)
  249.     clickIfElementExists('button#submitbtn.g-recaptcha.btn.btn-primary', 3)
  250.     clickIfElementExists('p.getlink', 3)
  251.     clickIfElementExists('button#getlink.getlink.disabled', 3)
  252.     clickIfElementExists('#link1s-snp > button:nth-child(1)', 3)
  253.     clickIfElementExists('#cl1 > a:nth-child(2) > font:nth-child(1)', 3)
  254.     clickIfElementExists('button#mdt.custom-btn.btn-7', 3)
  255.     clickIfElementExists('input#btn-main.btn.btn-primary', 3)
  256.     clickIfElementExists('#cl1 > a:nth-child(1) > font:nth-child(1) > b:nth-child(1)', 3)
  257.     clickIfElementExists('input.btn.btn-primary', 5)
  258.     clickIfElementExists('div.complete a.btn', 5)
  259.     clickIfElementExists('#molien > a:nth-child(1)', 5)
  260.     clickIfElementExists('div#wpsafe-link a img', 5)
  261.     clickIfElementExists('#wpsafe-snp > a:nth-child(1)', 5)
  262.     clickIfElementExists('#wpsafe-snp > center:nth-child(1) > a:nth-child(1)', 5)
  263.     clickIfElementExists('a#surl1.btn-main.get-link', 5)
  264.     clickIfElementExists('button#invisibleCaptchaShortlink.btn-main.get-link', 5)
  265.     clickIfElementExists('.btn-captcha.btn-sm.btn-primary.btn', 5)
  266.     clickIfElementExists('button#invisibleCaptchaShortlink.btn.ybtn.ybtn-accent-color.btn-captcha', 5)
  267.     clickIfElementExists('button#invisibleCaptchaShortlink.btn.btn-outline-primary.btn-lg.btn-block.btn-captcha', 5)
  268.     clickIfElementExists('button#invisibleCaptchaShortlink.btn.btn-primary.btn-goo.btn-captcha', 7)
  269.     clickIfElementExists('button.btn.btn-success', 7)
  270.     clickIfElementExists('div.lds-ellipsis', 9)
  271.     clickIfElementExists('#wg-form > .btnstep1.btn', 3, 'setInterval')
  272.     clickIfElementExists('a#finalx22.btn.btnstep1', 3, 'setInterval')
  273.     clickIfElementExists('#makingdifferenttimer', 3, 'setInterval')
  274.     clickIfElementExists('#myButtonn > span:nth-child(1)', 3, 'setInterval')
  275.     clickIfElementExists('#mdt.btn.btn-primary.text-white.next-button', 3, 'setInterval')
  276.     clickIfElementExists('a.get-link.bg-red-600.px-8.py-2.rounded-md.inline-block', 3, 'setInterval')
  277.     clickIfElementExists('button#main-button.claim-button.btn.btn-lg.btn-accent', 3, 'setInterval')
  278.     clickIfElementExists('.next-button.btn-lg.btn-info.btn', 3, 'setInterval')
  279.     clickIfElementExists('input.g-recaptcha.btn.btn-primary', 3, 'setInterval')
  280.     clickIfElementExists('.get-link.ybtn-accent-color.ybtn.btn', 3, 'setInterval')
  281.     clickIfElementExists('#go_d', 5, 'setInterval')
  282.     clickIfElementExists('#nextButton', 7, 'setInterval')
  283.     clickIfElementExists('.btn-sm.btn-default.btn', 5, 'setInterval')
  284.     clickIfElementExists('#makingdifferenttimer9 > .btn-success.btn', 5, 'setInterval')
  285.     clickIfElementExists('#yuidea-btmbtn', 5, 'setInterval')
  286.     clickIfElementExists('#link1s.btn-primary.btn', 5, 'setInterval')
  287.     clickIfElementExists('a.btn-main.get-link', 5, 'setInterval')
  288.     clickIfElementExists('a.btn.m-2.btn-success', 5, 'setInterval')
  289.     clickIfElementExists('.btn-danger.btn-raised', 5, 'setInterval')
  290.     clickIfElementExists('.close-me > a:nth-child(1)', 5, 'setInterval')
  291.     clickIfElementExists('button.btn-block.btn-success', 5, 'setInterval')
  292.     clickIfElementExists('a.btn.btn-primary.get-link.text-white', 5, 'setInterval')
  293.     clickIfElementExists('div.column:nth-child(2) > font:nth-child(2) > a:nth-child(8)', 3)
  294.     clickIfElementExists('#btn6.btn-captcha.btn-primary.btn', 5, 'setInterval')
  295.     clickIfElementExists('button#link.btn.btn-primary', 5, 'setInterval')
  296.     clickIfElementExists('button#get_link.btn.btn-primary.btn-sm', 7, 'setInterval')
  297.  
  298.     let temp = 'nukl.ink|tronex.biz|playgotoken.com|iir.ai|celinks.net|cryptowidgets.net|urlchanger.ml|nabits.xyz|d.bawabatak.com|www.adshort-url.com|linksfy.co|mitly.us|skincarie.com|linksos.live|yocto.link|sl.claimfreebits.com'
  299.     fun(temp, click, 'button.btn:nth-child(4)');
  300.     fun('marocclickers.xyz', click, '#link-view > div:nth-child(5) > center:nth-child(5) > div:nth-child(1)');
  301.     fun('jameeltips.us', click, '#continue_button_1');
  302.     fun('shortit.pw', click, '.pulse.btn-primary.btn');
  303.     fun('techload.co|largestpanel.in|earn.largestpanel.in', click, '#tp-snp2');
  304.     fun('1link.club', click, '#download');
  305.     fun('1ink.cc', click, '#countingbtn');
  306.     fun('mdn.world', click, '.btn-primary.btn');
  307.     fun('yoshare.net', click, '#yuidea');
  308.     fun('bildirim.eu', click, '#btnPermission');
  309.     fun('up-load.one', click, '#submitbtn');
  310.     fun('ashort2a-bro.tk|ashort1a.xyz', click, '#proceed');
  311.     fun('stfly.me', submit, '#submit_data');
  312.     fun('coinsparty.com', submit, '.box-body > form:nth-child(2)');
  313.     fun('makemoneywithurl.com', submit, '#hidden form');
  314.     fun('adshort.space|go.techgeek.digital', submit, '.text-center > form:nth-child(4)');
  315.     fun('forex-trnd.com', submit, '#exfoary-form');
  316.     fun('forex-lab.xyz', submit, 'body > center:nth-child(3) > div:nth-child(2) > form:nth-child(1)');
  317.     fun('forexlap.com', submit, '#molien > center:nth-child(2) > form:nth-child(3)');
  318.     fun('automotur.club|sanoybonito.club', submit, '#page2');
  319.     fun('intercelestial.com|tribuntekno.com|101desire.com', submit, '#landing');
  320.     fun('adsy.pw|linkpay.cc', submit, '#link-view');
  321.     fun('okrzone.com', meta, 'https://gtlink.co/$1')
  322.     fun('ledifha.com', meta, 'https://process.ledifha.com/$1')
  323.     fun('techrayzer.com', meta, 'https://techrayzer.com/insurance/$1');
  324.     fun('urlily.com', meta, 'https://shorturl.sh2rt.com/$1')
  325.     fun('www.hostingviral.live|www.apk4do.com', meta, 'https://www.dineroshare.com/$1')
  326.     fun('speedynews.xyz', meta, 'https://additionalgamer.com/blog/$1')
  327.     fun('adinsurance.xyz', meta, 'https://blog.adinsurance.xyz/$1')
  328.     fun('url.magmint.com', meta, 'https://bell.healthyguy.online/$1')
  329.     fun('madar-24.com', meta, 'https://coupon-fresh.com/' + decodeURIComponent(searchParams.get('link')), isPath('/') && searchParams.has('link'))
  330.     fun('linkstom.ml', meta, 'https://links.earnfort.in/' + decodeURIComponent(searchParams.get('link')), isPath('/') && searchParams.has('link'))
  331.     fun('nawahi1.com', meta, 'https://sh2rt.com/$1', isPath('^\/verify\/$'))
  332.     fun('dutchycorp.space|dutchycorp.ovh', function() {
  333.         const ticker = setInterval(function() {
  334.             try {
  335.                 window.grecaptcha.execute();
  336.                 clearInterval(ticker);
  337.             } catch (e) {
  338.                 console.log(e)
  339.             }
  340.         }, 2000);
  341.     })
  342.     fun('ultraten.net|uniqueten.net|crewbase.net|crewus.net|shinchu.net|thumb8.net|allcryptoz.net|topcryptoz.net|thumb9.net|shinbhu.net|riadblog.com|riadcrypto.com|donia2tech.com|crypto4tun.com|askpaccosi.com|www.cgyojna.com|saqercoin.xyz|2the.space', function() {
  343.         const form = $('#wpsafelink-landing')
  344.         redirect(JSON.parse(atob(form.newwpsafelink.value)).linkr)
  345.     })
  346.     fun('link.wrbloggers.com', click , '.btn-danger.btn-block.btn')
  347.     fun('doctor-groups.com', setInterval, function() {
  348.         click('.skip-ad > a:nth-child(1)');
  349.     }, 3000)
  350.     fun('linksly.co|shrinke.me|health-and.me|stfly.me|cutdl.xyz|zagl.info|za.gl|shortzon.com|cryptorotator.website', clickIfElementExists, '.get-link.btn-lg.btn-success.btn', 5, 'setInterval')
  351.     fun('fx4vip.com', click, 'div.col-md-12:nth-child(2) > a:nth-child(10)')
  352.     fun('www.lootlinks.xyz', clickIfElementExists, '#get-link', 5, 'setInterval')
  353.     fun('cekip.site|www.cekip.site', meta, atob('$1'), isPath('^\/go\/([^\/]+)'))
  354.     fun('profitlink.info', function() {
  355.         clickIfElementExists('.btn-captcha.btn-primary.btn', 3, 'setInterval')
  356.         setInterval(function() {
  357.             click('.calc-earn.get-link.btn-lg.btn-success.btn')
  358.         }, 5000)
  359.     })
  360.     fun('freebcc.org', setInterval, function() {
  361.         click('.get-link.btn-sm.btn-primary.btn')
  362.     }, 5000)
  363.     fun('tei.ai', function() {
  364.         window.addEventListener('DOMContentLoaded', (event) => {
  365.             var linkbypass = atob(`aH${$("#link-view [name='token']").value.split("aH").slice(1).join("aH")}`);
  366.             redirect(linkbypass);
  367.         });
  368.     })
  369.     fun('crazyblog.in', {
  370.         '/finance/': ['link', 'https://shrinkpay.crazyblog.in'],
  371.         '/hars/verify/': [ree, 'https://redd.crazyblog.in'],
  372.         '/harsh/verify/': [ree, 'https://studyuo.com/pro2/verify/?'],
  373.     }, false)
  374.     fun('network-earn.online', function() {
  375.         if (searchParams.has('tok') && location.href.includes('index.php'))
  376.             redirect('https://luckybits.online/check.php?tok=' + searchParams.get('tok'))
  377.     })
  378.     fun('cool-time.dutchycorp.space|anime.dutchycorp.space|movies.dutchycorp.space|tech.dutchycorp.space', function() {
  379.         if (isPath('^\/redir[^.]+?\.php$') && searchParams.has('code'))
  380.             redirect(searchParams.get('code') + '?verif=0')
  381.     })
  382.     fun('acortame.xyz', function() {
  383.         funif(location.hash, redirect, location.hash.substr(1))
  384.     })
  385.     fun('btcpany.com|crewbase.net|crewus.net|thumb8.net|thumb9.net|allcryptoz.net|topcryptoz.net|ultraten.net|uniqueten.net|jiotech.net|technoflip.in|studyranks.in|brixarena.tech|crypto4tun.com|askpaccosi.com|mcrypto.club|faucet.work|wildblog.me|bebodybuilder.com|mrsaifi.xyz|techlearningtube.in|manthans.in|dogeearn.com|crypto-blog.xyz|claimfey.com', function() {
  386.         const el = $("input[name=newwpsafelink]")
  387.         redirect(JSON.parse(atob(el.value)).linkr)
  388.     })
  389.     fun('profitlink.info', function() {
  390.         clickIfElementExists('.btn-captcha.btn-primary.btn', 3, 'setInterval')
  391.         setInterval(function() {
  392.             click('.calc-earn.get-link.btn-lg.btn-success.btn')
  393.         }, 5000);
  394.  
  395.     })
  396.     fun('vsbl.ga|stex.link|iir.ai|shortzon.com|celinks.net|cryptowidgets.net|urlchanger.ml|nabits.xyz|d.bawabatak.com|www.adshort-url.com|nukl.ink|tronex.biz|playgotoken.com|sl.claimfreebits.com|yocto.link|linksfy.co|mitly.us|skincarie.com|linksos.live|cryptorotator.website|promo-visits.site', click, 'button.btn:nth-child(4)')
  397.     fun('upfiles.io', clickIfElementExists, '.get-link.btn-download.btn-primary.btn', 13)
  398.     fun('rodjulian.com', clickIfElementExists, 'a.btn.btn-primary.btn-lg.get-link', 5, 'setInterval')
  399.     fun('clk.sh|shrinkearn.com', function() {
  400.         if (location.href.includes('bloogerspoot.') && searchParams.has('url')) {
  401.             let i = new URL(searchParams.get('url'));
  402.             redirect('https://softindex.website' + i.pathname);
  403.         }
  404.     })
  405.     fun('cryptomonitor.in|crickblaze.com|shinchu.net|shinbhu.net|riadblog.com|riadcrypto.com|donia2tech.com|www.cgyojna.com|saqercoin.xyz|2the.space', function() {
  406.         const form = $('#wpsafelink-landing')
  407.         redirect(JSON.parse(atob(form.newwpsafelink.value)).linkr)
  408.     })
  409.     fun('studyuo.com|mcrypto.club', function() {
  410.         var path = searchParams.get('link').substring(0, 3);
  411.         var ob = {
  412.             'ca/': 'https://cryptoads.space/' + path,
  413.             'cu/': 'https://coinsurl.com/' + path,
  414.             'mh/': 'https://myhealths.icu/' + path,
  415.             'cf/': 'https://cryptoflare.cc/' + path
  416.         }
  417.         redirect(searchParams.get('link').substring(0, 1) == '/' ? 'https://coinsparty.com/' + searchParams.get('link').substring(1) : ob[path]);
  418.     })
  419.  
  420.     fun('anonym.ninja', redirect, 'https://anonym.ninja/download/file/request/' + location.href.split('/').slice(-1)[0])
  421.     fun('tei.ai', redirect, atob('aH' + $("#link-view [name='token']").value.split("aH").slice(1).join("aH")))
  422.     fun('techmody.io', meta, decodeURIComponent(searchParams.get('check')), isPath('/') && searchParams.has('check'))
  423.     fun('studyuo.com', {
  424.         '/pro/': ['link', 'https://shrinkpay.crazyblog.in'],
  425.         '/short/verify/': [ree, 'https://redd.crazyblog.in'],
  426.         '/blog/verify/': [ree, 'https://speedynews.xyz/verify/?'],
  427.     }, false)
  428.     fun('hosting4lifetime.com', {
  429.         '/blog/verify/': [ree, 'https://abcshort.com/$1']
  430.     })
  431.     re('crazyblog.in', {
  432.         '/xhod/verify/': [ree, 'https://redd.crazyblog.in/']
  433.     })
  434.     fun('crazyblog.in', funif, isPath('/') && searchParams.has('postid'), redirect, searchParams.get('postid'))
  435.  
  436.     fun('medipost.org', meta, 'https://links.medipost.org/$1')
  437.     fun('www.gkqnaexam.com', funif, /^\?([^&]+)/.test(searchParams.search, meta, 'https://web.url2link.com/$1', isPath('^\/yuidea\/$')))
  438.     fun('newsharsh.com', funif, /^\?([^&]+)/.test(searchParams.search), meta, 'https://redd.crazyblog.in/$1', isPath('/english/verify/'))
  439.     fun('madar-24.com', funif,  searchParams.has('link'), meta, 'https://coupon-fresh.com/' + decodeURIComponent(searchParams.get('link')), isPath('/'))
  440.     fun('zonearn.biz', funif, isPath('^\/(.+)') && searchParams.has('tok'), redirect, searchParams.get('tok'))
  441.     fun('techmody.io', funif, isPath('/') && searchParams.has('check'), meta, decodeURIComponent(searchParams.get('check')))
  442.     fun('ctbl.me|zshort.cc', funif, location.search === '', redirect, 'https://mdn.rest/?url8j=' + location.href)
  443.     fun('techydino.net', funif, isPath('/golink.php') && searchParams.has('li'), redirect, 'https://mdn.world/golink.php?li=' + searchParams.get('li'))
  444.     fun('getitall.top|pentafaucet.com|hitbits.io', function() {
  445.         const short_id = location.pathname.split('/')[location.pathname === 'hitbits.io' ? 2 : 3];
  446.         fetch('https://sl.lindernman.xyz/s/next', {
  447.             "headers": {
  448.                 "content-type": "application/json;charset=UTF-8"
  449.             },
  450.             "body": JSON.stringify({
  451.                 short_id
  452.             }),
  453.             "method": "POST"
  454.         })
  455.         .then(res => res.text())
  456.         .then(console.log)
  457.  
  458.         setTimeout(function() {
  459.             fetch('https://sl.lindernman.xyz/s/complete', {
  460.                 "headers": {
  461.                     "content-type": "application/json;charset=UTF-8"
  462.                 },
  463.                 "body": JSON.stringify({
  464.                     short_id
  465.                 }),
  466.                 "method": "POST"
  467.             })
  468.             .then(res => res.text())
  469.             .then(data => {
  470.                 redirect(JSON.parse(data))
  471.             })
  472.         }, 4000)
  473.     })
  474.     fun('kiiw.icu', function() {
  475.         if (isPath('/check.php') && searchParams.has('alias') && searchParams.has('wis') && searchParams.has('siw')) {
  476.             redirect('https://kiiw.icu/' + searchParams.get('alias') + '?wis=' + searchParams.get('wis') + '&siw=' + searchParams.get('siw'));
  477.         }
  478.     })
  479.     fun('forex-articles.com|forexlap.com|forexmab.com', click, '.oto > a:nth-child(1)')
  480.     fun('prx.ee', click, '#final_link')
  481.     funif(isPath('/pro2/verify/'), meta, 'https://csd.xmod.in/$1')
  482.     funif(elementExists('div.col-md-4:nth-child(2)'), setInterval, function() {
  483.         click('div.col-md-4:nth-child(2) > span:nth-child(1) > img:nth-child(1)');
  484.     }, 5000)
  485.     funif(elementExists('.tdc_zone'), setInterval, function() {
  486.         click('a.btn-success')
  487.     }, 5000)
  488.     funif(elementExists('#makingdifferenttimer'), setInterval, function() {
  489.         click('#url_qu > a:nth-child(1)')
  490.     }, 3000)
  491.     funif(elementExists('#ytimer'), setInterval, function() {
  492.         click('#ytimer > .s-btn-f')
  493.     }, 5000)
  494.     funif(elementExists('#mainlink'), function() {
  495.         click('#mainlink > .s-btn-f')
  496.     }, 5000)
  497.     funif(elementExists('#links'), setInterval, function() {
  498.         submit('#links > form:nth-child(2)')
  499.     }, 3000)
  500.     funif(elementExists('#surl'), setInterval, function() {
  501.         click('#surl.btn-success.m-2.btn')
  502.     }, 5000)
  503.     funif(elementExists('#before-captcha'), setTimeout, function() {
  504.         submit('#before-captcha');
  505.     }, 3000)
  506.     funif(elementExists('a#firststep-btn.btn.btnstep1'), setTimeout, function() {
  507.         click('button#getlink.btn.m-2.btn-success.disabled');
  508.     }, 3000)
  509.     funif(elementExists('#url_qu'), setTimeout, function() {
  510.         click('.ad-banner.btn-captcha.btn-primary.btn');
  511.     }, 3000)
  512.     params('amazingdarpon.com', 'link', 'https://go.zolomix.in/', false)
  513.     params('allcryptoz.net|topcryptoz.net', 'link', 'https://allcryptoz.net/home/sh/')
  514.     params('mercedesellington.com|model-tas-terbaru.com', 'link', 'http://yousm.link/')
  515.     params('digitalnaz.net', 'getlink', 'https://go.linkfly.io/')
  516.     params('wiki-topia.com', 'link', 'https://cryptowidgets.net/sl/')
  517.     params('foodyrecipe.xyz', 'link', 'https://paid4.link/')
  518.     params('7apple.net', 'go', 'https://illink.net/', false)
  519.     params('wpking.in', 'link', 'https://o.ovlinks.com/')
  520.     params('go.dogeearn.com', 'go', 'https://cryptoads.space/');
  521.     params('takez.co|www.takez.co', 'token', 'https://links.spidermods.in/');
  522.     params('www.digiromotion.com|www.visflakes.com', 're', 'https://zipfy.link/')
  523.     params('crazyblog.in', 'postid', '')
  524.     params('insurance-space.xyz', 'link', 'https://link.insurance-space.xyz/');
  525.     params('theconomy.me', 'link', 'https://link.theconomy.me/');
  526.     params('lux.adinsurance.xyz', 'link', 'https://go.adinsurance.xyz/')
  527.     params('go.insurglobal.xyz', 'link', 'https://link.insurglobal.xyz/');
  528.     params('coin-free.com|kienthucrangmieng.com|coindoog.com', 'wpsafelink', '');
  529.     params('esenr.com', 'link', 'https://go.bcdshort.xyz/')
  530.     params('technicalramno1.link', 'link', 'https://go.urlmoney.xyz/')
  531.     params('informaxonline.com|gaminplay.com', 'link', 'https://go.adslinkfly.online/')
  532.     params('infinityfreescripts.xyz', 'link', 'https://technologylover.in/')
  533.     params('btc.freebcc.org|eth.freebcc.org', 'claim', 'https://freebcc.org/')
  534.     params('adcortoltda.agency', 'link', 'https://link.adcortoltda.agency/')
  535.     params('www.oyunzak.com|www.gazianteppetektemizleme.net', 'link', '')
  536.     params('netfile.cc', 'link', 'https://next.netfile.cc/', false)
  537.     params('exe.io|birdurls.com|dash-free.com|owllink.net', 'url,api', 'https://')
  538.     params('dogeearn.com', 'link', 'https://myhealths.icu/')
  539.     params('tr.link', 'url,api', '')
  540.     params('supersites.xyz', {
  541.         '/verifysl.php': [
  542.             'url', ''
  543.         ]
  544.     });
  545.     params('claimclicks.com', {
  546.         '/blog/': [
  547.             'link', 'https://claimclicks.com/short/'
  548.         ]
  549.     });
  550.     params('insuranceblog.xyz', {
  551.         '/blog/': ['link', 'https://gos.insuranceblog.xyz/']
  552.     }, false)
  553.     params('blogginglass.com', {
  554.         '/': ['link', 'http://go.mozlink.net/'],
  555.         '/blog/': ['getlink', 'http://go.fire-link.net/']
  556.     })
  557.     re('dogeearn.com', /^\/coinsurl\/([^/]+)/, 'https://coinsurl.com/$1')
  558.     re('dogeclick.net', /^\/short\/([^/]+)/, 'https://short.clickscoin.com/$1')
  559.     re('dogeclick.net', /^\/ccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
  560.     re('11bit.co.in', /^\/link\/([^/]+)/, 'https://sl.proinfinity.fun/$1')
  561.     re('11bit.co.in', /^\/bitshort\/([^/]+)/, 'https://bitshort.co/$1')
  562.     re('short.clickscoin.com|watchdoge.xyz|dogeclick.net', /^\/ccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
  563.     re('coinbaze.in|techmart4u.in', /^\/coinbazeads\/([^\/]+)/, 'https://urlfiles.com/$1')
  564.     re('nulledsafe.com', /^\/link\/([^\/]+)/, 'https://golink.nulledsafe.com/$1');
  565.     re('coinsearns.com', /^\/cryptoads\/([^/]+)/, 'https://cryptoads.space/$1');
  566.     re('step0.shortlinks.click', /^\/([^\/]+)/, 'https://shortlinks.click/$1');
  567.     re('earnfree.cc', /^\/slc\/step1\/([^/]+)/, 'http://shortlinks.click/$1');
  568.     re('konstantinova.net', /^\/verify\/([^\/]+)/, 'https://coin.mg/$1');
  569.     re('crypto-faucet.xyz', /^\/claim\/link\/([^\/]+)/, 'https://doctor-groups.com/link/$1')
  570.     re('adoco.in', /girl([mpwz])oro\/([^\/]+)/, 'https://girl$1oro.xyz/$2')
  571.     re('link.linksfire.co', /^\/(.+)/, location.href.replace('link', 'blog'))
  572.     re('go.birdurls.com|go.owllink.net', /^\/(.+)/, location.href.replace('go.', ''))
  573.     re('gifans.com|www.gifans.com', /^\/link\/([^\/]+)/, 'https://shortlink.prz.pw/$1')
  574.     re('faucet.100count.net', /^\/fo\/linko\/([^\/]+)/, 'https://100count.net/fo/linko/$1')
  575.     re('faucet.100count.net', /^\/clickit\/sh\/([^/]+)/, 'https://100count.net/fileo/clicksfile/stats/$1')
  576.     re('blog.crazyblog.in', /^\/step\d+?\/([^/]+)$/, 'https://wplink.online/$1')
  577.     re('blog.crazyblog.in', /^\/visit\d+?\/step\d+?\/([^/]+)$/, 'https://cblink.crazyblog.in/$1')
  578.     re('clickscoin.com', /^\/short\/([^/]+)/, 'https://short.clickscoin.com/$1')
  579.     re('clickscoin.com', /^\/shortccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
  580.     re('sl.easysl.click', /^\/step1\/([^\/]+)/, 'https://easysl.click/$1')
  581. })();
Add Comment
Please, Sign In to add comment