added tor browser

This commit is contained in:
Yan 2016-07-02 03:34:54 -07:00
parent d9bcd83c53
commit 984252323a
2 changed files with 10 additions and 0 deletions

View file

@ -82,6 +82,7 @@ There are also some installers for non-CTF stuff to break the monotony!
| Category | Tool | Description |
|----------|------|-------------|
| game | [Dwarf Fortress](http://www.bay12games.com/dwarves/) | Something to help you relax after a CTF! | <!--tool-->
| tor-browser | [tor-browser](https://www.torproject.org/projects/torbrowser.html.en) | Useful when you need to hit a web challenge from different IPs. | <!--tool--><!--test-->
## Usage

9
tor-browser/install Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash -e
REL_PATH=$(curl https://www.torproject.org/projects/torbrowser.html.en#downloads | grep -i tor-browser-linux | grep hardened | grep td | sed -e 's/.*href="//' -e 's/">.*//')
wget https://www.torproject.org/projects/$REL_PATH -O - | tar xvJ
mkdir -p bin
cd bin
ln -s ../tor-browser/start-tor-browser.desktop tor-browser
cd ..