added pyvmmonitor

This commit is contained in:
Yan 2016-07-06 00:23:01 -07:00
parent f5f70b2e30
commit 557717e13e
2 changed files with 12 additions and 0 deletions

View file

@ -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
View 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