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
#!/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 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 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) { |
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
#!/usr/bin/env python3 | |
import sys | |
import json | |
import string | |
import random | |
import visitor | |
import mytemplates | |
from pyjsparser import parse | |
from base64 import b64decode |
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
#!/usr/bin/env python3 | |
import os | |
import mmap | |
import argparse | |
from collections import OrderedDict | |
__title__ = "Z-Link Firmware Tools" | |
__version__ = "0.1" | |
__author__ = "Gareth Bryan" | |
__license__ = "MIT" |
NewerOlder