Skip to content

Instantly share code, notes, and snippets.

@ingramali
ingramali / Obfuscator.php
Created June 16, 2022 18:58 — forked from mwgamera/Obfuscator.php
Ultimate obfuscator for e-mail addresses
<?php
/**
* Obfuscate UTF-8 strings in a way that allows easy decoding in Javascript
* while cryptographically forcing potentially misbehaving harvester to make
* additional request.
**/
class Obfuscator {
const SEED_LENGTH = 16;
const KEY_ROUNDS = 20;
@ingramali
ingramali / sqlmap-cheat-sheet.md
Created October 11, 2019 10:08 — forked from jkullick/sqlmap-cheat-sheet.md
SQLMap Cheat Sheet
# Enumerate databases
sqlmap --dbms=mysql -u "$URL" --dbs

# Enumerate tables
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" --tables

# Dump table data
sqlmap --dbms=mysql -u "$URL" -D "$DATABASE" -T "$TABLE" --dump
@ingramali
ingramali / build
Created September 15, 2019 12:13 — forked from playfulgod/build
kernel build script
#!/bin/bash
# Our settings
#Let's make sure the environment is clean and ready to compile the kernel
echo
echo "Cleaning house!!"
echo
make mrproper
rm -rf ../package/system/lib/modules/*.ko
@ingramali
ingramali / facebook.py
Created April 3, 2019 05:24 — forked from nelyj/facebook.py
facebook.py Modificado - Facebook brute force - Hacking Chile convesation
#!usr/bin/python
#Facebook Cracker Version 2.1 can crack into Facebook Database 100% without Interruption By Facebook Firewall !
#This program is for educational purposes only.
#Don't attack people facebook accounts it's illegal !
#If you want to crack into someone's account, you must have the permission of the user.
#Mauritania Attacker is not responsible.
import sys
import random