mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 05:52:33 +00:00
Added tool: Webgrep (#186)
This commit is contained in:
parent
834167bad1
commit
482324f74c
6 changed files with 22 additions and 0 deletions
|
@ -97,6 +97,7 @@ Installers for the following tools are included:
|
|||
| web | Directory | [mitmproxy](https://mitmproxy.org/) | CLI Web proxy and python library. | <!--tool--><!--no-test-->
|
||||
| web | Directory | [sqlmap](http://sqlmap.org/) | SQL injection automation engine. | <!--tool--><!--test-->
|
||||
| web | Directory | [subbrute](https://github.com/TheRook/subbrute) | A DNS meta-query spider that enumerates DNS records, and subdomains. | <!--tool--><!--test-->
|
||||
| web | Library | [webgrep](https://github.com/dhondta/webgrep) | `grep` for Web pages, with JS deobfuscation, CSS unminifying and OCR on images. | <!--tool--><!--test-->
|
||||
| stego | apt | [pngtools](https://launchpad.net/ubuntu/+source/pngtools) | PNG's analysis tool. | <!--deb-tool-->
|
||||
| stego | Directory | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. | <!--tool--><!--failing-->
|
||||
| stego | Directory | [steganabara](http://www.caesum.com/handbook/stego.htm) | Another image stenography solver. | <!--tool--><!--test-->
|
||||
|
|
4
webgrep/install
Executable file
4
webgrep/install
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
|
||||
ctf-tools-pip3 install --upgrade 'git+https://github.com/dhondta/webgrep.git'
|
4
webgrep/install-root-archlinux
Executable file
4
webgrep/install-root-archlinux
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
pacman -Syu --needed --noconfirm binutils grep imagemagick perl-image-exiftool steghide tesseract
|
4
webgrep/install-root-debian
Executable file
4
webgrep/install-root-debian
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
apt-get -y install binutils grep imagemagick libimage-exiftool-perl steghide tesseract-ocr
|
5
webgrep/install-root-fedora
Executable file
5
webgrep/install-root-fedora
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
dnf install perl-Image-ExifTool.noarch
|
||||
dnf install -y binutils grep imagemagick steghide tesseract
|
4
webgrep/install-root-ubuntu
Executable file
4
webgrep/install-root-ubuntu
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
apt-get -y install binutils grep imagemagick exiftool steghide tesseract-ocr
|
Loading…
Reference in a new issue