-
Notifications
You must be signed in to change notification settings - Fork 248
Examples
./changeme.py 192.168.59.3
Targets can be specified in a number of ways. Below are examples of how targets can be fed into changeme.
- host/IP -
./changeme.py 192.168.59.3
- proto://host -
./changeme.py mongodb://192.168.59.3
- subnet -
./changeme.py 192.168.59.0/24
- host list (may contain any of the above) -
./changeme.py hosts.txt
- nmap xml -
./changeme.py subnet.xml
Normally when you specify a target, only the default port (as specified in the yaml file) is checked. For example, when scanning for Apache Tomcat, only port 8080 is checked. The --portoverride
flag can be used to scan alternative ports.
./changeme.py -v -n tomcat --portoverride 192.168.59.103:8180
changeme has the ability to forward it's http traffic through a proxy by specifying the --proxy
option.
./changeme.py --proxy http://192.168.59.3:8080 -v 192.168.59.3
By default changeme only scans the http protocol. You can override this by using the --protocol option which takes in a comma separated list.
./changeme.py -v --protocols ssh,ssh_key 192.168.1.47