Last active
March 17, 2023 11:25
-
-
Save unresolvedsymbol/aaca6b1397d55cd68133b0f361211a1b to your computer and use it in GitHub Desktop.
Yeah. Bypasses linkvertises easy.
This file contains hidden or 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
import time | |
import pip | |
try: | |
from selenium import webdriver | |
except ImportError: | |
pip.main(['install', 'selenium']) | |
import selenium | |
try: | |
import pyperclip | |
except ImportError: | |
pip.main(['install', 'pyperclip']) | |
import pyperclip | |
urls = [ | |
"https://cdn.krnl.place/getkey", | |
"https://cdn.krnl.place/getkey_games", | |
"https://cdn.krnl.place/getkey_interface", | |
"https://cdn.krnl.place/getkey_scripts", | |
"https://cdn.krnl.place/getkey.php" | |
] | |
selenium_svc = webdriver.chrome.service.Service(".\chromedriver.exe") | |
chrome_ops = webdriver.ChromeOptions() | |
chrome_ops.add_experimental_option('excludeSwitches', ['enable-logging']) | |
driver = webdriver.Chrome(service=selenium_svc, options=chrome_ops) | |
print("WRITTEN BY VOIDSTAR BCZ KRNL KEY BOOTSTRAPPER BROKE") | |
print("FUCK YOU ADLINK KRNL DEVS") | |
print() | |
for url in urls: | |
print("Loading krnl url") | |
driver.get(url) | |
driver.implicitly_wait(3) | |
time.sleep(6) | |
if "This key only works for you!" in driver.page_source: | |
print("Captcha system completed") | |
key = driver.execute_script('return document.getElementsByName("uIn1").item(0).value') | |
print("Key: key") | |
pyperclip.copy(key) | |
print("Attempted to copy to clipboard!") | |
time.sleep(99999) | |
break | |
print("Complete the captcha") | |
while not driver.current_url.startswith("https://linkvertise.com/"): | |
time.sleep(0.5) | |
print("Rediring from linkvertise") | |
driver.get("about:blank") | |
driver.implicitly_wait(3) | |
print("Waiting for about 15 sec before next link") | |
time.sleep(18) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Btw you skids need https://chromedriver.chromium.org/downloads release for ur chrome version downloaded and extracted in the same folder as the script!