HomePROJECTS

Anayansi cracker and create hashes

A script for crack or create a hashes and passwords!
Mar 30 2024
2 min readPython, Tools
Anayansi
Anayansi
Anayansi
Static Badge
Static Badge
Static Badge
Static Badge
Static Badge
Static Badge

Anayansi

Anayansi is a script for crack or create a hash written in python, multiplatform for windows and linux.

Creator Hash

aCreator
aCreator

 

Cracker Hash

aCracker
aCracker

Supported Hash Formats

  • MD5
  • SHA1
  • SHA256
  • SHA384
  • SHA512

💻 Installation

Execute the commands according to your case (Win or Linux)

pyhon for windows python3 for Linux

Clone or Download this Repository

#BASH
1git clone https://github.com/aiskoa/Anayansi.git
2

Update Repositories

#BASH
1sudo apt update
2

Change Directory

#BASH
1cd Anayansi
2

Run the setup.py file

#BASH
1python3 setup.py
2

OR install the dependencies manually

#BASH
1pip install -r requirements.txt
2

Run the project

#BASH
1python3 anayansi.py
2

Or for windows

#BASH
1python anayansi.py
2

MD5 Cracker function

#PYTHON
1def md5():
2    """ MD5 is for Decrypting Raw MD5 Hash"""
3    hash = input(
4        Fore.GREEN + " [" + Fore.RED + 'x' + Fore.GREEN + "]" + Style.RESET_ALL + " Enter the Hash : " + Fore.GREEN)
5    w_list = input(
6        Fore.GREEN + " [" + Fore.RED + 'x' + Fore.GREEN + "]" + Style.RESET_ALL + " Input Full Path of Wordlist : " + Fore.GREEN)
7    print(Style.RESET_ALL)
8    pass_file = open(w_list, "r")
9
10    for i in pass_file:
11        file_enc = i.encode('utf-8')
12        md_hash = hashlib.md5(file_enc.strip()).hexdigest()
13
14        if md_hash == hash:
15            print(Fore.GREEN + " Password Found :", i + Style.RESET_ALL)
16            break
17        else:
18            print(Fore.RED + " Password Not Found !!!" + Style.RESET_ALL)
19

 

What is Wordlist?

A "Wordlist" is a list of words or characters listed in a text file, an example of which is "rockyou.txt", and others. I will not provide the Wordlist mentioned, but searching for it is not complicated.

 

MD5 Create function

#PYTHON
1def md5():
2    text = input(Fore.GREEN + " [" + Fore.RED + 'x' + Fore.GREEN + "]" + Style.RESET_ALL + " Enter String : " + Fore.GREEN + Style.RESET_ALL)
3    md5 = hashlib.md5(text.encode('utf8').strip()).hexdigest()
4    print(f"\n MD5 Hash : {Fore.GREEN}{md5}{Style.RESET_ALL}\n")
5

 

✅ ⬇ Download ⬇

Available for Mac, Linux and Windows 10 / 11.

Download

 

📝 License

Copyright © 2024 Aiskoa. This project is MIT licensed.

Did you like this article? Share it!

© 2025