Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created May 4, 2020 15:00
Show Gist options
  • Save linuxbiekaisar/9c4700f83ef10e3091ce3a5a0570ecf7 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/9c4700f83ef10e3091ce3a5a0570ecf7 to your computer and use it in GitHub Desktop.
How to setup Jaeles Project using Ubuntu Web UI
# Youtube: https://www.youtube.com/watch?v=ScOJPq_Jc9Q
# !/bin/sh
# To install Jaeles Project using Ubuntu Web UI run the following commands:
# If you have a Go environment, make sure you have Go >= 1.13 with Go Modules enable and run the following command.
GO111MODULE=on go get github.com/jaeles-project/jaeles
# Initialize Signature and Web UI
jaeles config -a update --repo http://github.com/jaeles-project/jaeles-signatures
# Load new signature to Database
git clone --depth=1 https://github.com/jaeles-project/jaeles-signatures /tmp/jaeles-signatures/
# Reload them in the DB
jaeles config -a reload --signDir /tmp/custom-signatures/
jaeles scan -s new_sign.yaml -u example.com
# For scaning all signature for single url
jaeles scan -u http://example.com
# For scaning phpdebug.yaml signature for list of urls
jaeles scan -s signatures/common/phpdebug.yaml -U /tmp/list_of_urls.txt
# For scaning all signatures with “aem” prefix for list of urls
jaeles scan –retry 3 –verbose -s “signatures/cves/aem-*” -U /tmp/list_of_urls.txt
# Scan API server on http://127.0.0.1:5000
jaeles server
# Scan API server on http://127.0.0.1:5000 with default signature sqli
jaeles –verbose server -s sqli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment