- Edited
Linkvertise Bypass Script 2024
Bypass Linkvertise URLs very simply with Python script.
Script is using fast API and is open source.
Python Script :
import requests
import argparse
import sys
import os
from colorama import Fore, Style
# Clear console based on the operating system
if sys.platform == "win32":
os.system("cls")
else:
os.system("clear")
def bypass(url='https://link-target.net/143405/2399'):
"""Bypass the URL using the API."""
headers = {
'User -Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0',
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate, br',
'Origin': 'https://bypass.vip',
'DNT': '1',
'Connection': 'keep-alive',
'Sec-Fetch-Dest': 'empty',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Site': 'same-site'
}
params = {'url': url}
response = requests.get('https://api.bypass.vip/bypass', headers=headers, params=params)
if response.status_code == 200:
if response.json()['status'] == "success":
bypassed = response.json().get('result')
print(Fore.WHITE + "\n┌[" + Fore.BLUE + "LB API" + Fore.WHITE + "]─[" + Fore.BLUE + "SCARLETTA'S LOUNGE" + Fore.WHITE + "]\n│\n" + Fore.WHITE + "└[" + Fore.GREEN + "*" + Fore.WHITE + "] Successfully bypassed: " + Style.BRIGHT + Fore.GREEN + bypassed + Style.RESET_ALL)
return True
else:
print("\n┌[" + Fore.BLUE + "LB API" + Fore.WHITE + "]─[" + Fore.BLUE + "SCARLETTA'S LOUNGE" + Fore.WHITE + "]\n│\n" + Fore.WHITE + "└[" + Fore.RED + "!" + Fore.WHITE + "] Not bypassed (no success): " + Style.BRIGHT + Fore.RED + url + Style.RESET_ALL)
else:
print("\n┌[" + Fore.BLUE + "LB API" + Fore.WHITE + "]─[" + Fore.BLUE + "SCARLETTA'S LOUNGE" + Fore.WHITE + "]\n│\n" +
Fore.WHITE + "└[" + Fore.RED + "!" + Fore.WHITE + "] Not bypassed (status code): " + Style.BRIGHT + Fore.RED + str(response.status_code) + " for URL: " + url + Style.RESET_ALL)
return False
def main():
"""Main function to handle user input and call the bypass function."""
parser = argparse.ArgumentParser(description='Bypass Linkvertise URLs.')
parser.add_argument('-u', '--urltobypass', type=str, help='The Linkvertise URL to bypass.')
global args
args = parser.parse_args()
if args.urltobypass:
bypass(args.urltobypass)
else:
url = input(Fore.YELLOW + ">> " + Fore.CYAN + "Give Linkvertise URL: ")
bypass(url)
if __name__ == '__main__':
main()
Save this code as linkvertise.py
and then run it.
Required modules :
pip install requests
pip install colorama
Run tool :
python3 linkvertise.py -u https://link-target.net/434979/1342431