├── .gitignore ├── LICENSE.html ├── LICENSE.txt ├── README.md ├── TODO.txt ├── includes ├── __init__.py ├── auth_handler.py ├── bluScan.py ├── command_shell.py ├── common.py ├── fifoDict.py ├── firelamb_helper.py ├── fonts.py ├── geovismap_csv.sh ├── get_3g_balance.py ├── hostapd.conf ├── jsonify.py ├── mac_vendor.py ├── mac_vendor.txt ├── mitm.py ├── monitor_mode.py ├── prox.py ├── rogee.py ├── run_prog.py ├── run_prog.py.bak ├── run_prog.py.new ├── sakis.py ├── sakis3g ├── system_info.py ├── webserver.py └── wigle_api.py ├── install.sh ├── plugins ├── ComingSoon.txt ├── __c80211_pycap.py ├── __import_old_snoopy.py ├── __init__.py ├── blutooth.py ├── example.py ├── gpsd.py ├── heartbeat.py ├── local_sync.py ├── mitmproxy.py ├── mods80211 │ ├── __arp_geoloc.py │ ├── __init__.py │ ├── apple_guids.py │ ├── firelamb.py │ ├── prefilter │ │ ├── __init__.py │ │ └── prefilter.py │ ├── wifi_aps.py │ ├── wifi_clients.py │ └── wpa.py ├── rogueAP.py ├── run_log.py ├── server.py ├── sysinfo.py ├── wifi.py └── wigle.py ├── scripts └── install_rpi.sh ├── setup ├── README_BBONE.txt ├── apache │ ├── README.md │ ├── snoopy.conf.tpl │ └── snoopy.wsgi ├── cron │ └── rebooter ├── ntp.conf ├── rc.local ├── scapy-latest-snoopy_patch.tar.gz ├── sn.txt ├── sslstripSnoopy │ ├── COPYING │ ├── FOO │ ├── README │ ├── __init__.py │ ├── build │ │ ├── lib.linux-i686-2.7 │ │ │ └── sslstrip │ │ │ │ ├── ClientRequest.py │ │ │ │ ├── CookieCleaner.py │ │ │ │ ├── DnsCache.py │ │ │ │ ├── SSLServerConnection.py │ │ │ │ ├── ServerConnection.py │ │ │ │ ├── ServerConnectionFactory.py │ │ │ │ ├── StrippingProxy.py │ │ │ │ ├── URLMonitor.py │ │ │ │ └── __init__.py │ │ └── scripts-2.7 │ │ │ └── sslstrip │ ├── iptables.sh │ ├── jstripper.py │ ├── lock.ico │ ├── output.log.old │ ├── setup.py │ ├── sslstrip.py │ ├── sslstrip │ │ ├── ClientRequest.py │ │ ├── CookieCleaner.py │ │ ├── DnsCache.py │ │ ├── SSLServerConnection.py │ │ ├── SSLServerConnection.py~ │ │ ├── ServerConnection.py │ │ ├── ServerConnection.py~ │ │ ├── ServerConnectionFactory.py │ │ ├── StrippingProxy.py │ │ ├── URLMonitor.py │ │ └── __init__.py │ └── sslstrip1.py └── upstarts │ ├── README.txt │ ├── SETTINGS │ ├── ntp_update.conf │ ├── phone_home.conf │ ├── sakis.conf │ └── snoopy.conf ├── snoopy.py ├── transforms ├── Maltego.py ├── MaltegoTransform.py ├── MaltegoTransform.py.diff ├── README.txt ├── db_path.conf ├── fetchClients.py ├── fetchClientsWithData.py ├── fetchCookies.py ├── fetchCountries.py ├── fetchDefiniteAddresses.py ├── fetchDomains.py ├── fetchDrones.py ├── fetchIP.py ├── fetchLocations.py ├── fetchLogs.py ├── fetchManufacturers.py ├── fetchNearbySSIDs.py ├── fetchObservations.py ├── fetchSSIDLocations.py ├── fetchSSIDLocations_live.py ├── fetchSSIDs.py ├── fetchSSLStrip.py ├── fetchURL.py ├── fetchUserAgent.py ├── snoopy_entities.mtz ├── transformCommon.py └── wigle_api.py └── uat ├── monitor_mode.py ├── traffgen.py └── words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/LICENSE.html -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/TODO.txt -------------------------------------------------------------------------------- /includes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/auth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/auth_handler.py -------------------------------------------------------------------------------- /includes/bluScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/bluScan.py -------------------------------------------------------------------------------- /includes/command_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/command_shell.py -------------------------------------------------------------------------------- /includes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/common.py -------------------------------------------------------------------------------- /includes/fifoDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/fifoDict.py -------------------------------------------------------------------------------- /includes/firelamb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/firelamb_helper.py -------------------------------------------------------------------------------- /includes/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/fonts.py -------------------------------------------------------------------------------- /includes/geovismap_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/geovismap_csv.sh -------------------------------------------------------------------------------- /includes/get_3g_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/get_3g_balance.py -------------------------------------------------------------------------------- /includes/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/hostapd.conf -------------------------------------------------------------------------------- /includes/jsonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/jsonify.py -------------------------------------------------------------------------------- /includes/mac_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/mac_vendor.py -------------------------------------------------------------------------------- /includes/mac_vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/mac_vendor.txt -------------------------------------------------------------------------------- /includes/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/mitm.py -------------------------------------------------------------------------------- /includes/monitor_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/monitor_mode.py -------------------------------------------------------------------------------- /includes/prox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/prox.py -------------------------------------------------------------------------------- /includes/rogee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/rogee.py -------------------------------------------------------------------------------- /includes/run_prog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/run_prog.py -------------------------------------------------------------------------------- /includes/run_prog.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/run_prog.py.bak -------------------------------------------------------------------------------- /includes/run_prog.py.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/run_prog.py.new -------------------------------------------------------------------------------- /includes/sakis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/sakis.py -------------------------------------------------------------------------------- /includes/sakis3g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/sakis3g -------------------------------------------------------------------------------- /includes/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/system_info.py -------------------------------------------------------------------------------- /includes/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/webserver.py -------------------------------------------------------------------------------- /includes/wigle_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/includes/wigle_api.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/install.sh -------------------------------------------------------------------------------- /plugins/ComingSoon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/ComingSoon.txt -------------------------------------------------------------------------------- /plugins/__c80211_pycap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/__c80211_pycap.py -------------------------------------------------------------------------------- /plugins/__import_old_snoopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/__import_old_snoopy.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/blutooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/blutooth.py -------------------------------------------------------------------------------- /plugins/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/example.py -------------------------------------------------------------------------------- /plugins/gpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/gpsd.py -------------------------------------------------------------------------------- /plugins/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/heartbeat.py -------------------------------------------------------------------------------- /plugins/local_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/local_sync.py -------------------------------------------------------------------------------- /plugins/mitmproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mitmproxy.py -------------------------------------------------------------------------------- /plugins/mods80211/__arp_geoloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/__arp_geoloc.py -------------------------------------------------------------------------------- /plugins/mods80211/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mods80211/apple_guids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/apple_guids.py -------------------------------------------------------------------------------- /plugins/mods80211/firelamb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/firelamb.py -------------------------------------------------------------------------------- /plugins/mods80211/prefilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mods80211/prefilter/prefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/prefilter/prefilter.py -------------------------------------------------------------------------------- /plugins/mods80211/wifi_aps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/wifi_aps.py -------------------------------------------------------------------------------- /plugins/mods80211/wifi_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/wifi_clients.py -------------------------------------------------------------------------------- /plugins/mods80211/wpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/mods80211/wpa.py -------------------------------------------------------------------------------- /plugins/rogueAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/rogueAP.py -------------------------------------------------------------------------------- /plugins/run_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/run_log.py -------------------------------------------------------------------------------- /plugins/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/server.py -------------------------------------------------------------------------------- /plugins/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/sysinfo.py -------------------------------------------------------------------------------- /plugins/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/wifi.py -------------------------------------------------------------------------------- /plugins/wigle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/plugins/wigle.py -------------------------------------------------------------------------------- /scripts/install_rpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/scripts/install_rpi.sh -------------------------------------------------------------------------------- /setup/README_BBONE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/README_BBONE.txt -------------------------------------------------------------------------------- /setup/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/apache/README.md -------------------------------------------------------------------------------- /setup/apache/snoopy.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/apache/snoopy.conf.tpl -------------------------------------------------------------------------------- /setup/apache/snoopy.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/apache/snoopy.wsgi -------------------------------------------------------------------------------- /setup/cron/rebooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/cron/rebooter -------------------------------------------------------------------------------- /setup/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/ntp.conf -------------------------------------------------------------------------------- /setup/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/rc.local -------------------------------------------------------------------------------- /setup/scapy-latest-snoopy_patch.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/scapy-latest-snoopy_patch.tar.gz -------------------------------------------------------------------------------- /setup/sn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sn.txt -------------------------------------------------------------------------------- /setup/sslstripSnoopy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/COPYING -------------------------------------------------------------------------------- /setup/sslstripSnoopy/FOO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/FOO -------------------------------------------------------------------------------- /setup/sslstripSnoopy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/README -------------------------------------------------------------------------------- /setup/sslstripSnoopy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ClientRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ClientRequest.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/CookieCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/CookieCleaner.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/DnsCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/DnsCache.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/SSLServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/SSLServerConnection.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ServerConnection.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ServerConnectionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/ServerConnectionFactory.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/StrippingProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/StrippingProxy.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/URLMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/URLMonitor.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/lib.linux-i686-2.7/sslstrip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/sslstripSnoopy/build/scripts-2.7/sslstrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/build/scripts-2.7/sslstrip -------------------------------------------------------------------------------- /setup/sslstripSnoopy/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/iptables.sh -------------------------------------------------------------------------------- /setup/sslstripSnoopy/jstripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/jstripper.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/lock.ico -------------------------------------------------------------------------------- /setup/sslstripSnoopy/output.log.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/output.log.old -------------------------------------------------------------------------------- /setup/sslstripSnoopy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/setup.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/ClientRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/ClientRequest.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/CookieCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/CookieCleaner.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/DnsCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/DnsCache.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/SSLServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/SSLServerConnection.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/SSLServerConnection.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/SSLServerConnection.py~ -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/ServerConnection.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/ServerConnection.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/ServerConnection.py~ -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/ServerConnectionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/ServerConnectionFactory.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/StrippingProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/StrippingProxy.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/URLMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip/URLMonitor.py -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/sslstripSnoopy/sslstrip1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/sslstripSnoopy/sslstrip1.py -------------------------------------------------------------------------------- /setup/upstarts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/README.txt -------------------------------------------------------------------------------- /setup/upstarts/SETTINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/SETTINGS -------------------------------------------------------------------------------- /setup/upstarts/ntp_update.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/ntp_update.conf -------------------------------------------------------------------------------- /setup/upstarts/phone_home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/phone_home.conf -------------------------------------------------------------------------------- /setup/upstarts/sakis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/sakis.conf -------------------------------------------------------------------------------- /setup/upstarts/snoopy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/setup/upstarts/snoopy.conf -------------------------------------------------------------------------------- /snoopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/snoopy.py -------------------------------------------------------------------------------- /transforms/Maltego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/Maltego.py -------------------------------------------------------------------------------- /transforms/MaltegoTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/MaltegoTransform.py -------------------------------------------------------------------------------- /transforms/MaltegoTransform.py.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/MaltegoTransform.py.diff -------------------------------------------------------------------------------- /transforms/README.txt: -------------------------------------------------------------------------------- 1 | Three transforms: 2 | 3 | 1. Local 4 | 5 | 2. TDS 6 | 7 | 3. Custom Web 8 | -------------------------------------------------------------------------------- /transforms/db_path.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/db_path.conf -------------------------------------------------------------------------------- /transforms/fetchClients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchClients.py -------------------------------------------------------------------------------- /transforms/fetchClientsWithData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchClientsWithData.py -------------------------------------------------------------------------------- /transforms/fetchCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchCookies.py -------------------------------------------------------------------------------- /transforms/fetchCountries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchCountries.py -------------------------------------------------------------------------------- /transforms/fetchDefiniteAddresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchDefiniteAddresses.py -------------------------------------------------------------------------------- /transforms/fetchDomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchDomains.py -------------------------------------------------------------------------------- /transforms/fetchDrones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchDrones.py -------------------------------------------------------------------------------- /transforms/fetchIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchIP.py -------------------------------------------------------------------------------- /transforms/fetchLocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchLocations.py -------------------------------------------------------------------------------- /transforms/fetchLogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchLogs.py -------------------------------------------------------------------------------- /transforms/fetchManufacturers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchManufacturers.py -------------------------------------------------------------------------------- /transforms/fetchNearbySSIDs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchNearbySSIDs.py -------------------------------------------------------------------------------- /transforms/fetchObservations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchObservations.py -------------------------------------------------------------------------------- /transforms/fetchSSIDLocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchSSIDLocations.py -------------------------------------------------------------------------------- /transforms/fetchSSIDLocations_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchSSIDLocations_live.py -------------------------------------------------------------------------------- /transforms/fetchSSIDs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchSSIDs.py -------------------------------------------------------------------------------- /transforms/fetchSSLStrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchSSLStrip.py -------------------------------------------------------------------------------- /transforms/fetchURL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchURL.py -------------------------------------------------------------------------------- /transforms/fetchUserAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/fetchUserAgent.py -------------------------------------------------------------------------------- /transforms/snoopy_entities.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/snoopy_entities.mtz -------------------------------------------------------------------------------- /transforms/transformCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/transformCommon.py -------------------------------------------------------------------------------- /transforms/wigle_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/transforms/wigle_api.py -------------------------------------------------------------------------------- /uat/monitor_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/uat/monitor_mode.py -------------------------------------------------------------------------------- /uat/traffgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/uat/traffgen.py -------------------------------------------------------------------------------- /uat/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/snoopy-ng/HEAD/uat/words.txt --------------------------------------------------------------------------------