Commit | Line | Data |
---|---|---|
209feeb0 H |
1 | |
2 | #!/bin/bash | |
3 | echo "Generating Exploit List, please wait" | |
4 | rm -rf sploitlist.txt | |
5 | find . -xtype f >allfiles.txt | |
6 | for file in $(cat allfiles.txt);do | |
7 | echo $file $(head -1 $file|cut -d" " -f2-30)|grep -v CVS >>sploitlist.txt | |
8 | done | |
9 | rm allfiles.txt | |
10 | echo "Done!" | |
11 | echo 'You can "cat sploitlist.txt |grep -i exploit"' | |
12 |