I was attempting at simple wordlist password cracker to confirm users are not using simple passwords. I am still learning perl just in its beginnings at the moment because of my lack of time with school etc. Here is the part of the code where it encrypts and tests. Please let me know if you think its beyond my abilities at this early time to even attempt such a task, I just dont understand what is wrong. It is hard to trouble shoot which is really being encrypted since you cannot reverse the hash. Here is a snippet of what I have written.
print 'enter salt: ';
chomp($salt = <STDIN>);
print 'enter password hash file: ';
open(PASSC, <STDIN>) or die "cannot open password file: $!\n";
$passc = <PASSC>;
print 'enter wordlist: ';
open(PASSF, <STDIN>) or die "cannot open wordlist file: $!\n";
@list = <PASSF>;
for (@list) {
$pwdcrypt = crypt $_, $salt;
if ($pwdcrypt eq "$passc") {
thanks in advance
- blumongoos (blumongo@arbornet.org)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.