From 5084832217f4f7d3adf6e360efd2d42d14924d47 Mon Sep 17 00:00:00 2001 From: Will Pennell Date: Sun, 30 Mar 2014 14:44:25 -0400 Subject: [PATCH] filling in information gathering menu and tools still missing the last few items --- infogathering/index.md | 34 +- tools/CAT.md | 27 + tools/_template.md | 4 + tools/ace.md | 52 ++ tools/braa.md | 51 ++ tools/cisco-torch.pl.md | 45 ++ tools/copy-router-config.pl.md | 25 + tools/merge-router-config.pl.md | 25 + tools/onesixtyone.md | 26 + tools/smtp-user-enum.md | 46 ++ tools/snmpcheck.md | 35 + tools/sslcaudit.md | 55 ++ tools/ssldump.md | 19 + tools/sslh.md | 35 + tools/sslscan.md | 65 ++ tools/sslsniff.md | 40 ++ tools/sslstrip.md | 29 + tools/sslyze.md | 108 +++ tools/stunnel4.md | 32 + tools/swaks.md | 1090 +++++++++++++++++++++++++++++++ tools/tlssled.md | 26 + 21 files changed, 1857 insertions(+), 12 deletions(-) create mode 100644 tools/CAT.md create mode 100644 tools/ace.md create mode 100644 tools/braa.md create mode 100644 tools/cisco-torch.pl.md create mode 100644 tools/copy-router-config.pl.md create mode 100644 tools/merge-router-config.pl.md create mode 100644 tools/onesixtyone.md create mode 100644 tools/smtp-user-enum.md create mode 100644 tools/snmpcheck.md create mode 100644 tools/sslcaudit.md create mode 100644 tools/ssldump.md create mode 100644 tools/sslh.md create mode 100644 tools/sslscan.md create mode 100644 tools/sslsniff.md create mode 100644 tools/sslstrip.md create mode 100644 tools/sslyze.md create mode 100644 tools/stunnel4.md create mode 100644 tools/swaks.md create mode 100644 tools/tlssled.md diff --git a/infogathering/index.md b/infogathering/index.md index daca494..18c95e9 100644 --- a/infogathering/index.md +++ b/infogathering/index.md @@ -116,30 +116,40 @@ SMB Analysis SMTP Analysis ------------ - * [first]() - * [second]() - * [third]() + * [nmap](../tools/nmap.md) + * [smtp-user-enum](../tools/smtp-user-enum.md) + * [swaks](../tools/swaks.md) SNMP Analysis ------------ - * [first]() - * [second]() - * [third]() + * [braa](../tools/braa.md) + * [cisco-auditing-tool](../tools/CAT.md) + * [cisco-torch](../tools/cisco-torch.pl.md) + * [cisco-router-config](../tools/cisco-router-config.pl.md) + * [merge-router-config](../tools/merge-router-config.pl.md) + * [nmap](../tools/nmap.md) + * [onesixtyone](../tools/onesixtyone.md) + * [snmp-check](../tools/snmpcheck.md) SSL Analysis ------------ - * [first]() - * [second]() - * [third]() + * [sslcaudit](../tools/sslcaudit.md) + * [ssldump](../tools/ssldump.md) + * [sslh](../tools/sslh.md) + * [sslscan](../tools/sslscan.md) + * [sslsniff](../tools/sslsniff.md) + * [sslstrip](../tools/sslstrip.md) + * [sslyze](../tools/sslyze.md) + * [stunnel4](../tools/stunnel4.md) + * [TLSSLed](../tools/tlssled.md) + Telephony Analysis ------------ - * [first]() - * [second]() - * [third]() + * [ace](../tools/ace.md) Traffic Analysis ------------ diff --git a/tools/CAT.md b/tools/CAT.md new file mode 100644 index 0000000..69115a8 --- /dev/null +++ b/tools/CAT.md @@ -0,0 +1,27 @@ +# CAT (Cisco Auditing Tool) + +Notes +------- + +Help Text +------- +``` +Cisco Auditing Tool - g0ne [null0] +Usage: + -h hostname (for scanning single hosts) + -f hostfile (for scanning multiple hosts) + -p port # (default port is 23) + -w wordlist (wordlist for community name guessing) + -a passlist (wordlist for password guessing) + -i [ioshist] (Check for IOS History bug) + -l logfile (file to log to, default screen) + -q quiet mode (no screen output) + +``` + +Example Usage +------- + +Links +------- + diff --git a/tools/_template.md b/tools/_template.md index 00c118e..f268b51 100644 --- a/tools/_template.md +++ b/tools/_template.md @@ -5,9 +5,13 @@ Notes Help Text ------- +``` +Text output goes here +``` Example Usage ------- Links ------- + diff --git a/tools/ace.md b/tools/ace.md new file mode 100644 index 0000000..c0f926d --- /dev/null +++ b/tools/ace.md @@ -0,0 +1,52 @@ +# ace Automated Corporate (Data) Enumerator + +Notes +------- + +Help Text +------- +``` +ACE v1.10: Automated Corporate (Data) Enumerator +Usage: ace [-i interface] [ -m mac address ] [ -t tftp server ip address | -c cdp mode | -v voice vlan id | -r vlan interface | -d verbose mode ] + +-i (Mandatory) Interface for sniffing/sending packets +-m (Mandatory) MAC address of the victim IP phone +-t (Optional) tftp server ip address +-c (Optional) 0 CDP sniff mode, 1 CDP spoof mode +-v (Optional) Enter the voice vlan ID +-r (Optional) Removes the VLAN interface +-d (Optional) Verbose | debug mode + +Example Usages: +Usage requires MAC Address of IP Phone supplied with -m option +Usage: ace -t -m + +Mode to automatically discover TFTP Server IP via DHCP Option 150 (-m) +Example: ace -i eth0 -m 00:1E:F7:28:9C:8e + +Mode to specify IP Address of TFTP Server +Example: ace -i eth0 -t 192.168.10.150 -m 00:1E:F7:28:9C:8e + +Mode to specify the Voice VLAN ID +Example: ace -i eth0 -v 96 -m 00:1E:F7:28:9C:8E + +Verbose mode +Example: ace -i eth0 -v 96 -m 00:1E:F7:28:9C:8E -d + +Mode to remove vlan interface +Example: ace -r eth0.96 + +Mode to auto-discover voice vlan ID in the listening mode for CDP +Example: ace -i eth0 -c 0 -m 00:1E:F7:28:9C:8E + +Mode to auto-discover voice vlan ID in the spoofing mode for CDP +Example: ace -i eth0 -c 1 -m 00:1E:F7:28:9C:8E + +``` + +Example Usage +------- + +Links +------- + diff --git a/tools/braa.md b/tools/braa.md new file mode 100644 index 0000000..0ae1634 --- /dev/null +++ b/tools/braa.md @@ -0,0 +1,51 @@ +# Braa + +Notes +------- + +Help Text +------- +``` +braa 0.81 - Mateusz 'mteg' Golicz , 2003 - 2006 +usage: braa [options] [query1] [query2] ... + -h Show this help. + -2 Claim to be a SNMP2C agent. + -v Show short summary after doing all queries. + -x Hexdump octet-strings + -t Wait seconds for responses. + -d Wait microseconds after sending each packet. + -p Wait miliseconds between subsequent passes. + -f Load queries from file (one by line). + -a