Python Password Brute-Forcer The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Brute force HTTP with PythonPython small brute-forcerBrute force script for printing a passwordPassword Validation in PythonRandom password cracker using brute forceThe BFS approach to the SmartWordToy challengePassword Checker in PythonPython - username and password authenticationPython password generatorBrute force password cracker in Python
How to determine omitted units in a publication
Button changing its text & action. Good or terrible?
What's the point in a preamp?
Word for: a synonym with a positive connotation?
What information about me do stores get via my credit card?
How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Huge performance difference of the command find with and without using %M option to show permissions
Identify 80s or 90s comics with ripped creatures (not dwarves)
What can I do if neighbor is blocking my solar panels intentionally?
Do I have Disadvantage attacking with an off-hand weapon?
60's-70's movie: home appliances revolting against the owners
Can the DM override racial traits?
1960s short story making fun of James Bond-style spy fiction
Why did Peik Lin say, "I'm not an animal"?
What force causes entropy to increase?
Simulating Exploding Dice
Python - Fishing Simulator
Homework question about an engine pulling a train
How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?
different output for groups and groups USERNAME after adding a username to a group
ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?
How to support a colleague who finds meetings extremely tiring?
Am I ethically obligated to go into work on an off day if the reason is sudden?
Python Password Brute-Forcer
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Brute force HTTP with PythonPython small brute-forcerBrute force script for printing a passwordPassword Validation in PythonRandom password cracker using brute forceThe BFS approach to the SmartWordToy challengePassword Checker in PythonPython - username and password authenticationPython password generatorBrute force password cracker in Python
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
$begingroup$
I'm working on a password brute-forcer that takes in a password from the user and brute-forces solutions until it finds a match. I was wondering if there is any way to improve performance or readability?
import itertools
import time
Alphabet = ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXiuYZ1234567890-_.")
Password = input("What is your password?n")
start = time.time()
counter = 1
CharLength = 1
for CharLength in range(25):
passwords = (itertools.product(Alphabet, repeat = CharLength))
print("n")
print("Currently working on passwords with ", CharLength, " characters.")
print("We are currently at ", (counter / (time.time() - start)), "attempts per second.")
print("It has been ", time.time() - start, " seconds.")
print("We have tried ", counter, " possible passwords.")
for i in passwords:
counter += 1
i = str(i)
i = i.replace("[", "")
i = i.replace("]", "")
i = i.replace("'", "")
i = i.replace(" ", "")
i = i.replace(",", "")
i = i.replace("(", "")
i = i.replace(")", "")
if i == Password:
end = time.time()
timetaken = end - start
print("nPassword found in ", timetaken, " seconds and ", counter, "attempts.")
print("That is ", counter / timetaken, " attempts per second.")
print("nThe password is "%s"." % i)
input("nPress enter when you have finished.")
exit()
Thanks.
python
$endgroup$
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
$begingroup$
I'm working on a password brute-forcer that takes in a password from the user and brute-forces solutions until it finds a match. I was wondering if there is any way to improve performance or readability?
import itertools
import time
Alphabet = ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXiuYZ1234567890-_.")
Password = input("What is your password?n")
start = time.time()
counter = 1
CharLength = 1
for CharLength in range(25):
passwords = (itertools.product(Alphabet, repeat = CharLength))
print("n")
print("Currently working on passwords with ", CharLength, " characters.")
print("We are currently at ", (counter / (time.time() - start)), "attempts per second.")
print("It has been ", time.time() - start, " seconds.")
print("We have tried ", counter, " possible passwords.")
for i in passwords:
counter += 1
i = str(i)
i = i.replace("[", "")
i = i.replace("]", "")
i = i.replace("'", "")
i = i.replace(" ", "")
i = i.replace(",", "")
i = i.replace("(", "")
i = i.replace(")", "")
if i == Password:
end = time.time()
timetaken = end - start
print("nPassword found in ", timetaken, " seconds and ", counter, "attempts.")
print("That is ", counter / timetaken, " attempts per second.")
print("nThe password is "%s"." % i)
input("nPress enter when you have finished.")
exit()
Thanks.
python
$endgroup$
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04
add a comment |
$begingroup$
I'm working on a password brute-forcer that takes in a password from the user and brute-forces solutions until it finds a match. I was wondering if there is any way to improve performance or readability?
import itertools
import time
Alphabet = ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXiuYZ1234567890-_.")
Password = input("What is your password?n")
start = time.time()
counter = 1
CharLength = 1
for CharLength in range(25):
passwords = (itertools.product(Alphabet, repeat = CharLength))
print("n")
print("Currently working on passwords with ", CharLength, " characters.")
print("We are currently at ", (counter / (time.time() - start)), "attempts per second.")
print("It has been ", time.time() - start, " seconds.")
print("We have tried ", counter, " possible passwords.")
for i in passwords:
counter += 1
i = str(i)
i = i.replace("[", "")
i = i.replace("]", "")
i = i.replace("'", "")
i = i.replace(" ", "")
i = i.replace(",", "")
i = i.replace("(", "")
i = i.replace(")", "")
if i == Password:
end = time.time()
timetaken = end - start
print("nPassword found in ", timetaken, " seconds and ", counter, "attempts.")
print("That is ", counter / timetaken, " attempts per second.")
print("nThe password is "%s"." % i)
input("nPress enter when you have finished.")
exit()
Thanks.
python
$endgroup$
I'm working on a password brute-forcer that takes in a password from the user and brute-forces solutions until it finds a match. I was wondering if there is any way to improve performance or readability?
import itertools
import time
Alphabet = ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXiuYZ1234567890-_.")
Password = input("What is your password?n")
start = time.time()
counter = 1
CharLength = 1
for CharLength in range(25):
passwords = (itertools.product(Alphabet, repeat = CharLength))
print("n")
print("Currently working on passwords with ", CharLength, " characters.")
print("We are currently at ", (counter / (time.time() - start)), "attempts per second.")
print("It has been ", time.time() - start, " seconds.")
print("We have tried ", counter, " possible passwords.")
for i in passwords:
counter += 1
i = str(i)
i = i.replace("[", "")
i = i.replace("]", "")
i = i.replace("'", "")
i = i.replace(" ", "")
i = i.replace(",", "")
i = i.replace("(", "")
i = i.replace(")", "")
if i == Password:
end = time.time()
timetaken = end - start
print("nPassword found in ", timetaken, " seconds and ", counter, "attempts.")
print("That is ", counter / timetaken, " attempts per second.")
print("nThe password is "%s"." % i)
input("nPress enter when you have finished.")
exit()
Thanks.
python
python
edited Oct 14 '18 at 15:18
Gerrit0
3,1081624
3,1081624
asked Oct 14 '18 at 15:05
Michael O'ConnellMichael O'Connell
61
61
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04
add a comment |
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Some recommendations just looking at the style of the code:
- It would benefit from being run through
pycodestyle
,flake8
and/or similar tools to be more idiomatic. This would make the code easier to read for anyone familiar with Python. - Timing code should not be part of your program. External tools like
time
can handle that. - Use
argparse
rather thaninput
to make the program scriptable. The script should not stop anywhere to ask for input. - The
Alphabet
and25
in this code are good candidates for configuration or parameters. - You can remove all of a list of characters from a string in a single command.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "196"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f205544%2fpython-password-brute-forcer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Some recommendations just looking at the style of the code:
- It would benefit from being run through
pycodestyle
,flake8
and/or similar tools to be more idiomatic. This would make the code easier to read for anyone familiar with Python. - Timing code should not be part of your program. External tools like
time
can handle that. - Use
argparse
rather thaninput
to make the program scriptable. The script should not stop anywhere to ask for input. - The
Alphabet
and25
in this code are good candidates for configuration or parameters. - You can remove all of a list of characters from a string in a single command.
$endgroup$
add a comment |
$begingroup$
Some recommendations just looking at the style of the code:
- It would benefit from being run through
pycodestyle
,flake8
and/or similar tools to be more idiomatic. This would make the code easier to read for anyone familiar with Python. - Timing code should not be part of your program. External tools like
time
can handle that. - Use
argparse
rather thaninput
to make the program scriptable. The script should not stop anywhere to ask for input. - The
Alphabet
and25
in this code are good candidates for configuration or parameters. - You can remove all of a list of characters from a string in a single command.
$endgroup$
add a comment |
$begingroup$
Some recommendations just looking at the style of the code:
- It would benefit from being run through
pycodestyle
,flake8
and/or similar tools to be more idiomatic. This would make the code easier to read for anyone familiar with Python. - Timing code should not be part of your program. External tools like
time
can handle that. - Use
argparse
rather thaninput
to make the program scriptable. The script should not stop anywhere to ask for input. - The
Alphabet
and25
in this code are good candidates for configuration or parameters. - You can remove all of a list of characters from a string in a single command.
$endgroup$
Some recommendations just looking at the style of the code:
- It would benefit from being run through
pycodestyle
,flake8
and/or similar tools to be more idiomatic. This would make the code easier to read for anyone familiar with Python. - Timing code should not be part of your program. External tools like
time
can handle that. - Use
argparse
rather thaninput
to make the program scriptable. The script should not stop anywhere to ask for input. - The
Alphabet
and25
in this code are good candidates for configuration or parameters. - You can remove all of a list of characters from a string in a single command.
answered Oct 15 '18 at 3:09
l0b0l0b0
4,6291023
4,6291023
add a comment |
add a comment |
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f205544%2fpython-password-brute-forcer%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
What would this code be used for? It asks for the plain text password, not a hash, and just iterates over all possible strings of length 0 through 24 until it matches what it already knows.
$endgroup$
– l0b0
Oct 15 '18 at 3:02
$begingroup$
@l0b0 I'll later implement some sort of web form functionality.
$endgroup$
– Michael O'Connell
Oct 20 '18 at 19:04