├── README.md ├── Scame ├── 1.jpg ├── chrome.html ├── fs.ico ├── index.html ├── index.ico └── th.jpeg ├── install ├── remove ├── sniffer ├── .coveragerc ├── .gitmodules ├── .travis.yml ├── LICENSE ├── build │ └── pip-delete-this-directory.txt ├── config │ ├── app_cache_poison_templates │ │ ├── default.append │ │ ├── default.manifest │ │ ├── facebook.append │ │ ├── facebook.manifest │ │ ├── script.append │ │ └── test.replace │ ├── captive │ │ └── portal.html │ ├── hta_driveby │ │ └── flash_setup.hta │ ├── mitmf.conf │ └── responder │ │ ├── AccessDenied.html │ │ ├── BindShell.exe │ │ ├── gen-self-signed-cert.sh │ │ ├── responder.crt │ │ └── responder.key ├── core │ ├── __init__.py │ ├── banners.py │ ├── beefapi.py │ ├── configwatcher.py │ ├── ferretng │ │ ├── ClientRequest.py │ │ ├── CookieCleaner.py │ │ ├── DnsCache.py │ │ ├── FerretProxy.py │ │ ├── SSLServerConnection.py │ │ ├── ServerConnection.py │ │ ├── ServerConnectionFactory.py │ │ ├── URLMonitor.py │ │ └── __init__.py │ ├── html │ │ └── htadriveby.html │ ├── javascript │ │ ├── msfkeylogger.js │ │ ├── plugindetect.js │ │ └── screenshot.js │ ├── logger.py │ ├── mitmfapi.py │ ├── msfrpc.py │ ├── netcreds.py │ ├── packetfilter.py │ ├── poisoners │ │ ├── ARP.py │ │ ├── DHCP.py │ │ ├── ICMP.py │ │ ├── LLMNR.py │ │ ├── MDNS.py │ │ ├── NBTNS.py │ │ └── __init__.py │ ├── proxyplugins.py │ ├── responder │ │ ├── __init__.py │ │ ├── fingerprint.py │ │ ├── odict.py │ │ ├── packets.py │ │ ├── settings.py │ │ └── utils.py │ ├── servers │ │ ├── Browser.py │ │ ├── DNS.py │ │ ├── FTP.py │ │ ├── HTTP.py │ │ ├── IMAP.py │ │ ├── KarmaSMB.py │ │ ├── Kerberos.py │ │ ├── LDAP.py │ │ ├── MSSQL.py │ │ ├── POP3.py │ │ ├── SMB.py │ │ ├── SMTP.py │ │ └── __init__.py │ ├── sslstrip │ │ ├── COPYING.sslstrip │ │ ├── ClientRequest.py │ │ ├── CookieCleaner.py │ │ ├── DnsCache.py │ │ ├── README.md │ │ ├── SSLServerConnection.py │ │ ├── ServerConnection.py │ │ ├── ServerConnectionFactory.py │ │ ├── StrippingProxy.py │ │ ├── URLMonitor.py │ │ └── __init__.py │ └── utils.py ├── libs │ ├── __init__.py │ ├── __init__.pyc │ ├── bdfactory │ ├── beefapi.py │ ├── beefapi.pyc │ ├── msfrpc.py │ ├── msfrpc.pyc │ ├── publicsuffix.py │ ├── publicsuffix.pyc │ ├── publicsuffix.txt │ ├── responder │ │ ├── CHANGELOG │ │ ├── DHCP.py │ │ ├── DHCP.pyc │ │ ├── FindSMB2UPTime.py │ │ ├── FindSMB2UPTime.pyc │ │ ├── FindSQLSrv.py │ │ ├── FindSQLSrv.pyc │ │ ├── Fingerprint.py │ │ ├── Fingerprint.pyc │ │ ├── FingerprintRelay.py │ │ ├── FingerprintRelay.pyc │ │ ├── HTTPPackets.py │ │ ├── HTTPPackets.pyc │ │ ├── HTTPProxy.py │ │ ├── HTTPProxy.pyc │ │ ├── IMAPPackets.py │ │ ├── IMAPPackets.pyc │ │ ├── Icmp-Redirect.py │ │ ├── Icmp-Redirect.pyc │ │ ├── LDAPPackets.py │ │ ├── LDAPPackets.pyc │ │ ├── RAPLANMANPackets.py │ │ ├── RAPLANMANPackets.pyc │ │ ├── README.md │ │ ├── RelayPackets.py │ │ ├── RelayPackets.pyc │ │ ├── Responder.py │ │ ├── Responder.pyc │ │ ├── SMBPackets.py │ │ ├── SMBPackets.pyc │ │ ├── SMBRelay.py │ │ ├── SMBRelay.pyc │ │ ├── SMTPPackets.py │ │ ├── SMTPPackets.pyc │ │ ├── SQLPackets.py │ │ ├── SQLPackets.pyc │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── odict.py │ │ └── odict.pyc │ ├── sergioproxy │ │ ├── ProxyPlugins.py │ │ ├── ProxyPlugins.pyc │ │ ├── README.md │ │ ├── __init__.py │ │ └── __init__.pyc │ └── sslstrip │ │ ├── ClientRequest.py │ │ ├── ClientRequest.pyc │ │ ├── CookieCleaner.py │ │ ├── CookieCleaner.pyc │ │ ├── DnsCache.py │ │ ├── DnsCache.pyc │ │ ├── README.md │ │ ├── SSLServerConnection.py │ │ ├── SSLServerConnection.pyc │ │ ├── ServerConnection.py │ │ ├── ServerConnection.pyc │ │ ├── ServerConnectionFactory.py │ │ ├── ServerConnectionFactory.pyc │ │ ├── StrippingProxy.py │ │ ├── StrippingProxy.pyc │ │ ├── URLMonitor.py │ │ ├── URLMonitor.pyc │ │ ├── __init__.py │ │ └── __init__.pyc ├── lock.ico ├── logs │ ├── .gitignore │ ├── dns │ │ └── .gitignore │ ├── ferret-ng │ │ └── .gitignore │ └── responder │ │ └── .gitignore ├── mitmf.py ├── mitmf.pyc ├── plugins │ ├── AppCachePoison.py │ ├── AppCachePoison.pyc │ ├── BeefAutorun.py │ ├── BeefAutorun.pyc │ ├── BrowserProfiler.py │ ├── BrowserProfiler.pyc │ ├── CacheKill.py │ ├── CacheKill.pyc │ ├── FilePwn.py │ ├── FilePwn.pyc │ ├── Inject.py │ ├── Inject.pyc │ ├── JavaPwn.py │ ├── JavaPwn.pyc │ ├── JsKeylogger.py │ ├── JsKeylogger.pyc │ ├── Replace.py │ ├── Replace.pyc │ ├── Responder.py │ ├── Responder.pyc │ ├── SMBAuth.py │ ├── SMBAuth.pyc │ ├── SSLstrip+.py │ ├── SSLstrip+.pyc │ ├── SessionHijacker.py │ ├── SessionHijacker.pyc │ ├── Spoof.py │ ├── Spoof.pyc │ ├── Upsidedownternet.py │ ├── Upsidedownternet.pyc │ ├── __init__.py │ ├── __init__.pyc │ ├── appcachepoison.py │ ├── browserprofiler.py │ ├── browsersniper.py │ ├── captive.py │ ├── ferretng.py │ ├── filepwn.py │ ├── htadriveby.py │ ├── imagerandomizer.py │ ├── inject.py │ ├── jskeylogger.py │ ├── plugin.py │ ├── plugin.pyc │ ├── replace.py │ ├── responder.py │ ├── screenshotter.py │ ├── smbauth.py │ ├── smbtrap.py │ ├── spoof.py │ ├── sslstrip+.py │ └── upsidedownternet.py ├── requirements.txt ├── tests │ └── basic_tests.py └── tools │ └── cve-details-parser.py └── tools ├── android └── adb ├── bluetooth ├── BFi13-dev-18 ├── Makefile ├── README ├── bluesnarfer ├── include │ └── bluesnarfer.h ├── l2ping ├── sdptool ├── spooftooph └── src │ └── bluesnarfer.c ├── exploitdb ├── Exploitdb.sh └── searchsploit ├── massmailer └── send.pl ├── msfrc ├── Listening.rc ├── Listening1.rc ├── Listening2.rc ├── Listening3.rc ├── Listening4.rc ├── firefox_xpi_bootstrapped_addon.rc └── windowsclean.rc ├── scripts ├── Listner ├── Listner1 ├── Listner2 ├── Listner3 ├── Listner4 ├── Payload ├── Sniffing ├── SniffingSSL ├── androidclean ├── firefox_xpi_bootstrapped_addon ├── inject ├── ms11_003_ie_css_import └── windowsclean └── seframework /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/README.md -------------------------------------------------------------------------------- /Scame/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/1.jpg -------------------------------------------------------------------------------- /Scame/chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/chrome.html -------------------------------------------------------------------------------- /Scame/fs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/fs.ico -------------------------------------------------------------------------------- /Scame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/index.html -------------------------------------------------------------------------------- /Scame/index.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/index.ico -------------------------------------------------------------------------------- /Scame/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/Scame/th.jpeg -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/install -------------------------------------------------------------------------------- /remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/remove -------------------------------------------------------------------------------- /sniffer/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/.coveragerc -------------------------------------------------------------------------------- /sniffer/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/.gitmodules -------------------------------------------------------------------------------- /sniffer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/.travis.yml -------------------------------------------------------------------------------- /sniffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/LICENSE -------------------------------------------------------------------------------- /sniffer/build/pip-delete-this-directory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/build/pip-delete-this-directory.txt -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/default.append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/app_cache_poison_templates/default.append -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/default.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/app_cache_poison_templates/default.manifest -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/facebook.append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/app_cache_poison_templates/facebook.append -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/facebook.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/app_cache_poison_templates/facebook.manifest -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/script.append: -------------------------------------------------------------------------------- 1 | 2 | ;alert('AppCache Poison was here. Google Analytics FTW'); -------------------------------------------------------------------------------- /sniffer/config/app_cache_poison_templates/test.replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/app_cache_poison_templates/test.replace -------------------------------------------------------------------------------- /sniffer/config/captive/portal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/captive/portal.html -------------------------------------------------------------------------------- /sniffer/config/hta_driveby/flash_setup.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/hta_driveby/flash_setup.hta -------------------------------------------------------------------------------- /sniffer/config/mitmf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/mitmf.conf -------------------------------------------------------------------------------- /sniffer/config/responder/AccessDenied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/responder/AccessDenied.html -------------------------------------------------------------------------------- /sniffer/config/responder/BindShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/responder/BindShell.exe -------------------------------------------------------------------------------- /sniffer/config/responder/gen-self-signed-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/responder/gen-self-signed-cert.sh -------------------------------------------------------------------------------- /sniffer/config/responder/responder.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/responder/responder.crt -------------------------------------------------------------------------------- /sniffer/config/responder/responder.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/config/responder/responder.key -------------------------------------------------------------------------------- /sniffer/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/banners.py -------------------------------------------------------------------------------- /sniffer/core/beefapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/beefapi.py -------------------------------------------------------------------------------- /sniffer/core/configwatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/configwatcher.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/ClientRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/ClientRequest.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/CookieCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/CookieCleaner.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/DnsCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/DnsCache.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/FerretProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/FerretProxy.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/SSLServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/SSLServerConnection.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/ServerConnection.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/ServerConnectionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/ServerConnectionFactory.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/URLMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/ferretng/URLMonitor.py -------------------------------------------------------------------------------- /sniffer/core/ferretng/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/html/htadriveby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/html/htadriveby.html -------------------------------------------------------------------------------- /sniffer/core/javascript/msfkeylogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/javascript/msfkeylogger.js -------------------------------------------------------------------------------- /sniffer/core/javascript/plugindetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/javascript/plugindetect.js -------------------------------------------------------------------------------- /sniffer/core/javascript/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/javascript/screenshot.js -------------------------------------------------------------------------------- /sniffer/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/logger.py -------------------------------------------------------------------------------- /sniffer/core/mitmfapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/mitmfapi.py -------------------------------------------------------------------------------- /sniffer/core/msfrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/msfrpc.py -------------------------------------------------------------------------------- /sniffer/core/netcreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/netcreds.py -------------------------------------------------------------------------------- /sniffer/core/packetfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/packetfilter.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/ARP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/ARP.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/DHCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/DHCP.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/ICMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/ICMP.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/LLMNR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/LLMNR.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/MDNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/MDNS.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/NBTNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/poisoners/NBTNS.py -------------------------------------------------------------------------------- /sniffer/core/poisoners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/proxyplugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/proxyplugins.py -------------------------------------------------------------------------------- /sniffer/core/responder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/responder/fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/responder/fingerprint.py -------------------------------------------------------------------------------- /sniffer/core/responder/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/responder/odict.py -------------------------------------------------------------------------------- /sniffer/core/responder/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/responder/packets.py -------------------------------------------------------------------------------- /sniffer/core/responder/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/responder/settings.py -------------------------------------------------------------------------------- /sniffer/core/responder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/responder/utils.py -------------------------------------------------------------------------------- /sniffer/core/servers/Browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/Browser.py -------------------------------------------------------------------------------- /sniffer/core/servers/DNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/DNS.py -------------------------------------------------------------------------------- /sniffer/core/servers/FTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/FTP.py -------------------------------------------------------------------------------- /sniffer/core/servers/HTTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/HTTP.py -------------------------------------------------------------------------------- /sniffer/core/servers/IMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/IMAP.py -------------------------------------------------------------------------------- /sniffer/core/servers/KarmaSMB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/KarmaSMB.py -------------------------------------------------------------------------------- /sniffer/core/servers/Kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/Kerberos.py -------------------------------------------------------------------------------- /sniffer/core/servers/LDAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/LDAP.py -------------------------------------------------------------------------------- /sniffer/core/servers/MSSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/MSSQL.py -------------------------------------------------------------------------------- /sniffer/core/servers/POP3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/POP3.py -------------------------------------------------------------------------------- /sniffer/core/servers/SMB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/SMB.py -------------------------------------------------------------------------------- /sniffer/core/servers/SMTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/servers/SMTP.py -------------------------------------------------------------------------------- /sniffer/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/sslstrip/COPYING.sslstrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/COPYING.sslstrip -------------------------------------------------------------------------------- /sniffer/core/sslstrip/ClientRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/ClientRequest.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/CookieCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/CookieCleaner.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/DnsCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/DnsCache.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/README.md -------------------------------------------------------------------------------- /sniffer/core/sslstrip/SSLServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/SSLServerConnection.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/ServerConnection.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/ServerConnectionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/ServerConnectionFactory.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/StrippingProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/StrippingProxy.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/URLMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/sslstrip/URLMonitor.py -------------------------------------------------------------------------------- /sniffer/core/sslstrip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/core/utils.py -------------------------------------------------------------------------------- /sniffer/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/libs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/__init__.pyc -------------------------------------------------------------------------------- /sniffer/libs/bdfactory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/bdfactory -------------------------------------------------------------------------------- /sniffer/libs/beefapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/beefapi.py -------------------------------------------------------------------------------- /sniffer/libs/beefapi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/beefapi.pyc -------------------------------------------------------------------------------- /sniffer/libs/msfrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/msfrpc.py -------------------------------------------------------------------------------- /sniffer/libs/msfrpc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/msfrpc.pyc -------------------------------------------------------------------------------- /sniffer/libs/publicsuffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/publicsuffix.py -------------------------------------------------------------------------------- /sniffer/libs/publicsuffix.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/publicsuffix.pyc -------------------------------------------------------------------------------- /sniffer/libs/publicsuffix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/publicsuffix.txt -------------------------------------------------------------------------------- /sniffer/libs/responder/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/CHANGELOG -------------------------------------------------------------------------------- /sniffer/libs/responder/DHCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/DHCP.py -------------------------------------------------------------------------------- /sniffer/libs/responder/DHCP.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/DHCP.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/FindSMB2UPTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FindSMB2UPTime.py -------------------------------------------------------------------------------- /sniffer/libs/responder/FindSMB2UPTime.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FindSMB2UPTime.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/FindSQLSrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FindSQLSrv.py -------------------------------------------------------------------------------- /sniffer/libs/responder/FindSQLSrv.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FindSQLSrv.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/Fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Fingerprint.py -------------------------------------------------------------------------------- /sniffer/libs/responder/Fingerprint.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Fingerprint.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/FingerprintRelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FingerprintRelay.py -------------------------------------------------------------------------------- /sniffer/libs/responder/FingerprintRelay.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/FingerprintRelay.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/HTTPPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/HTTPPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/HTTPPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/HTTPPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/HTTPProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/HTTPProxy.py -------------------------------------------------------------------------------- /sniffer/libs/responder/HTTPProxy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/HTTPProxy.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/IMAPPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/IMAPPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/IMAPPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/IMAPPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/Icmp-Redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Icmp-Redirect.py -------------------------------------------------------------------------------- /sniffer/libs/responder/Icmp-Redirect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Icmp-Redirect.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/LDAPPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/LDAPPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/LDAPPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/LDAPPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/RAPLANMANPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/RAPLANMANPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/RAPLANMANPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/RAPLANMANPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/README.md -------------------------------------------------------------------------------- /sniffer/libs/responder/RelayPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/RelayPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/RelayPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/RelayPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/Responder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Responder.py -------------------------------------------------------------------------------- /sniffer/libs/responder/Responder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/Responder.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/SMBPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMBPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/SMBPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMBPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/SMBRelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMBRelay.py -------------------------------------------------------------------------------- /sniffer/libs/responder/SMBRelay.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMBRelay.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/SMTPPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMTPPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/SMTPPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SMTPPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/SQLPackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SQLPackets.py -------------------------------------------------------------------------------- /sniffer/libs/responder/SQLPackets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/SQLPackets.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/libs/responder/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/__init__.pyc -------------------------------------------------------------------------------- /sniffer/libs/responder/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/odict.py -------------------------------------------------------------------------------- /sniffer/libs/responder/odict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/responder/odict.pyc -------------------------------------------------------------------------------- /sniffer/libs/sergioproxy/ProxyPlugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sergioproxy/ProxyPlugins.py -------------------------------------------------------------------------------- /sniffer/libs/sergioproxy/ProxyPlugins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sergioproxy/ProxyPlugins.pyc -------------------------------------------------------------------------------- /sniffer/libs/sergioproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sergioproxy/README.md -------------------------------------------------------------------------------- /sniffer/libs/sergioproxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/libs/sergioproxy/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sergioproxy/__init__.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ClientRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ClientRequest.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ClientRequest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ClientRequest.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/CookieCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/CookieCleaner.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/CookieCleaner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/CookieCleaner.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/DnsCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/DnsCache.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/DnsCache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/DnsCache.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/README.md -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/SSLServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/SSLServerConnection.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/SSLServerConnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/SSLServerConnection.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ServerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ServerConnection.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ServerConnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ServerConnection.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ServerConnectionFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ServerConnectionFactory.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/ServerConnectionFactory.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/ServerConnectionFactory.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/StrippingProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/StrippingProxy.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/StrippingProxy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/StrippingProxy.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/URLMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/URLMonitor.py -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/URLMonitor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/URLMonitor.pyc -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sniffer/libs/sslstrip/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/libs/sslstrip/__init__.pyc -------------------------------------------------------------------------------- /sniffer/lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/lock.ico -------------------------------------------------------------------------------- /sniffer/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !responder/ 4 | !dns/ 5 | !ferret-ng/ 6 | -------------------------------------------------------------------------------- /sniffer/logs/dns/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sniffer/logs/ferret-ng/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sniffer/logs/responder/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sniffer/mitmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/mitmf.py -------------------------------------------------------------------------------- /sniffer/mitmf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/mitmf.pyc -------------------------------------------------------------------------------- /sniffer/plugins/AppCachePoison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/AppCachePoison.py -------------------------------------------------------------------------------- /sniffer/plugins/AppCachePoison.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/AppCachePoison.pyc -------------------------------------------------------------------------------- /sniffer/plugins/BeefAutorun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/BeefAutorun.py -------------------------------------------------------------------------------- /sniffer/plugins/BeefAutorun.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/BeefAutorun.pyc -------------------------------------------------------------------------------- /sniffer/plugins/BrowserProfiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/BrowserProfiler.py -------------------------------------------------------------------------------- /sniffer/plugins/BrowserProfiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/BrowserProfiler.pyc -------------------------------------------------------------------------------- /sniffer/plugins/CacheKill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/CacheKill.py -------------------------------------------------------------------------------- /sniffer/plugins/CacheKill.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/CacheKill.pyc -------------------------------------------------------------------------------- /sniffer/plugins/FilePwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/FilePwn.py -------------------------------------------------------------------------------- /sniffer/plugins/FilePwn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/FilePwn.pyc -------------------------------------------------------------------------------- /sniffer/plugins/Inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Inject.py -------------------------------------------------------------------------------- /sniffer/plugins/Inject.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Inject.pyc -------------------------------------------------------------------------------- /sniffer/plugins/JavaPwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/JavaPwn.py -------------------------------------------------------------------------------- /sniffer/plugins/JavaPwn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/JavaPwn.pyc -------------------------------------------------------------------------------- /sniffer/plugins/JsKeylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/JsKeylogger.py -------------------------------------------------------------------------------- /sniffer/plugins/JsKeylogger.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/JsKeylogger.pyc -------------------------------------------------------------------------------- /sniffer/plugins/Replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Replace.py -------------------------------------------------------------------------------- /sniffer/plugins/Replace.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Replace.pyc -------------------------------------------------------------------------------- /sniffer/plugins/Responder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Responder.py -------------------------------------------------------------------------------- /sniffer/plugins/Responder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Responder.pyc -------------------------------------------------------------------------------- /sniffer/plugins/SMBAuth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SMBAuth.py -------------------------------------------------------------------------------- /sniffer/plugins/SMBAuth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SMBAuth.pyc -------------------------------------------------------------------------------- /sniffer/plugins/SSLstrip+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SSLstrip+.py -------------------------------------------------------------------------------- /sniffer/plugins/SSLstrip+.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SSLstrip+.pyc -------------------------------------------------------------------------------- /sniffer/plugins/SessionHijacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SessionHijacker.py -------------------------------------------------------------------------------- /sniffer/plugins/SessionHijacker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/SessionHijacker.pyc -------------------------------------------------------------------------------- /sniffer/plugins/Spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Spoof.py -------------------------------------------------------------------------------- /sniffer/plugins/Spoof.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Spoof.pyc -------------------------------------------------------------------------------- /sniffer/plugins/Upsidedownternet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Upsidedownternet.py -------------------------------------------------------------------------------- /sniffer/plugins/Upsidedownternet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/Upsidedownternet.pyc -------------------------------------------------------------------------------- /sniffer/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/__init__.py -------------------------------------------------------------------------------- /sniffer/plugins/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/__init__.pyc -------------------------------------------------------------------------------- /sniffer/plugins/appcachepoison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/appcachepoison.py -------------------------------------------------------------------------------- /sniffer/plugins/browserprofiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/browserprofiler.py -------------------------------------------------------------------------------- /sniffer/plugins/browsersniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/browsersniper.py -------------------------------------------------------------------------------- /sniffer/plugins/captive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/captive.py -------------------------------------------------------------------------------- /sniffer/plugins/ferretng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/ferretng.py -------------------------------------------------------------------------------- /sniffer/plugins/filepwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/filepwn.py -------------------------------------------------------------------------------- /sniffer/plugins/htadriveby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/htadriveby.py -------------------------------------------------------------------------------- /sniffer/plugins/imagerandomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/imagerandomizer.py -------------------------------------------------------------------------------- /sniffer/plugins/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/inject.py -------------------------------------------------------------------------------- /sniffer/plugins/jskeylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/jskeylogger.py -------------------------------------------------------------------------------- /sniffer/plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/plugin.py -------------------------------------------------------------------------------- /sniffer/plugins/plugin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/plugin.pyc -------------------------------------------------------------------------------- /sniffer/plugins/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/replace.py -------------------------------------------------------------------------------- /sniffer/plugins/responder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/responder.py -------------------------------------------------------------------------------- /sniffer/plugins/screenshotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/screenshotter.py -------------------------------------------------------------------------------- /sniffer/plugins/smbauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/smbauth.py -------------------------------------------------------------------------------- /sniffer/plugins/smbtrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/smbtrap.py -------------------------------------------------------------------------------- /sniffer/plugins/spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/spoof.py -------------------------------------------------------------------------------- /sniffer/plugins/sslstrip+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/sslstrip+.py -------------------------------------------------------------------------------- /sniffer/plugins/upsidedownternet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/plugins/upsidedownternet.py -------------------------------------------------------------------------------- /sniffer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/requirements.txt -------------------------------------------------------------------------------- /sniffer/tests/basic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/tests/basic_tests.py -------------------------------------------------------------------------------- /sniffer/tools/cve-details-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/sniffer/tools/cve-details-parser.py -------------------------------------------------------------------------------- /tools/android/adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/android/adb -------------------------------------------------------------------------------- /tools/bluetooth/BFi13-dev-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/BFi13-dev-18 -------------------------------------------------------------------------------- /tools/bluetooth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/Makefile -------------------------------------------------------------------------------- /tools/bluetooth/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/README -------------------------------------------------------------------------------- /tools/bluetooth/bluesnarfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/bluesnarfer -------------------------------------------------------------------------------- /tools/bluetooth/include/bluesnarfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/include/bluesnarfer.h -------------------------------------------------------------------------------- /tools/bluetooth/l2ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/l2ping -------------------------------------------------------------------------------- /tools/bluetooth/sdptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/sdptool -------------------------------------------------------------------------------- /tools/bluetooth/spooftooph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/spooftooph -------------------------------------------------------------------------------- /tools/bluetooth/src/bluesnarfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/bluetooth/src/bluesnarfer.c -------------------------------------------------------------------------------- /tools/exploitdb/Exploitdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/exploitdb/Exploitdb.sh -------------------------------------------------------------------------------- /tools/exploitdb/searchsploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/exploitdb/searchsploit -------------------------------------------------------------------------------- /tools/massmailer/send.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/massmailer/send.pl -------------------------------------------------------------------------------- /tools/msfrc/Listening.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/Listening.rc -------------------------------------------------------------------------------- /tools/msfrc/Listening1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/Listening1.rc -------------------------------------------------------------------------------- /tools/msfrc/Listening2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/Listening2.rc -------------------------------------------------------------------------------- /tools/msfrc/Listening3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/Listening3.rc -------------------------------------------------------------------------------- /tools/msfrc/Listening4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/Listening4.rc -------------------------------------------------------------------------------- /tools/msfrc/firefox_xpi_bootstrapped_addon.rc: -------------------------------------------------------------------------------- 1 | use exploit/multi/browser/firefox_xpi_bootstrapped_addon 2 | -------------------------------------------------------------------------------- /tools/msfrc/windowsclean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/msfrc/windowsclean.rc -------------------------------------------------------------------------------- /tools/scripts/Listner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Listner -------------------------------------------------------------------------------- /tools/scripts/Listner1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Listner1 -------------------------------------------------------------------------------- /tools/scripts/Listner2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Listner2 -------------------------------------------------------------------------------- /tools/scripts/Listner3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Listner3 -------------------------------------------------------------------------------- /tools/scripts/Listner4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Listner4 -------------------------------------------------------------------------------- /tools/scripts/Payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Payload -------------------------------------------------------------------------------- /tools/scripts/Sniffing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/Sniffing -------------------------------------------------------------------------------- /tools/scripts/SniffingSSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/SniffingSSL -------------------------------------------------------------------------------- /tools/scripts/androidclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/androidclean -------------------------------------------------------------------------------- /tools/scripts/firefox_xpi_bootstrapped_addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/firefox_xpi_bootstrapped_addon -------------------------------------------------------------------------------- /tools/scripts/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/inject -------------------------------------------------------------------------------- /tools/scripts/ms11_003_ie_css_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/ms11_003_ie_css_import -------------------------------------------------------------------------------- /tools/scripts/windowsclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/scripts/windowsclean -------------------------------------------------------------------------------- /tools/seframework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnourallah/SEF/HEAD/tools/seframework --------------------------------------------------------------------------------