├── CHANGES.txt ├── README.md ├── config.py ├── cscan.py ├── ips.txt ├── output └── nmap_1442987141.xml ├── plugin ├── carbonator │ └── carbonator.py ├── nessus.py ├── w3af.py └── zap.py ├── scripts ├── network │ ├── nessus.sh │ ├── nmap.sh │ └── openvas.sh └── web │ ├── burp.sh │ ├── nikto.sh │ ├── w3af.sh │ └── zap.sh └── websites.txt /CHANGES.txt: -------------------------------------------------------------------------------- 1 | * v1.0.0 (09/23/15): 2 | * First release cscan tool 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/config.py -------------------------------------------------------------------------------- /cscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/cscan.py -------------------------------------------------------------------------------- /ips.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1 2 | -------------------------------------------------------------------------------- /output/nmap_1442987141.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/output/nmap_1442987141.xml -------------------------------------------------------------------------------- /plugin/carbonator/carbonator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/plugin/carbonator/carbonator.py -------------------------------------------------------------------------------- /plugin/nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/plugin/nessus.py -------------------------------------------------------------------------------- /plugin/w3af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/plugin/w3af.py -------------------------------------------------------------------------------- /plugin/zap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/plugin/zap.py -------------------------------------------------------------------------------- /scripts/network/nessus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/network/nessus.sh -------------------------------------------------------------------------------- /scripts/network/nmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/network/nmap.sh -------------------------------------------------------------------------------- /scripts/network/openvas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/network/openvas.sh -------------------------------------------------------------------------------- /scripts/web/burp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/web/burp.sh -------------------------------------------------------------------------------- /scripts/web/nikto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/web/nikto.sh -------------------------------------------------------------------------------- /scripts/web/w3af.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/web/w3af.sh -------------------------------------------------------------------------------- /scripts/web/zap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/cscan/HEAD/scripts/web/zap.sh -------------------------------------------------------------------------------- /websites.txt: -------------------------------------------------------------------------------- 1 | http://localhost:80 2 | --------------------------------------------------------------------------------