-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New bypasses and fixes to backend: MV3
- Loading branch information
Showing
18 changed files
with
1,309 additions
and
1,047 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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
# Look for any GitHub Actions workflow files in '.github/workflows' | ||
directory: "/.github/workflows" | ||
on: | ||
push: | ||
pull_request: | ||
types: [opened] | ||
directory: ".github/workflows" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "npm" | ||
# Look for 'package.json' and 'package-lock.json' in the main directory | ||
on: | ||
push: | ||
pull_request: | ||
types: [opened] | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Blitly extends BypassDefinition { | ||
constructor() { | ||
super() | ||
} | ||
|
||
execute() { | ||
const target_url = new URLSearchParams(window.location.search).get('url') | ||
this.helpers.safelyNavigate(target_url) | ||
} | ||
} | ||
|
||
export const matches = ['blitly.io'] |
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,3 +1,4 @@ | ||
|
||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Cheatsquad extends BypassDefinition { | ||
|
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,31 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Crackedappsstore extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
this.ensure_dom = true | ||
} | ||
|
||
execute() { | ||
// Find the div with the class name "show_download_links" and remove the 'display: none' style | ||
const ulElement = document.querySelector('#list-downloadlinks'); | ||
let href; | ||
|
||
if (ulElement) { | ||
const liElements = ulElement.querySelectorAll('li'); | ||
if (liElements.length > 1) { | ||
href = liElements[1].querySelector('a').href; | ||
} else if (liElements.length === 1) { | ||
href = liElements[0].querySelector('a').href; | ||
} | ||
} | ||
|
||
this.helpers.safelyNavigate(href); | ||
|
||
// Find the ul with the id list-downloadlinks, find the li in it, and pull the link from the first a tag | ||
const link2 = document.querySelector('#list-downloadlinks li:first-child a'); | ||
this.helpers.safelyNavigate(link2); | ||
} | ||
} | ||
|
||
export const matches = ['crackedappsstore.com']; |
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,17 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Linegee extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
} | ||
|
||
execute() { | ||
const continueLink = Array.from(document.getElementsByTagName('a')).find(a => a.textContent.trim() === 'Continue'); | ||
const href = continueLink.getAttribute('href'); | ||
this.helpers.safelyNavigate(href); | ||
|
||
|
||
} | ||
} | ||
|
||
export const matches = ['linegee.net']; |
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
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,22 @@ | ||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Mobi2c extends BypassDefinition { | ||
constructor() { | ||
super() | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
// /mobi2c.com|newforex.online|healthy4pepole.com|world-trips.net|forex-gold.net|healdad.com|world2our.com|gamalk-sehetk.com|mobitaak.com|forexit.online|shopforex.online|bluetechno.net/, function() {ClickIfExists('.submitBtn', 3);ClickIfExists('#go_d', 3, 'setInterval');}); | ||
//Click the element .submitBtn after a delay of 3 seconds | ||
this.helpers.setTimeout(() => { | ||
document.getElementsByClassName('.submitBtn')[0].click(); | ||
}, 3000); | ||
//Click the element #go_d every 3 seconds until it is clicked | ||
this.helpers.setInterval(() => { | ||
document.getElementById('#go_d')[0].click(); | ||
}, 3000); | ||
} | ||
} | ||
|
||
export const matches = ['mobi2c.com', 'newforex.online', 'healthy4pepole.com', 'world-trips.net', 'forex-gold.net', 'healdad.com', 'world2our.com', 'gamalk-sehetk.com', 'mobitaak.com', 'forexit.online', 'shopforex.online', 'bluetechno.net'] |
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,14 @@ | ||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Oko extends BypassDefinition { | ||
constructor() { | ||
super() | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
// todo: make execute function | ||
} | ||
} | ||
|
||
export const matches = ['oko.sh'] |
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,18 @@ | ||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Oxy extends BypassDefinition { | ||
constructor() { | ||
super() | ||
this.ensure_dom = true | ||
} | ||
|
||
execute() { | ||
this.helpers.ifElement("button#download[disabled]", d => { | ||
this.helpers.awaitElement("button#download:not([disabled])", d => { | ||
d.click() | ||
}) | ||
}) | ||
} | ||
} | ||
|
||
export const matches = ['oxy.cloud'] |
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,17 @@ | ||
import BypassDefinition from './BypassDefinition.js'; | ||
|
||
export default class Pcgamestorrents extends BypassDefinition { | ||
constructor() { | ||
super(); | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
window.setInterval = f => setInterval(f, 1) | ||
this.helpers.transparentProperty("Time_Start", t => t - 5000) | ||
this.helpers.awaitElement("input#nut[src]", i => i.parentNode.submit()) | ||
|
||
} | ||
} | ||
|
||
export const matches = ['dl.pcgamestorrents.org']; |
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,29 @@ | ||
import BypassDefinition from './BypassDefinition.js' | ||
|
||
export default class Shortly extends BypassDefinition { | ||
constructor() { | ||
super() | ||
} | ||
|
||
execute() { | ||
if (location.pathname.substr(0, 3) === "/r/") { | ||
document.getElementById = () => ({ | ||
submit: () => { | ||
let f = document.querySelector("form") | ||
f.action = "/link#" + document.querySelector("input[name='id']").value | ||
f.submit() | ||
} | ||
}) | ||
} | ||
else if (location.pathname === "/link") { | ||
let xhr = new XMLHttpRequest() | ||
xhr.onload = () => this.helpers.safelyNavigate(xhr.responseText) | ||
xhr.open("POST", "https://www.shortly.xyz/getlink.php", true) | ||
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded") | ||
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest") | ||
xhr.send("id=" + location.hash.substr(1)) | ||
} | ||
} | ||
} | ||
|
||
export const matches = ['shortly.xyz'] |
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.js' | ||
|
||
export default class Uploadrar extends BypassDefinition { | ||
constructor() { | ||
super() | ||
// custom bypass required bases can be set here | ||
} | ||
|
||
execute() { | ||
document.querySelector('.mngez-free-download').click(); | ||
document.querySelector('#direct_link > a:nth-child(1)').click(); | ||
document.querySelector('#downloadbtn.downloadbtn').click(); | ||
} | ||
} | ||
|
||
export const matches = ['uploadrar.com', 'uploadrar.net', 'uptomega.me'] |
Oops, something went wrong.