mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
added youtube-dl for annoying recons
This commit is contained in:
parent
f2431a09b0
commit
a9e85987aa
2 changed files with 7 additions and 0 deletions
|
@ -100,6 +100,7 @@ Installers for the following tools are included:
|
||||||
| misc | [z3](https://github.com/Z3Prover/z3) | Theorem prover from Microsoft Research. | <!--tool--><!--times-out-->
|
| misc | [z3](https://github.com/Z3Prover/z3) | Theorem prover from Microsoft Research. | <!--tool--><!--times-out-->
|
||||||
| misc | [jdgui](http://jd.benow.ca/) | Java decompiler. | <!--tool--><!--test-->
|
| misc | [jdgui](http://jd.benow.ca/) | Java decompiler. | <!--tool--><!--test-->
|
||||||
| misc | [veles](https://codisec.com/veles/) | Binary data analysis and visulalization tool. | <!--tool--><!--test-->
|
| misc | [veles](https://codisec.com/veles/) | Binary data analysis and visulalization tool. | <!--tool--><!--test-->
|
||||||
|
| misc | [youtube-dl](https://yt-dl.org/) | Latest version of the popular youtube downloader. | <!--tool--><!--test-->
|
||||||
|
|
||||||
There are also a couple of installers for useful libraries included. Currently
|
There are also a couple of installers for useful libraries included. Currently
|
||||||
only the python bindings for these libraries are installed.
|
only the python bindings for these libraries are installed.
|
||||||
|
|
6
youtube-dl/install
Executable file
6
youtube-dl/install
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash -ex
|
||||||
|
|
||||||
|
wget https://yt-dl.org/latest/youtube-dl
|
||||||
|
chmod 755 youtube-dl
|
||||||
|
mkdir -p bin
|
||||||
|
mv youtube-dl bin
|
Loading…
Reference in a new issue