-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/manifest-v3' into manifest-v3
- Loading branch information
Showing
3 changed files
with
261 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import BypassDefinition from "./BypassDefinition"; | ||
|
||
export default class Adfly extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
} | ||
|
||
execute() { | ||
const url = new URLSearchParams(window.location.search); | ||
const dest = url.get('dest'); | ||
const finalUrl = decodeURIComponent(dest); | ||
this.helpers.safelyNavigate(finalUrl); | ||
} | ||
} | ||
|
||
export const matches = ['www93.davisonbarker.pro', 'www96.lowrihouston.pro']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import BypassDefinition from "./BypassDefinition"; | ||
|
||
export default class Cbrun extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
} | ||
execute() { | ||
const a = document.querySelector("a.btn"); | ||
if (a) { | ||
this.helpers.safelyNavigate(a.href); | ||
} | ||
} | ||
} | ||
|
||
export const matches = ['cb.run', 'cb.click']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,258 @@ | ||
export function insertInfoBox(text) { | ||
let infobox_container = document.querySelector('div#ffibv1'); | ||
//Constants needed for bypassing | ||
export const ODP = (t, p, o) => { | ||
try { | ||
Object.defineProperty(t, p, o) | ||
} catch (e) { | ||
console.trace("[FastForward] Couldn't define", p) | ||
} | ||
} | ||
export const setTimeout = window.setTimeout | ||
export const setInterval = window.setInterval | ||
export const URL = window.URL | ||
export const docSetAttribute = document.documentElement.setAttribute.bind( | ||
document.documentElement | ||
) | ||
let navigated = false | ||
//Functions used in bypassing | ||
export function insertInfoBox (text) { | ||
let infobox_container = document.querySelector('div#ffibv1') | ||
|
||
if (!infobox_container) { | ||
infobox_container = document.createElement('div'); | ||
infobox_container.setAttribute('id', 'ffibv1'); | ||
infobox_container.setAttribute('style', ` | ||
if (!infobox_container) { | ||
infobox_container = document.createElement('div') | ||
infobox_container.setAttribute('id', 'ffibv1') | ||
infobox_container.setAttribute( | ||
'style', | ||
` | ||
z-index: 99999999; position: fixed; bottom: 0; line-height:normal; | ||
right: 0; padding: 20px; color:#111; font-size:21px; | ||
font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol; | ||
max-width:500px; display: flex; flex-direction: column-reverse; | ||
`); | ||
` | ||
) | ||
|
||
document.body.appendChild(infobox_container); | ||
} | ||
const div = document.createElement("div"); | ||
div.style = 'margin-left:20px; margin-bottom: 20px;background:#eee;border-radius:10px;padding:20px;box-shadow:#111 0px 5px 40px;cursor:pointer'; | ||
div.innerHTML = `<img src="${window.x8675309bp}icon/48.png" style="width:24px;height:24px;margin-right:8px"><span style="display:inline"></span>`; | ||
div.setAttribute("tabindex","-1"); | ||
div.setAttribute("aria-hidden","true"); | ||
const span = div.querySelector("span"); | ||
span.textContent=text; | ||
div.onclick= () => infobox_container.removeChild(div); | ||
infobox_container.appendChild(div); | ||
setTimeout(()=>infobox_container.removeChild(div), 7000); | ||
document.body.appendChild(infobox_container) | ||
} | ||
const div = document.createElement('div') | ||
div.style = | ||
'margin-left:20px; margin-bottom: 20px;background:#eee;border-radius:10px;padding:20px;box-shadow:#111 0px 5px 40px;cursor:pointer' | ||
div.innerHTML = `<img src="${window.x8675309bp}icon/48.png" style="width:24px;height:24px;margin-right:8px"><span style="display:inline"></span>` | ||
div.setAttribute('tabindex', '-1') | ||
div.setAttribute('aria-hidden', 'true') | ||
const span = div.querySelector('span') | ||
span.textContent = text | ||
div.onclick = () => infobox_container.removeChild(div) | ||
infobox_container.appendChild(div) | ||
setTimeout(() => infobox_container.removeChild(div), 7000) | ||
} | ||
|
||
export function unsafelyNavigate(target, referer=null) { | ||
//The background script will intercept the request and redirect to html/before-navigate.html or to the target depending on the user's settings. | ||
let url = `https://fastforward.team/bypassed?target=${encodeURIComponent(target)}`; | ||
if (referer) | ||
url += `&referer=${encodeURIComponent(referer)}`; | ||
|
||
switch(target)//All values here have been tested using "Take me to destinations after 0 seconds." | ||
{ | ||
case (/(krnl\.place|hugegames\.io)/.exec(target)||{}).input: | ||
url+="&safe_in=15" | ||
break; | ||
case (/(bowfile\.com)/.exec(target)||{}).input: | ||
url+="&safe_in=20" | ||
break; | ||
export function ensureDomLoaded (func) { | ||
if (['interactive', 'complete'].indexOf(document.readyState)) { | ||
func() | ||
} else { | ||
let triggered = false | ||
document.addEventListener('DOMContentLoaded', () => { | ||
if (!triggered) { | ||
triggered = true | ||
setTimeout(func, 1) | ||
} | ||
}) | ||
} | ||
} | ||
export function awaitElement (elem, func) { | ||
let time = setInterval(() => { | ||
let element = document.querySelector(elem) | ||
if (element) { | ||
func(element) | ||
clearInterval(time) | ||
} | ||
}, 10) | ||
setInterval(() => { | ||
clearInterval(time) | ||
}, 30000) | ||
} | ||
export function crowdDomain (domain) { | ||
if (crowdBypassCheckbox.checked && domain) { | ||
docSetAttribute('{{channel.crowd_domain}}', domain) | ||
} | ||
} | ||
export function crowdPath (path) { | ||
if (crowdBypassCheckbox.checked && path) { | ||
docSetAttribute('{{channel.crowd_path}}', path) | ||
} | ||
} | ||
export function crowdReferer (query) { | ||
if (query) { | ||
docSetAttribute('{{channel.crowd_referer}}', query) | ||
} | ||
} | ||
export function crowdBypass (func, available) { | ||
if (!func) { | ||
func = () => {} | ||
} | ||
if (crowdBypassCheckbox.checked) { | ||
docSetAttribute('{{channel.crowd_query}}', '') | ||
let youSee = setInterval(() => { | ||
if (document.documentElement.getAttribute('{{channel.crowd_queried}}')) { | ||
document.documentElement.removeAttribute('{{channel.crowd_queried}}') | ||
insertInfoBox('{{msg.crowdWait}}') | ||
func() | ||
} | ||
}, 20) | ||
} else if (available) { | ||
func() | ||
} else { | ||
insertInfoBox('{{msg.crowdDisabled}}') | ||
} | ||
} | ||
export function crowdContribute (target, func) { | ||
if (typeof func != 'function') { | ||
func = () => {} | ||
} | ||
if (crowdBypassCheckbox.checked && isGoodLink(target)) { | ||
docSetAttribute('{{channel.crowd_contribute}}', target) | ||
setTimeout(func, 10) | ||
} else { | ||
func() | ||
} | ||
} | ||
export function contributeAndNavigate (target) { | ||
if (!navigated && isGoodLink(target)) { | ||
crowdContribute(target, () => unsafelyNavigate(target)) | ||
} | ||
} | ||
export function unsafelyNavigate (target, referer = null) { | ||
//The background script will intercept the request and redirect to html/before-navigate.html or to the target depending on the user's settings. | ||
if (navigated) { | ||
return | ||
} | ||
let url = `https://fastforward.team/bypassed?target=${encodeURIComponent( | ||
target | ||
)}` | ||
if (referer) url += `&referer=${encodeURIComponent(referer)}` | ||
|
||
location.assign(url); | ||
switch ( | ||
target //All values here have been tested using "Take me to destinations after 0 seconds." | ||
) { | ||
case (/(krnl\.place|hugegames\.io)/.exec(target) || {}).input: | ||
url += '&safe_in=15' | ||
break | ||
case (/(bowfile\.com)/.exec(target) || {}).input: | ||
url += '&safe_in=20' | ||
break | ||
case (/(flux\.li)/.exec(target) || {}).input: | ||
url += '&safe_in=25' | ||
break | ||
} | ||
unsafelyAssign(url) | ||
} | ||
|
||
export function parseTarget (target) { | ||
return target instanceof HTMLAnchorElement ? target.href : target; | ||
return target instanceof HTMLAnchorElement ? target.href : target | ||
} | ||
|
||
export function safelyNavigate(target, drophash) { | ||
target = parseTarget(target) | ||
if(!isGoodLink(target)) | ||
return false | ||
export function safelyNavigate (target, drophash) { | ||
target = parseTarget(target) | ||
if (!isGoodLink(target)) return false | ||
|
||
// bypassed=true | ||
let url = new URL(target) | ||
if(!drophash&&(!url||!url.hash)) | ||
target+=location.hash | ||
// bypassed=true | ||
let url = new URL(target) | ||
if (!drophash && (!url || !url.hash)) target += location.hash | ||
|
||
unsafelyNavigate(target) | ||
return true | ||
unsafelyNavigate(target) | ||
return true | ||
} | ||
export function unsafelyAssign (target) { | ||
navigated = true | ||
window.onbeforeunload = null | ||
location.assign(target) | ||
} | ||
export function safelyAssign (target) { | ||
target = parseTarget(target) | ||
if (navigated || !isGoodLink(target)) return false | ||
bypassed = true | ||
let url = new URL(target) | ||
if (!url || !url.hash) target += location.hash | ||
unsafelyAssign(target) | ||
return true | ||
} | ||
|
||
export function isGoodLink(link) { | ||
if(typeof link !== "string" || link.split("#")[0] === location.href.split("#")[0]) | ||
{ | ||
return false | ||
export function isGoodLink (link) { | ||
if ( | ||
typeof link !== 'string' || | ||
link.split('#')[0] === location.href.split('#')[0] | ||
) { | ||
return false | ||
} | ||
try { | ||
let u = new URL(decodeURI(link).trim().toLocaleLowerCase()) | ||
//check if host is a private/internal ip | ||
if ( | ||
u.hostname === 'localhost' || | ||
u.hostname === '[::1]' || | ||
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/.test(u.hostname) | ||
) { | ||
return false | ||
} | ||
try | ||
{ | ||
let u = new URL(decodeURI(link).trim().toLocaleLowerCase()) | ||
//check if host is a private/internal ip | ||
if (u.hostname === 'localhost' || u.hostname === '[::1]' || /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/.test(u.hostname)) { | ||
return false | ||
} | ||
const parts = u.hostname.split('.'); | ||
if (parts[0] === '10' || (parts[0] === '172' && (parseInt(parts[1], 10) >= 16 && parseInt(parts[1], 10) <= 31)) || (parts[0] === '192' && parts[1] === '168')) { | ||
return false | ||
} | ||
// Check if protocol is safe | ||
let safeProtocols = ["http:", "https:", "mailto:", "irc:", "telnet:", "tel:", "svn:"] | ||
if (!safeProtocols.includes(u.protocol)) { | ||
return false | ||
} | ||
const parts = u.hostname.split('.') | ||
if ( | ||
parts[0] === '10' || | ||
(parts[0] === '172' && | ||
parseInt(parts[1], 10) >= 16 && | ||
parseInt(parts[1], 10) <= 31) || | ||
(parts[0] === '192' && parts[1] === '168') | ||
) { | ||
return false | ||
} | ||
catch(e) | ||
{ | ||
return false | ||
// Check if protocol is safe | ||
let safeProtocols = [ | ||
'http:', | ||
'https:', | ||
'mailto:', | ||
'irc:', | ||
'telnet:', | ||
'tel:', | ||
'svn:' | ||
] | ||
if (!safeProtocols.includes(u.protocol)) { | ||
return false | ||
} | ||
return true | ||
} catch (e) { | ||
return false | ||
} | ||
return true | ||
} | ||
|
||
export async function bypassRequests(execution_method) { | ||
const rawOpen = XMLHttpRequest.prototype.open; | ||
XMLHttpRequest.prototype.open = function () { | ||
this.addEventListener('load', execution_method); | ||
rawOpen.apply(this, arguments); | ||
}; | ||
export async function bypassRequests (execution_method) { | ||
const rawOpen = XMLHttpRequest.prototype.open | ||
XMLHttpRequest.prototype.open = function () { | ||
this.addEventListener('load', execution_method) | ||
rawOpen.apply(this, arguments) | ||
} | ||
|
||
const rawFetch = window.fetch; | ||
window.fetch = async (requestInfo, init) =>{ | ||
const result = await rawFetch(requestInfo, init); | ||
execution_method(result); | ||
return Promise.resolve(result); | ||
}; | ||
const rawFetch = window.fetch | ||
window.fetch = async (requestInfo, init) => { | ||
const result = await rawFetch(requestInfo, init) | ||
execution_method(result) | ||
return Promise.resolve(result) | ||
} | ||
} | ||
|
||
export default { | ||
insertInfoBox, | ||
safelyNavigate, | ||
unsafelyNavigate, | ||
parseTarget, | ||
isGoodLink, | ||
bypassRequests, | ||
insertInfoBox, | ||
ensureDomLoaded, | ||
awaitElement, | ||
crowdDomain, | ||
crowdPath, | ||
crowdReferer, | ||
crowdBypass, | ||
crowdContribute, | ||
contributeAndNavigate, | ||
unsafelyNavigate, | ||
parseTarget, | ||
safelyNavigate, | ||
unsafelyAssign, | ||
safelyAssign, | ||
isGoodLink, | ||
bypassRequests, | ||
ODP, | ||
URL | ||
} |