Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 1001
- // @namespace http://tampermonkey.net/
- // @version 22.3
- // @description try to take over the world!
- // @author You
- // @match *://*/*
- // @icon dat a:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- const $ = query => document.querySelector(query);
- const elementExists = query => $(query) !== null;
- const domainCheck = domains => new RegExp(domains).test(location.host)
- const searchParams = new URLSearchParams(location.search);
- const isPath = string => new RegExp(string).test(location.pathname)
- const ree = new RegExp(/^\?([^&]+)/);
- function redirect(url, blog = true) {
- location = blog ? 'https://faucetpay.nurul-huda.or.id/?url=' + url : url
- }
- function waitForElm(query, callback) {
- setTimeout(function() {
- if (elementExists(query)) {
- callback($(query))
- } else {
- waitForElm(query, callback)
- }
- }, 1000)
- }
- function click(query) {
- $(query).click()
- }
- function submit(query) {
- $(query).submit()
- }
- function fun(domains, f, ...args) {
- if (typeof f === 'object') {
- if (Array.isArray(f)) f = {'/': f}
- if (!(location.pathname in f)) return;
- const [key, value] = f[location.pathname]
- if (typeof key === 'object' && key.test(location.search)) return redirect(value + RegExp.$1, ...args)
- const searchParams = new URLSearchParams(location.search);
- if (searchParams.has(key)) redirect(value + searchParams.get(key), ...args)
- } else if (domains === '*' || domainCheck(domains)) {
- f(...args)
- }
- }
- function funif(ifcondition, ...args) {
- if (ifcondition) {
- fun('*', ...args)
- }
- }
- function params(domains, data, url, blog = true, use = null) {
- if (!domainCheck(domains)) return;
- if (typeof data === 'string' && data.split(',').every(p => searchParams.has(p))) {
- use ??= data.split(',')[0]
- redirect(url + searchParams.get(use), blog)
- } else if (typeof data === 'object') {
- if (!(location.pathname in data)) return;
- params(domains, ...data[location.pathname])
- }
- }
- function meta(url, ifcon = isPath('/verify/'), regex = ree) {
- if (!ifcon) return;
- const m = location.search.match(regex)
- url = url.replace(/(\$\d+)/g, function(match) {
- const index = +match.replace('$', '')
- return m[index]
- });
- document.head.appendChild(Object.assign(document.createElement('meta'), {
- name: 'referrer',
- content: 'origin'
- }));
- Object.assign(document.createElement('a'), {
- href: url
- }).click();
- }
- function re(domains, regex, url) {
- if (!domainCheck(domains)) return;
- if (regex.test(location.pathname)) {
- url = url.replace(/(\$\d+)/g, match => RegExp[match]);
- redirect(url)
- }
- }
- 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);}}
- function clickIfElementExists(query, timeInSec = 1, funcName = 'setTimeout') {
- if (elementExists(query)) {
- window[funcName](function() {
- click(query);
- }, timeInSec * 1000);
- }
- }
- function recaptchaInterval(query, act = 'submit', timeInSec = 0.5) {
- if (elementExists(query)) {
- const timer = setInterval(function() {
- if (window.grecaptcha && !!window.grecaptcha.getResponse()) {
- $(query)[act]();
- clearInterval(timer);
- }
- }, timeInSec * 1000);
- }
- }
- if (typeof hcaptcha == "object" && typeof apiCounter == "object") {
- window.app_country_visitor = ""
- window.hcaptcha.getResponse = () => {}
- window.apiCounter.generateURL()
- window.apiCounter.redirectTo($("button.button-element-verification"))
- }
- if (typeof tokenURL == "string") {
- redirect(atob(window.tokenURL))
- }
- if (location.host != 'faucetpay.nurul-huda.or.id') {
- 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')
- listhide.forEach(el => el.remove())
- }
- if (location.host != 'coin.mg') {
- if (elementExists('#links')) {
- setInterval(function() {
- submit('#links > form:nth-child(2)')
- }, 3000);
- }
- }
- //temporary solution
- if (elementExists('#go-link')) {
- window.jQuery("#go-link").unbind().submit(function(e) {
- e.preventDefault();
- var form = window.jQuery(this);
- var url = form.attr('action');
- const pesan = form.find('button');
- const notforsale = window.jQuery(".navbar-collapse.collapse");
- const blogger = window.jQuery(".main-header");
- const pemula = window.jQuery(".col-sm-6.hidden-xs");
- window.jQuery.ajax({
- type: "POST",
- url: url,
- data: form.serialize(),
- beforeSend: function(xhr) {
- pesan.attr("disabled", "disabled");
- window.jQuery('a.get-link').text('Bypassed by Bloggerpemula');
- 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>');
- 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>');
- 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>');
- },
- success: function(result, xhr) {
- redirect(result.url)
- }
- });
- });
- }
- fun('shortzon.com', function() {
- $('.btn-primary.btn').onclick = new Function('console.log("Blocked")')
- })
- fun('short.goldenfaucet.io|short.croclix.me|www.adz7short.space|www.shortique.com', function() {
- function fireMouseEvents(query) {
- const element = $(query);
- if (!element) return;
- ['mouseover', 'mousedown', 'mouseup', 'click'].forEach(eventName => {
- if (element.fireEvent) {
- element.fireEvent('on' + eventName);
- } else {
- const eventObject = document.createEvent('MouseEvents');
- eventObject.initEvent(eventName, true, false);
- element.dispatchEvent(eventObject);
- }
- })
- }
- setInterval(function() {
- if ($("#link").length > 0) {
- fireMouseEvents("#link")
- }
- }, 500);
- setTimeout(function() {
- if ($("input#continue").length > 0) {
- fireMouseEvents("input#continue");
- }
- if ($("a#continue.button").length > 0) {
- fireMouseEvents('a#continue.button')
- }
- }, 9000);
- setTimeout(function() {
- if ($('#btn-main').length < 0) return;
- fireMouseEvents('#btn-main')
- }, 5000);
- })
- waitForElm('div#wpsafe-link > a', function(element) {
- const regex = /redirect=(.*)',/;
- const m = regex.exec(element.onclick.toString())[1]
- location.href = JSON.parse(atob(m)).safelink
- })
- recaptchaInterval('#userForm')
- recaptchaInterval('#ShortLinkId')
- recaptchaInterval('#file-captcha')
- recaptchaInterval('#lview > form')
- recaptchaInterval('#link-view')
- recaptchaInterval('form.text-center')
- recaptchaInterval('#wpsafelink-landing')
- recaptchaInterval('.col-12 > form:nth-child(1)')
- recaptchaInterval('.contenido > form:nth-child(2)')
- recaptchaInterval('#showMe > center:nth-child(4) > form:nth-child(1)')
- recaptchaInterval('#showMe > center:nth-child(1) > center:nth-child(4) > form:nth-child(1)')
- 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)')
- recaptchaIntervalclick('.m-2.btn-captcha.btn-outline-primary.btn')
- recaptchaIntervalclick('button#continue.btn.btn-primary.btn-captcha')
- recaptchaIntervalclick('#yuidea-btn-before.yu-btn.yu-blue')
- recaptchaIntervalclick('#yuidea-btn-after.yu-blue.yu-btn')
- clickIfElementExists('.recaptcha-checkbox-border', 3)
- clickIfElementExists('button#btn6.yu-btn.yu-go', 3)
- clickIfElementExists('.mb-3 > .btn-primary.btn', 3)
- clickIfElementExists('.yu-blue.yu-btn', 3)
- clickIfElementExists('.fTk7vd > a:nth-child(1)', 3)
- clickIfElementExists('#links > a:nth-child(2)', 3)
- clickIfElementExists('button#showTimerText.btn.btn-accent', 3)
- clickIfElementExists('#wpsafelinkhuman > img:nth-child(1)', 3)
- clickIfElementExists('div.box-main:nth-child(2) > div:nth-child(4) > a:nth-child(1)', 3)
- clickIfElementExists('button#btn6.g-recaptcha.btn.btn-primary', 3)
- clickIfElementExists('button#btn6.btn.btn-outline-primary.btn-captcha.m-2', 3)
- clickIfElementExists('button#submit-button.btn.btn-primary', 3)
- clickIfElementExists('#link1s-snp > button:nth-child(1)', 3)
- clickIfElementExists('button.btn-main.get-link', 3)
- clickIfElementExists('.next-button.btn-lg.text-white.btn-info.btn', 3)
- clickIfElementExists('.next-button.text-white.btn-info.btn', 3)
- clickIfElementExists('.btn-outline-white.btn', 3)
- clickIfElementExists('button#bt.btn.btn-info.btn-lg', 3)
- clickIfElementExists('button#btn-main.btn.btn-main', 3)
- clickIfElementExists('button#btn-get-link', 3)
- clickIfElementExists('.col-md-8 > form:nth-child(17) > button:nth-child(3)', 3)
- clickIfElementExists('#cl1 > center:nth-child(1) > a:nth-child(1)', 3)
- clickIfElementExists('div#wpsafe-generate a img', 3)
- clickIfElementExists('a.submitBtn.btn.btn-primary', 3)
- clickIfElementExists('button#submitbtn.g-recaptcha.btn.btn-primary', 3)
- clickIfElementExists('p.getlink', 3)
- clickIfElementExists('button#getlink.getlink.disabled', 3)
- clickIfElementExists('#link1s-snp > button:nth-child(1)', 3)
- clickIfElementExists('#cl1 > a:nth-child(2) > font:nth-child(1)', 3)
- clickIfElementExists('button#mdt.custom-btn.btn-7', 3)
- clickIfElementExists('input#btn-main.btn.btn-primary', 3)
- clickIfElementExists('#cl1 > a:nth-child(1) > font:nth-child(1) > b:nth-child(1)', 3)
- clickIfElementExists('input.btn.btn-primary', 5)
- clickIfElementExists('div.complete a.btn', 5)
- clickIfElementExists('#molien > a:nth-child(1)', 5)
- clickIfElementExists('div#wpsafe-link a img', 5)
- clickIfElementExists('#wpsafe-snp > a:nth-child(1)', 5)
- clickIfElementExists('#wpsafe-snp > center:nth-child(1) > a:nth-child(1)', 5)
- clickIfElementExists('a#surl1.btn-main.get-link', 5)
- clickIfElementExists('button#invisibleCaptchaShortlink.btn-main.get-link', 5)
- clickIfElementExists('.btn-captcha.btn-sm.btn-primary.btn', 5)
- clickIfElementExists('button#invisibleCaptchaShortlink.btn.ybtn.ybtn-accent-color.btn-captcha', 5)
- clickIfElementExists('button#invisibleCaptchaShortlink.btn.btn-outline-primary.btn-lg.btn-block.btn-captcha', 5)
- clickIfElementExists('button#invisibleCaptchaShortlink.btn.btn-primary.btn-goo.btn-captcha', 7)
- clickIfElementExists('button.btn.btn-success', 7)
- clickIfElementExists('div.lds-ellipsis', 9)
- clickIfElementExists('#wg-form > .btnstep1.btn', 3, 'setInterval')
- clickIfElementExists('a#finalx22.btn.btnstep1', 3, 'setInterval')
- clickIfElementExists('#makingdifferenttimer', 3, 'setInterval')
- clickIfElementExists('#myButtonn > span:nth-child(1)', 3, 'setInterval')
- clickIfElementExists('#mdt.btn.btn-primary.text-white.next-button', 3, 'setInterval')
- clickIfElementExists('a.get-link.bg-red-600.px-8.py-2.rounded-md.inline-block', 3, 'setInterval')
- clickIfElementExists('button#main-button.claim-button.btn.btn-lg.btn-accent', 3, 'setInterval')
- clickIfElementExists('.next-button.btn-lg.btn-info.btn', 3, 'setInterval')
- clickIfElementExists('input.g-recaptcha.btn.btn-primary', 3, 'setInterval')
- clickIfElementExists('.get-link.ybtn-accent-color.ybtn.btn', 3, 'setInterval')
- clickIfElementExists('#go_d', 5, 'setInterval')
- clickIfElementExists('#nextButton', 7, 'setInterval')
- clickIfElementExists('.btn-sm.btn-default.btn', 5, 'setInterval')
- clickIfElementExists('#makingdifferenttimer9 > .btn-success.btn', 5, 'setInterval')
- clickIfElementExists('#yuidea-btmbtn', 5, 'setInterval')
- clickIfElementExists('#link1s.btn-primary.btn', 5, 'setInterval')
- clickIfElementExists('a.btn-main.get-link', 5, 'setInterval')
- clickIfElementExists('a.btn.m-2.btn-success', 5, 'setInterval')
- clickIfElementExists('.btn-danger.btn-raised', 5, 'setInterval')
- clickIfElementExists('.close-me > a:nth-child(1)', 5, 'setInterval')
- clickIfElementExists('button.btn-block.btn-success', 5, 'setInterval')
- clickIfElementExists('a.btn.btn-primary.get-link.text-white', 5, 'setInterval')
- clickIfElementExists('div.column:nth-child(2) > font:nth-child(2) > a:nth-child(8)', 3)
- clickIfElementExists('#btn6.btn-captcha.btn-primary.btn', 5, 'setInterval')
- clickIfElementExists('button#link.btn.btn-primary', 5, 'setInterval')
- clickIfElementExists('button#get_link.btn.btn-primary.btn-sm', 7, 'setInterval')
- 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'
- fun(temp, click, 'button.btn:nth-child(4)');
- fun('marocclickers.xyz', click, '#link-view > div:nth-child(5) > center:nth-child(5) > div:nth-child(1)');
- fun('jameeltips.us', click, '#continue_button_1');
- fun('shortit.pw', click, '.pulse.btn-primary.btn');
- fun('techload.co|largestpanel.in|earn.largestpanel.in', click, '#tp-snp2');
- fun('1link.club', click, '#download');
- fun('1ink.cc', click, '#countingbtn');
- fun('mdn.world', click, '.btn-primary.btn');
- fun('yoshare.net', click, '#yuidea');
- fun('bildirim.eu', click, '#btnPermission');
- fun('up-load.one', click, '#submitbtn');
- fun('ashort2a-bro.tk|ashort1a.xyz', click, '#proceed');
- fun('stfly.me', submit, '#submit_data');
- fun('coinsparty.com', submit, '.box-body > form:nth-child(2)');
- fun('makemoneywithurl.com', submit, '#hidden form');
- fun('adshort.space|go.techgeek.digital', submit, '.text-center > form:nth-child(4)');
- fun('forex-trnd.com', submit, '#exfoary-form');
- fun('forex-lab.xyz', submit, 'body > center:nth-child(3) > div:nth-child(2) > form:nth-child(1)');
- fun('forexlap.com', submit, '#molien > center:nth-child(2) > form:nth-child(3)');
- fun('automotur.club|sanoybonito.club', submit, '#page2');
- fun('intercelestial.com|tribuntekno.com|101desire.com', submit, '#landing');
- fun('adsy.pw|linkpay.cc', submit, '#link-view');
- fun('okrzone.com', meta, 'https://gtlink.co/$1')
- fun('ledifha.com', meta, 'https://process.ledifha.com/$1')
- fun('techrayzer.com', meta, 'https://techrayzer.com/insurance/$1');
- fun('urlily.com', meta, 'https://shorturl.sh2rt.com/$1')
- fun('www.hostingviral.live|www.apk4do.com', meta, 'https://www.dineroshare.com/$1')
- fun('speedynews.xyz', meta, 'https://additionalgamer.com/blog/$1')
- fun('adinsurance.xyz', meta, 'https://blog.adinsurance.xyz/$1')
- fun('url.magmint.com', meta, 'https://bell.healthyguy.online/$1')
- fun('madar-24.com', meta, 'https://coupon-fresh.com/' + decodeURIComponent(searchParams.get('link')), isPath('/') && searchParams.has('link'))
- fun('linkstom.ml', meta, 'https://links.earnfort.in/' + decodeURIComponent(searchParams.get('link')), isPath('/') && searchParams.has('link'))
- fun('nawahi1.com', meta, 'https://sh2rt.com/$1', isPath('^\/verify\/$'))
- fun('dutchycorp.space|dutchycorp.ovh', function() {
- const ticker = setInterval(function() {
- try {
- window.grecaptcha.execute();
- clearInterval(ticker);
- } catch (e) {
- console.log(e)
- }
- }, 2000);
- })
- 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() {
- const form = $('#wpsafelink-landing')
- redirect(JSON.parse(atob(form.newwpsafelink.value)).linkr)
- })
- fun('link.wrbloggers.com', click , '.btn-danger.btn-block.btn')
- fun('doctor-groups.com', setInterval, function() {
- click('.skip-ad > a:nth-child(1)');
- }, 3000)
- 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')
- fun('fx4vip.com', click, 'div.col-md-12:nth-child(2) > a:nth-child(10)')
- fun('www.lootlinks.xyz', clickIfElementExists, '#get-link', 5, 'setInterval')
- fun('cekip.site|www.cekip.site', meta, atob('$1'), isPath('^\/go\/([^\/]+)'))
- fun('profitlink.info', function() {
- clickIfElementExists('.btn-captcha.btn-primary.btn', 3, 'setInterval')
- setInterval(function() {
- click('.calc-earn.get-link.btn-lg.btn-success.btn')
- }, 5000)
- })
- fun('freebcc.org', setInterval, function() {
- click('.get-link.btn-sm.btn-primary.btn')
- }, 5000)
- fun('tei.ai', function() {
- window.addEventListener('DOMContentLoaded', (event) => {
- var linkbypass = atob(`aH${$("#link-view [name='token']").value.split("aH").slice(1).join("aH")}`);
- redirect(linkbypass);
- });
- })
- fun('crazyblog.in', {
- '/finance/': ['link', 'https://shrinkpay.crazyblog.in'],
- '/hars/verify/': [ree, 'https://redd.crazyblog.in'],
- '/harsh/verify/': [ree, 'https://studyuo.com/pro2/verify/?'],
- }, false)
- fun('network-earn.online', function() {
- if (searchParams.has('tok') && location.href.includes('index.php'))
- redirect('https://luckybits.online/check.php?tok=' + searchParams.get('tok'))
- })
- fun('cool-time.dutchycorp.space|anime.dutchycorp.space|movies.dutchycorp.space|tech.dutchycorp.space', function() {
- if (isPath('^\/redir[^.]+?\.php$') && searchParams.has('code'))
- redirect(searchParams.get('code') + '?verif=0')
- })
- fun('acortame.xyz', function() {
- funif(location.hash, redirect, location.hash.substr(1))
- })
- 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() {
- const el = $("input[name=newwpsafelink]")
- redirect(JSON.parse(atob(el.value)).linkr)
- })
- fun('profitlink.info', function() {
- clickIfElementExists('.btn-captcha.btn-primary.btn', 3, 'setInterval')
- setInterval(function() {
- click('.calc-earn.get-link.btn-lg.btn-success.btn')
- }, 5000);
- })
- 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)')
- fun('upfiles.io', clickIfElementExists, '.get-link.btn-download.btn-primary.btn', 13)
- fun('rodjulian.com', clickIfElementExists, 'a.btn.btn-primary.btn-lg.get-link', 5, 'setInterval')
- fun('clk.sh|shrinkearn.com', function() {
- if (location.href.includes('bloogerspoot.') && searchParams.has('url')) {
- let i = new URL(searchParams.get('url'));
- redirect('https://softindex.website' + i.pathname);
- }
- })
- fun('cryptomonitor.in|crickblaze.com|shinchu.net|shinbhu.net|riadblog.com|riadcrypto.com|donia2tech.com|www.cgyojna.com|saqercoin.xyz|2the.space', function() {
- const form = $('#wpsafelink-landing')
- redirect(JSON.parse(atob(form.newwpsafelink.value)).linkr)
- })
- fun('studyuo.com|mcrypto.club', function() {
- var path = searchParams.get('link').substring(0, 3);
- var ob = {
- 'ca/': 'https://cryptoads.space/' + path,
- 'cu/': 'https://coinsurl.com/' + path,
- 'mh/': 'https://myhealths.icu/' + path,
- 'cf/': 'https://cryptoflare.cc/' + path
- }
- redirect(searchParams.get('link').substring(0, 1) == '/' ? 'https://coinsparty.com/' + searchParams.get('link').substring(1) : ob[path]);
- })
- fun('anonym.ninja', redirect, 'https://anonym.ninja/download/file/request/' + location.href.split('/').slice(-1)[0])
- fun('tei.ai', redirect, atob('aH' + $("#link-view [name='token']").value.split("aH").slice(1).join("aH")))
- fun('techmody.io', meta, decodeURIComponent(searchParams.get('check')), isPath('/') && searchParams.has('check'))
- fun('studyuo.com', {
- '/pro/': ['link', 'https://shrinkpay.crazyblog.in'],
- '/short/verify/': [ree, 'https://redd.crazyblog.in'],
- '/blog/verify/': [ree, 'https://speedynews.xyz/verify/?'],
- }, false)
- fun('hosting4lifetime.com', {
- '/blog/verify/': [ree, 'https://abcshort.com/$1']
- })
- re('crazyblog.in', {
- '/xhod/verify/': [ree, 'https://redd.crazyblog.in/']
- })
- fun('crazyblog.in', funif, isPath('/') && searchParams.has('postid'), redirect, searchParams.get('postid'))
- fun('medipost.org', meta, 'https://links.medipost.org/$1')
- fun('www.gkqnaexam.com', funif, /^\?([^&]+)/.test(searchParams.search, meta, 'https://web.url2link.com/$1', isPath('^\/yuidea\/$')))
- fun('newsharsh.com', funif, /^\?([^&]+)/.test(searchParams.search), meta, 'https://redd.crazyblog.in/$1', isPath('/english/verify/'))
- fun('madar-24.com', funif, searchParams.has('link'), meta, 'https://coupon-fresh.com/' + decodeURIComponent(searchParams.get('link')), isPath('/'))
- fun('zonearn.biz', funif, isPath('^\/(.+)') && searchParams.has('tok'), redirect, searchParams.get('tok'))
- fun('techmody.io', funif, isPath('/') && searchParams.has('check'), meta, decodeURIComponent(searchParams.get('check')))
- fun('ctbl.me|zshort.cc', funif, location.search === '', redirect, 'https://mdn.rest/?url8j=' + location.href)
- fun('techydino.net', funif, isPath('/golink.php') && searchParams.has('li'), redirect, 'https://mdn.world/golink.php?li=' + searchParams.get('li'))
- fun('getitall.top|pentafaucet.com|hitbits.io', function() {
- const short_id = location.pathname.split('/')[location.pathname === 'hitbits.io' ? 2 : 3];
- fetch('https://sl.lindernman.xyz/s/next', {
- "headers": {
- "content-type": "application/json;charset=UTF-8"
- },
- "body": JSON.stringify({
- short_id
- }),
- "method": "POST"
- })
- .then(res => res.text())
- .then(console.log)
- setTimeout(function() {
- fetch('https://sl.lindernman.xyz/s/complete', {
- "headers": {
- "content-type": "application/json;charset=UTF-8"
- },
- "body": JSON.stringify({
- short_id
- }),
- "method": "POST"
- })
- .then(res => res.text())
- .then(data => {
- redirect(JSON.parse(data))
- })
- }, 4000)
- })
- fun('kiiw.icu', function() {
- if (isPath('/check.php') && searchParams.has('alias') && searchParams.has('wis') && searchParams.has('siw')) {
- redirect('https://kiiw.icu/' + searchParams.get('alias') + '?wis=' + searchParams.get('wis') + '&siw=' + searchParams.get('siw'));
- }
- })
- fun('forex-articles.com|forexlap.com|forexmab.com', click, '.oto > a:nth-child(1)')
- fun('prx.ee', click, '#final_link')
- funif(isPath('/pro2/verify/'), meta, 'https://csd.xmod.in/$1')
- funif(elementExists('div.col-md-4:nth-child(2)'), setInterval, function() {
- click('div.col-md-4:nth-child(2) > span:nth-child(1) > img:nth-child(1)');
- }, 5000)
- funif(elementExists('.tdc_zone'), setInterval, function() {
- click('a.btn-success')
- }, 5000)
- funif(elementExists('#makingdifferenttimer'), setInterval, function() {
- click('#url_qu > a:nth-child(1)')
- }, 3000)
- funif(elementExists('#ytimer'), setInterval, function() {
- click('#ytimer > .s-btn-f')
- }, 5000)
- funif(elementExists('#mainlink'), function() {
- click('#mainlink > .s-btn-f')
- }, 5000)
- funif(elementExists('#links'), setInterval, function() {
- submit('#links > form:nth-child(2)')
- }, 3000)
- funif(elementExists('#surl'), setInterval, function() {
- click('#surl.btn-success.m-2.btn')
- }, 5000)
- funif(elementExists('#before-captcha'), setTimeout, function() {
- submit('#before-captcha');
- }, 3000)
- funif(elementExists('a#firststep-btn.btn.btnstep1'), setTimeout, function() {
- click('button#getlink.btn.m-2.btn-success.disabled');
- }, 3000)
- funif(elementExists('#url_qu'), setTimeout, function() {
- click('.ad-banner.btn-captcha.btn-primary.btn');
- }, 3000)
- params('amazingdarpon.com', 'link', 'https://go.zolomix.in/', false)
- params('allcryptoz.net|topcryptoz.net', 'link', 'https://allcryptoz.net/home/sh/')
- params('mercedesellington.com|model-tas-terbaru.com', 'link', 'http://yousm.link/')
- params('digitalnaz.net', 'getlink', 'https://go.linkfly.io/')
- params('wiki-topia.com', 'link', 'https://cryptowidgets.net/sl/')
- params('foodyrecipe.xyz', 'link', 'https://paid4.link/')
- params('7apple.net', 'go', 'https://illink.net/', false)
- params('wpking.in', 'link', 'https://o.ovlinks.com/')
- params('go.dogeearn.com', 'go', 'https://cryptoads.space/');
- params('takez.co|www.takez.co', 'token', 'https://links.spidermods.in/');
- params('www.digiromotion.com|www.visflakes.com', 're', 'https://zipfy.link/')
- params('crazyblog.in', 'postid', '')
- params('insurance-space.xyz', 'link', 'https://link.insurance-space.xyz/');
- params('theconomy.me', 'link', 'https://link.theconomy.me/');
- params('lux.adinsurance.xyz', 'link', 'https://go.adinsurance.xyz/')
- params('go.insurglobal.xyz', 'link', 'https://link.insurglobal.xyz/');
- params('coin-free.com|kienthucrangmieng.com|coindoog.com', 'wpsafelink', '');
- params('esenr.com', 'link', 'https://go.bcdshort.xyz/')
- params('technicalramno1.link', 'link', 'https://go.urlmoney.xyz/')
- params('informaxonline.com|gaminplay.com', 'link', 'https://go.adslinkfly.online/')
- params('infinityfreescripts.xyz', 'link', 'https://technologylover.in/')
- params('btc.freebcc.org|eth.freebcc.org', 'claim', 'https://freebcc.org/')
- params('adcortoltda.agency', 'link', 'https://link.adcortoltda.agency/')
- params('www.oyunzak.com|www.gazianteppetektemizleme.net', 'link', '')
- params('netfile.cc', 'link', 'https://next.netfile.cc/', false)
- params('exe.io|birdurls.com|dash-free.com|owllink.net', 'url,api', 'https://')
- params('dogeearn.com', 'link', 'https://myhealths.icu/')
- params('tr.link', 'url,api', '')
- params('supersites.xyz', {
- '/verifysl.php': [
- 'url', ''
- ]
- });
- params('claimclicks.com', {
- '/blog/': [
- 'link', 'https://claimclicks.com/short/'
- ]
- });
- params('insuranceblog.xyz', {
- '/blog/': ['link', 'https://gos.insuranceblog.xyz/']
- }, false)
- params('blogginglass.com', {
- '/': ['link', 'http://go.mozlink.net/'],
- '/blog/': ['getlink', 'http://go.fire-link.net/']
- })
- re('dogeearn.com', /^\/coinsurl\/([^/]+)/, 'https://coinsurl.com/$1')
- re('dogeclick.net', /^\/short\/([^/]+)/, 'https://short.clickscoin.com/$1')
- re('dogeclick.net', /^\/ccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
- re('11bit.co.in', /^\/link\/([^/]+)/, 'https://sl.proinfinity.fun/$1')
- re('11bit.co.in', /^\/bitshort\/([^/]+)/, 'https://bitshort.co/$1')
- re('short.clickscoin.com|watchdoge.xyz|dogeclick.net', /^\/ccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
- re('coinbaze.in|techmart4u.in', /^\/coinbazeads\/([^\/]+)/, 'https://urlfiles.com/$1')
- re('nulledsafe.com', /^\/link\/([^\/]+)/, 'https://golink.nulledsafe.com/$1');
- re('coinsearns.com', /^\/cryptoads\/([^/]+)/, 'https://cryptoads.space/$1');
- re('step0.shortlinks.click', /^\/([^\/]+)/, 'https://shortlinks.click/$1');
- re('earnfree.cc', /^\/slc\/step1\/([^/]+)/, 'http://shortlinks.click/$1');
- re('konstantinova.net', /^\/verify\/([^\/]+)/, 'https://coin.mg/$1');
- re('crypto-faucet.xyz', /^\/claim\/link\/([^\/]+)/, 'https://doctor-groups.com/link/$1')
- re('adoco.in', /girl([mpwz])oro\/([^\/]+)/, 'https://girl$1oro.xyz/$2')
- re('link.linksfire.co', /^\/(.+)/, location.href.replace('link', 'blog'))
- re('go.birdurls.com|go.owllink.net', /^\/(.+)/, location.href.replace('go.', ''))
- re('gifans.com|www.gifans.com', /^\/link\/([^\/]+)/, 'https://shortlink.prz.pw/$1')
- re('faucet.100count.net', /^\/fo\/linko\/([^\/]+)/, 'https://100count.net/fo/linko/$1')
- re('faucet.100count.net', /^\/clickit\/sh\/([^/]+)/, 'https://100count.net/fileo/clicksfile/stats/$1')
- re('blog.crazyblog.in', /^\/step\d+?\/([^/]+)$/, 'https://wplink.online/$1')
- re('blog.crazyblog.in', /^\/visit\d+?\/step\d+?\/([^/]+)$/, 'https://cblink.crazyblog.in/$1')
- re('clickscoin.com', /^\/short\/([^/]+)/, 'https://short.clickscoin.com/$1')
- re('clickscoin.com', /^\/shortccsl\/([^/]+)/, 'https://ccsl.xyz/$1')
- re('sl.easysl.click', /^\/step1\/([^\/]+)/, 'https://easysl.click/$1')
- })();
Add Comment
Please, Sign In to add comment