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
| #!/usr/bin/env python3 | |
| import requests | |
| from getpass import getpass | |
| GOOGLE_AUTH_URL = ( | |
| "https://www.googleapis.com/identitytoolkit/v3/relyingparty/verifyPassword" | |
| ) | |
| GOOGLE_AUTH_KEY = "AIzaSyByDiPaSuvWgnB61aSoseEcE292UcUg_Xg" | |
| FIREBASE_DB = "https://cleverspa-2e6a6.firebaseio.com" |
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
| #!/usr/bin/env python3 | |
| import sys | |
| import zlib | |
| import json | |
| signals = [] | |
| with open(sys.argv[1], "rb") as data: | |
| fver = data.readline().decode('utf-8').strip() | |
| sn = data.readline().decode('utf-8').strip() |
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
| #!/usr/bin/env python3 | |
| """ | |
| InSCRAPEsula v0.1 | |
| Inspired by and sections borrowed from https://github.com/ziplokk1/incapsula-cracker-py3" | |
| """ | |
| import logging | |
| import re | |
| from ast import literal_eval | |
| from base64 import b64encode, b64decode | |
| from random import random |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>IPAM</title> | |
| </head> | |
| <body> | |
| <canvas id="ipam"></canvas> | |
| <div id="tooltip" style="position: absolute; display: none; background-color: #ffffff; border: 1px solid #000000; padding: 5px;"></div> | |
| <script> | |
| class DrawIPAM { |
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
| #!/usr/bin/env python3 | |
| import serial | |
| import signal | |
| DEVICE = '/dev/ttyUSB0' | |
| BAUD = 38400 | |
| PROMPT = 'FW>' | |
| BLOCK_SIZE = 0x1000 | |
| class KeyboardInterruptException(Exception): |
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
| #!/usr/bin/env python3 | |
| import argparse | |
| from pathlib import Path | |
| from struct import pack, unpack, iter_unpack | |
| __title__ = "Xanavi RCL (Un)packer" | |
| __version__ = "0.1" | |
| __author__ = "Gareth Bryan" | |
| __license__ = "MIT" |
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
| #!/usr/bin/env python3 | |
| import argparse | |
| __title__ = "Xanavi CRC Tool" | |
| __version__ = "0.1" | |
| __author__ = "Gareth Bryan" | |
| __license__ = "MIT" | |
| FILETYPES = { | |
| #Type Start, End, 2sComp |
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
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import ctypes | |
| import tarfile | |
| from io import BytesIO, RawIOBase | |
| from textwrap import dedent | |
| from base64 import b64decode | |
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
| #!/usr/bin/env python3 | |
| import requests | |
| import time | |
| import uuid | |
| import json | |
| import urllib.parse | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Hash import MD5 | |
| from Crypto.Cipher import PKCS1_v1_5 | |
| from base64 import b64encode |
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
| #!/usr/bin/env node | |
| var fs = require('fs'); | |
| var esprima = require('esprima'); | |
| var escodegen = require('escodegen'); | |
| var estraverse = require('estraverse'); | |
| var debug = true; | |
| var rename = true; | |
| var stringrotatefunc = ` | |
| (function (array, times) { |
OlderNewer