#### Searchsploit
```
searchsploit afd windows -w -t #仅搜索标题
searchsploit afd windows -w -t | grep http | cut -f 2 -d "|"
searchsploit -m number #复制到当前目录
searchsploit -x --nmap full_tcp_nmap.xml
```
```bash
for e in $(searchsploit afd windows -w -t | grep http | cut -f 2 -d "|"); do exp_name=$(echo $e | cut -d "/" -f 5) && url=$(echo $e | sed 's/exploits/raw/') && wget -q --no-check-certificate $url -O $exp_name; done
```
```
searchsploit --color -t php 5 | grep -vi '/dos/\|\.php[^$]' | grep -i '5\.\(5\|x\)' | \ grep -vi '/windows/\|PHP-Nuke\|RapidKill Pro\|Gift Registry\|Artiphp CMS'
```