mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
commit
f5f70b2e30
2 changed files with 10 additions and 0 deletions
|
@ -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
9
tor-browser/install
Executable 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 ..
|
Loading…
Reference in a new issue