This commit is contained in:
Yan 2015-05-14 14:37:56 -07:00
parent fb7feb8058
commit c61c2fe7ad
2 changed files with 9 additions and 0 deletions

View file

@ -40,6 +40,7 @@ Installers for the following tools are included:
| crypto | [sslsplit](https://github.com/droe/sslsplit) | SSL/TLS MITM. |
| crypto | [python-paddingoracle](https://github.com/mwielgoszewski/python-paddingoracle) | Padding oracle attack automation. |
| crypto | [xortool](https://github.com/hellman/xortool) | XOR analysis tool. |
| web | [burp](http://portswigger.net/burp) | Web proxy to do naughty web stuff. |
| web | [dirs3arch](https://github.com/maurosoria/dirs3arch) | Web path scanner. |
| web | [sqlmap](http://sqlmap.org/) | SQL injection automation engine. |
| stego | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. |

8
burp/install Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash -e
wget http://portswigger.net/burp/burpsuite_free_v1.6.01.jar
chmod 755 burpsuite_free_v1.6.01.jar
mkdir -p bin
cd bin
ln -s ../burpsuite_free_v1.6.01.jar burp
cd ..