Last active
August 23, 2020 17:19
-
-
Save afahitech/df201847128debe3f66c46f822d2925b to your computer and use it in GitHub Desktop.
How to install Jaeles on Ubuntu 18.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # !/bin/sh | |
| mkdir golang_source | |
| cd golang_source | |
| #Now download and extract the latest version | |
| wget https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz | |
| sudo tar -zxvf go1.14.6.linux-amd64.tar.gz -C /usr/local | |
| #Setup GOROOT and PATH environment variables: | |
| echo 'export GOROOT=/usr/local/go' | sudo tee -a /etc/profile | |
| echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee -a /etc/profile | |
| source /etc/profile | |
| #You can test golang installation with : | |
| go version#How to Usage Jaeles | |
| cd ~/.jaeles/ | |
| jaeles scan -s 'jira' -s 'ruby' -u target.com | |
| jaeles scan -c 50 -s 'java' -x 'tomcat' -U list_of_urls.txt | |
| jaeles scan -c 50 -s '/tmp/custom-signature/.*' -U list_of_urls.txt | |
| cat urls.txt | grep 'interesting' | jaeles scan -c 50 -s 'fuzz/.*' -U list_of_urls.txt --proxy http://127.0.0.1:8080 | |
| jaeles server --verbose -s sqli | |
| go env | |
| #Now Install Jaeles. 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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment