FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python/password_cracker.py at master · doudou2012/Python · GitHub
doudou2012
/
Python
Public
forked from
geekcomputers/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Python
/
password_cracker.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (38 loc) · 1.46 KB
Breadcrumbs
Python
/
password_cracker.py
Copy path
File metadata and controls
47 lines (38 loc) · 1.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Script Name : password_cracker.py
# Author : Craig Richards
# Created : 20 May 2013
# Last Modified :
# Version : 1.0
# Modifications :
# Description : Old school password cracker using python
from
sys
import
platform
as
_platform
# Check the current operating system to import the correct version of crypt
if
_platform
in
[
"linux"
,
"linux2"
,
"darwin"
]:
# darwin is _platform name for Mac OS X
import
crypt
# Import the module
elif
_platform
==
"win32"
:
# Windows
try
:
import
fcrypt
# Try importing the fcrypt module
except
ImportError
:
print
'Please install fcrypt if you are on Windows'
def
testPass
(
cryptPass
):
# Start the function
salt
=
cryptPass
[
0
:
2
]
dictFile
=
open
(
'dictionary.txt'
,
'r'
)
# Open the dictionary file
for
word
in
dictFile
.
readlines
():
# Scan through the file
word
=
word
.
strip
(
'
\n
'
)
cryptWord
=
crypt
.
crypt
(
word
,
salt
)
# Check for password in the file
if
(
cryptWord
==
cryptPass
):
print
"[+] Found Password: "
+
word
+
"
\n
"
return
print
"[-] Password Not Found.
\n
"
return
def
main
():
passFile
=
open
(
'passwords.txt'
)
# Open the password file
for
line
in
passFile
.
readlines
():
# Read through the file
if
":"
in
line
:
user
=
line
.
split
(
':'
)[
0
]
cryptPass
=
line
.
split
(
':'
)[
1
].
strip
(
' '
)
# Prepare the user name etc
print
"[*] Cracking Password For: "
+
user
testPass
(
cryptPass
)
# Call it to crack the users password
if
__name__
==
"__main__"
:
main
()
Back
|
FazBrowse Home
|
New Git URL