Added tool: Webgrep (#186)

This commit is contained in:
Alex 2022-02-27 08:40:53 +01:00 committed by GitHub
parent 834167bad1
commit 482324f74c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 0 deletions

View file

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

@ -0,0 +1,4 @@
#!/bin/bash -ex
set -eu -o pipefail
apt-get -y install binutils grep imagemagick exiftool steghide tesseract-ocr