diff --git a/README.md b/README.md index 532d2e4..08494ab 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ Installers for the following tools are included: | web | Directory | [mitmproxy](https://mitmproxy.org/) | CLI Web proxy and python library. | | web | Directory | [sqlmap](http://sqlmap.org/) | SQL injection automation engine. | | web | Directory | [subbrute](https://github.com/TheRook/subbrute) | A DNS meta-query spider that enumerates DNS records, and subdomains. | +| web | Library | [webgrep](https://github.com/dhondta/webgrep) | `grep` for Web pages, with JS deobfuscation, CSS unminifying and OCR on images. | | stego | apt | [pngtools](https://launchpad.net/ubuntu/+source/pngtools) | PNG's analysis tool. | | stego | Directory | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. | | stego | Directory | [steganabara](http://www.caesum.com/handbook/stego.htm) | Another image stenography solver. | diff --git a/webgrep/install b/webgrep/install new file mode 100755 index 0000000..2a52ffd --- /dev/null +++ b/webgrep/install @@ -0,0 +1,4 @@ +#!/bin/bash -ex + + +ctf-tools-pip3 install --upgrade 'git+https://github.com/dhondta/webgrep.git' diff --git a/webgrep/install-root-archlinux b/webgrep/install-root-archlinux new file mode 100755 index 0000000..c23bae0 --- /dev/null +++ b/webgrep/install-root-archlinux @@ -0,0 +1,4 @@ +#!/bin/bash -ex +set -eu -o pipefail + +pacman -Syu --needed --noconfirm binutils grep imagemagick perl-image-exiftool steghide tesseract diff --git a/webgrep/install-root-debian b/webgrep/install-root-debian new file mode 100755 index 0000000..e49c8c4 --- /dev/null +++ b/webgrep/install-root-debian @@ -0,0 +1,4 @@ +#!/bin/bash -ex +set -eu -o pipefail + +apt-get -y install binutils grep imagemagick libimage-exiftool-perl steghide tesseract-ocr diff --git a/webgrep/install-root-fedora b/webgrep/install-root-fedora new file mode 100755 index 0000000..940fce5 --- /dev/null +++ b/webgrep/install-root-fedora @@ -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 diff --git a/webgrep/install-root-ubuntu b/webgrep/install-root-ubuntu new file mode 100755 index 0000000..a8ab431 --- /dev/null +++ b/webgrep/install-root-ubuntu @@ -0,0 +1,4 @@ +#!/bin/bash -ex +set -eu -o pipefail + +apt-get -y install binutils grep imagemagick exiftool steghide tesseract-ocr