HomePROYECTOS

Anayansi - Creador y Cracker de Hashes

Mar 30 20242 min read
PythonTools
Anayansi
Anayansi
Anayansi
Static Badge
Static Badge
Static Badge
Static Badge
Static Badge
Static Badge

Anayansi

Anayansi es un script para crackear o crear un hash escrito en python, multiplataforma para windows y linux.

Creador de Hash

aCreator
aCreator

 

Cracker de Hash

aCracker
aCracker

Formatos de Hash Soportados

  • MD5
  • SHA1
  • SHA256
  • SHA384
  • SHA512

💻 Instalación

Ejecuta los comandos según tu caso (Win o Linux)

python para windows python3 para Linux

Clona o Descarga este Repositorio

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

Actualiza los Repositorios

bash
1sudo apt update
2

Cambia de Directorio

bash
1cd Anayansi
2

Ejecuta el archivo setup.py

bash
1python3 setup.py
2

O instala las dependencias manualmente

bash
1pip install -r requirements.txt
2

Ejecuta el proyecto

bash
1python3 anayansi.py
2

O para windows

bash
1python anayansi.py
2

Función MD5 Cracker

python
1def md5():
2    """ MD5 es para Descifrar Hash MD5 en Crudo"""
3    hash = input(
4        Fore.GREEN + " [" + Fore.RED + 'x' + Fore.GREEN + "]" + Style.RESET_ALL + " Ingresa el Hash : " + Fore.GREEN)
5    w_list = input(
6        Fore.GREEN + " [" + Fore.RED + 'x' + Fore.GREEN + "]" + Style.RESET_ALL + " Ingresa la Ruta Completa de la 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 + " Contraseña Encontrada :", i + Style.RESET_ALL)
16            break
17        else:
18            print(Fore.RED + " Contraseña No Encontrada !!!" + Style.RESET_ALL)
19

 

¿Qué es una Wordlist?

Una "Wordlist" es una lista de palabras o caracteres listados en un archivo de texto, un ejemplo de ello es "rockyou.txt", y otras. No proporcionaré la Wordlist mencionada, pero buscarla no es complicado.

 

Función MD5 Create

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

 

✅ ⬇ Descargar ⬇

Disponible para Mac, Linux y Windows 10 / 11.

Descargar

 

📝 Licencia

Copyright © 2024 aiskoa. Este proyecto tiene licencia MIT.

Share this article

© 2026