Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Password cracker #1012

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions EthicalHackingScripts/password-cracker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Password Cracker

This script uses hash as an input and bruteforce that hash using a text file to crack the password
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions EthicalHackingScripts/password-cracker/images/image.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions EthicalHackingScripts/password-cracker/password-cracker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import hashlib
print("**************PASSWORD CRACKER ******************")

# To check if the password
# found or not.
pass_found = 0

input_hash = input("Enter the hashed password:")

pass_doc = input("\nEnter passwords filename including path(root / home/):")

try:
# trying to open the password file.
pass_file = open(pass_doc, 'r')
except:
print("Error:")
print(pass_doc, "is not found.\nPlease give the path of file correctly.")
quit()


# comparing the input_hash with the hashes
# of the words in password file,
# and finding password.

for word in pass_file:
# encoding the word into utf-8 format
enc_word = word.encode('utf-8')

# Hashing a word into md5 hash
hash_word = hashlib.md5(enc_word.strip())

# digesting that hash into a hexa decimal value
digest = hash_word.hexdigest()

if digest == input_hash:
# comparing hashes
print("Password found.\nThe password is:", word)
pass_found = 1
break

# if password is not found.
if not pass_found:
print("Password is not found in the", pass_doc, "file")
print('\n')
print("***************** Thank you **********************")
2 changes: 2 additions & 0 deletions EthicalHackingScripts/password-cracker/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1) installing the 'pynput' module through terminal and then importing notification
2) installing the 'win10toast' module through terminal and then importing notification