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
sqlmap --tor --tor-type=SOCKS5 --random-agent --threads=10 --risk=3 --level=5 --dump-all --url="/blog/login/" --data "email=admin&password=password&remember=Y" -p "email,password" --method POST |
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 platform | |
from os import system | |
def full_arg(): | |
return " ".join(sys.argv[1:]) | |
def PROGRAM_NAME(): |
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
1. SHA3_224 => 224 bits | |
2. 224 (bits) [/8] = 28 (bytes) | |
3. 28 bytes [*2] = 56 (HEX places occupied) = 56 (-long String after digestion) | |
4. 56 String of HEXadecimals => max number is FFFF...FFFF (56 times). This number is: | |
(10 (base 16) ^ 57) - 1 = (16^57)-1 | |
5. To find maximum String length base 62 (keccakmod), will use latural logs (coz idk how else). Do: | |
floor( ln((16^57)-1) / ln(62) ) + 1 ~= floor(158.037 / 4.127) + 1 ~= floor(38.292) + 1 = 38+1=39 | |
* 39 is the maximum code length in Base62 |
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
#pip install midi2audio | |
from midi2audio import FluidSynth | |
import os, sys, string | |
from pathlib import Path | |
def main(): | |
PROGRAM_NAME = "midi2audio_wrap" | |
if len(sys.argv) < 3: #-1 |
NewerOlder