ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Cracking Tutorials

π”π§π‘πšπ¬π‘πžπ«πŸ”“

Submitted by Volvic at 23-01-2023, 05:23 PM


π”π§π‘πšπ¬π‘πžπ«πŸ”“
2.897 Views
Volvic's Avatar'
Volvic
Offline
#1
𝐌𝐲 πƒπ’π¬πœπ¨π«π:Albert_Einstein#9999


[ Hidden Content! ]
***hash-identifier***

Software to identify the different types of hashes used to encrypt data and especially passwords.

Encryption formats supported:

ADLER-32
CRC-32
CRC-32B
CRC-16
CRC-16-CCITT
DES(Unix)
FCS-16
GHash-32-3
GHash-32-5
GOST R 34.11-94
Haval-160
Haval-192 110080 ,Haval-224 114080 ,Haval-256
Lineage II C4
Domain Cached Credentials
XOR-32
MD5(Half)
MD5(Middle)
MySQL
MD5(phpBB3)
MD5(Unix)
MD5(Wordpress)
MD5(APR)
Haval-128
MD2
MD4
MD5
MD5(HMAC(Wordpress))
NTLM
RAdmin v2.x
RipeMD-128
SNEFRU-128
Tiger-128
MySQL5 - SHA-1(SHA-1($pass))
MySQL 160bit - SHA-1(SHA-1($pass))
RipeMD-160
SHA-1
SHA-1(MaNGOS)
Tiger-160
Tiger-192
md5($pass.$salt) - Joomla
SHA-1(Django)
SHA-224
RipeMD-256
SNEFRU-256
md5($pass.$salt) - Joomla
SAM - (LM_hash:NT_hash)
SHA-256(Django)
RipeMD-320
SHA-384
SHA-256
SHA-384(Django)
SHA-512
Whirlpool
And more…

Encryption algorithms that can not be differentiated unless they have been decrypted, so the efficiency of the software also depends on the user's criteria.


Link:
https://github.com/blackploit/hash-identifier




====================================================






***findmyhash.py***

(this is just a mirror of the official Google Code repository: https://code.google.com/p/findmyhash/)

findmyhash.py try to crack different types of hashes using free online services.

NOTE: findmyhash.py 2.0 is coming!! The new version will have many changes and improvements. Some of these changes are:

Β  Β  Empty hashes recognition
Β  Β  Multi-thread analysis
Β  Β  Algorithm recognition from the hash value
Β  Β  Pause and Resume options
Β  Β  Save the results into a file

If you have some suggestion you would like to see in the new version, email us or use the "Issues" tab.
findmyhash.py 1.1.2
Usage and options

python findmyhash.py algorithm OPTIONS

Accepted algorithms

Β  Β  MD4 - RFC 1320
Β  Β  MD5 - RFC 1321
Β  Β  SHA1 - RFC 3174 (FIPS 180-3)
Β  Β  SHA224 - RFC 3874 (FIPS 180-3)
Β  Β  SHA256 - FIPS 180-3
Β  Β  SHA384 - FIPS 180-3
Β  Β  SHA512 - FIPS 180-3
Β  Β  RMD160 - RFC 2857
Β  Β  GOST - RFC 5831
Β  Β  WHIRLPOOL - ISO/IEC 10118-3:2004
Β  Β  LM - Microsoft Windows hash
Β  Β  NTLM - Microsoft Windows hash
Β  Β  MYSQL - MySQL 3, 4, 5 hash
Β  Β  CISCO7 - Cisco IOS type 7 encrypted passwords
Β  Β  JUNIPER - Juniper Networks $9$ encrypted passwords
Β  Β  LDAP_MD5 - MD5 Base64 encoded
Β  Β  LDAP_SHA1 - SHA1 Base64 encoded

NOTE: for LM / NTLM it is recommended to introduce both values with this format:

python findmyhash.py LM -h 9a5760252b7455deaad3b435b51404ee:0d7f1f2bdeac6e574d6e18ca85fb58a7
python findmyhash.py NTLM -h 9a5760252b7455deaad3b435b51404ee:0d7f1f2bdeac6e574d6e18ca85fb58a7

Options

Β  -h <hash_value> Β If you only want to crack one hash, specify its value with this option.

Β  -f <file> Β  Β  Β  Β If you have several hashes, you can specify a file with one hash per line.
Β  Β  Β  Β  Β  Β  Β  Β  Β  Β NOTE: All of them have to be the same type.

Β  -g Β  Β  Β  Β  Β  Β  Β  If your hash cannot be cracked, search it in Google and show all the results.
Β  Β  Β  Β  Β  Β  Β  Β  Β  Β NOTE: This option ONLY works with -h (one hash input) option.

Examples
Try to crack only one hash

python findmyhash.py MD5 -h "098f6bcd4621d373cade4e832627b4f6"

If the hash cannot be cracked, it will be searched in Google

python findmyhash.py SHA1 -h "A94A8FE5CCB19BA61C4C0873D391E987982FBBD3" -g

Try to crack all the hashes of a file (one hash per line)

python findmyhash.py MYSQL -f mysqlhashesfile.txt

More examples

python findmyhash.py MD4 -h "db346d691d7acc4dc2625db19f9e3f52"
python findmyhash.py MD5 -h "098f6bcd4621d373cade4e832627b4f6"
python findmyhash.py SHA1 -h "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3"
python findmyhash.py SHA224 -h "90a3ed9e32b2aaf4c61c410eb925426119e1a9dc53d4286ade99a809"
python findmyhash.py SHA256 -h "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08"
python findmyhash.py SHA384 -h "768412320f7b0aa5812fce428dc4706b3cae50e02a64caa16a782249bfe8efc4b7ef1ccb126255d196047dfedf17a0a9"
python findmyhash.py SHA512 -h "ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8e6f57f50028a8ff"
python findmyhash.py RMD160 -h "5e52fee47e6b070565f74372468cdc699de89107"
python findmyhash.py GOST -h "a6e1acdd0cc7e00d02b90bccb2e21892289d1e93f622b8760cb0e076def1f42b"
python findmyhash.py WHIRLPOOL -h "b913d5bbb8e461c2c5961cbe0edcdadfd29f068225ceb37da6defcf89849368f8c6c2eb6a4c4ac75775d032a0ecfdfe8550573062b653fe92fc7b8fb3b7be8d6"
python findmyhash.py LM -h "01fc5a6be7bc6929aad3b435b51404ee:0cb6948805f797bf2a82807973b89537"
python findmyhash.py LM -h "01fc5a6be7bc6929aad3b435b51404ee"
python findmyhash.py NTLM -h "01fc5a6be7bc6929aad3b435b51404ee:0cb6948805f797bf2a82807973b89537"
python findmyhash.py NTLM -h "0cb6948805f797bf2a82807973b89537"
python findmyhash.py MYSQL -h "378b243e220ca493"
python findmyhash.py MYSQL -h "*94bdcebe19083ce2a1f959fd02f964c7af4cfc29"
python findmyhash.py MYSQL -h "94bdcebe19083ce2a1f959fd02f964c7af4cfc29"
python findmyhash.py CISCO7 -h "12090404011C03162E"
python findmyhash.py JUNIPER -h "\$9\$90m6AO1EcyKWLhcYgaZji"
python findmyhash.py LDAP_MD5 -h "{MD5}CY9rzUYh03PK3k6DJie09g=="
python findmyhash.py LDAP_SHA1 -h "{SHA}qUqP5cyxm6YcTAhz05Hph5gvu9M="

Contact

Discord:Albert_Einstein#9999




https://github.com/frdmn/findmyhash
0
Reply


Messages In This Thread
π”π§π‘πšπ¬π‘πžπ«πŸ”“ - by Volvic - 23-01-2023, 05:23 PM


Users browsing this thread: 1 Guest(s)