mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 22:12:32 +00:00
commit
89ba0cb57b
2 changed files with 12 additions and 0 deletions
|
@ -83,6 +83,7 @@ There are also some installers for non-CTF stuff to break the monotony!
|
|||
|----------|------|-------------|
|
||||
| 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-->
|
||||
| pyvmmonitor | [pyvmmonitor](http://www.pyvmmonitor.com/) | PyVmMonitor is a profiler with a simple goal: being the best way to profile a Python program. | <!--tool--><!--test-->
|
||||
|
||||
## Usage
|
||||
|
||||
|
|
11
pyvmmonitor/install
Executable file
11
pyvmmonitor/install
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
wget https://bbc5a801c67991bd078f7f789065e318bdf9d509.googledrive.com/host/0BwwQN8QrgsRpOGpyc2syWkVYVkE/PyVmMonitor%201.0.1/pyvmmonitor_1.0.1_linux.x86_64.tar.gz -O - | tar xvz
|
||||
|
||||
mkdir -p bin
|
||||
cat <<END > bin/pyvmmonitor-ui
|
||||
#!/bin/bash -e
|
||||
cd $PWD/pyvmmonitor
|
||||
exec ./pyvmmonitor-ui "\$@"
|
||||
END
|
||||
chmod 755 bin/pyvmmonitor-ui
|
Loading…
Reference in a new issue