├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .vs ├── 1 ├── Neos_Spoofer.zip ├── TigerShark │ └── config │ │ └── applicationhost.config ├── androp.txt ├── ban.py ├── pupy.conf.default └── tigershark-Release.PNG ├── LICENSE ├── Modules ├── Baiting │ ├── fakemailer.sh │ ├── neos.sh │ ├── phemail.sh │ └── phishmail.sh ├── CnC │ ├── dnspers.sh │ ├── js_db.sh │ ├── merlin.sh │ ├── mouse.sh │ ├── pupy.sh │ └── thunder.sh ├── Droppers │ ├── CVE │ │ ├── 2018-15982.sh │ │ ├── 2018-8174.sh │ │ └── 2019-0768.sh │ ├── Meter │ │ ├── dkmc.sh │ │ ├── enigma.sh │ │ ├── phantom.sh │ │ └── spooky.sh │ ├── Obs │ │ ├── graffiti.sh │ │ └── sgn.sh │ ├── droid │ │ ├── apkinf.sh │ │ ├── apkwash.sh │ │ ├── getdroid.sh │ │ ├── ghost.sh │ │ └── wbruter.sh │ └── macros.cmd ├── Gathering │ ├── Cloning │ │ └── nero.sh │ ├── Domain │ │ ├── catphish.sh │ │ └── domainhunter.sh │ ├── Email │ │ ├── credover.sh │ │ ├── egen.sh │ │ ├── phemail.sh │ │ └── phishbait.sh │ └── Generation │ │ ├── cuteit.sh │ │ ├── evilurl.sh │ │ ├── maskphish.sh │ │ └── urlcadiz.sh ├── Phishing │ ├── Singular │ │ ├── artemis.sh │ │ ├── blackeye.sh │ │ ├── credsniper.sh │ │ ├── hiddeneye.sh │ │ ├── lockphish.sh │ │ ├── phishx.sh │ │ ├── shark.sh │ │ ├── weeman.sh │ │ └── whatphish.sh │ └── Trawler │ │ ├── advphish.sh │ │ ├── gophish.sh │ │ ├── gosmish.py │ │ ├── socialfish.sh │ │ ├── spf.sh │ │ └── stp.sh └── tool-update.sh ├── README.md ├── docs ├── 3.png ├── README.md └── _config.yml ├── install.sh └── tigershark /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.sqlite 3 | *.json 4 | .vs/TigerShark/v16/.suo 5 | -------------------------------------------------------------------------------- /.vs/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/1 -------------------------------------------------------------------------------- /.vs/Neos_Spoofer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/Neos_Spoofer.zip -------------------------------------------------------------------------------- /.vs/TigerShark/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/TigerShark/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/androp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/androp.txt -------------------------------------------------------------------------------- /.vs/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/ban.py -------------------------------------------------------------------------------- /.vs/pupy.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/pupy.conf.default -------------------------------------------------------------------------------- /.vs/tigershark-Release.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/.vs/tigershark-Release.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/Baiting/fakemailer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Baiting/fakemailer.sh -------------------------------------------------------------------------------- /Modules/Baiting/neos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Baiting/neos.sh -------------------------------------------------------------------------------- /Modules/Baiting/phemail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Baiting/phemail.sh -------------------------------------------------------------------------------- /Modules/Baiting/phishmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Baiting/phishmail.sh -------------------------------------------------------------------------------- /Modules/CnC/dnspers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/dnspers.sh -------------------------------------------------------------------------------- /Modules/CnC/js_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/js_db.sh -------------------------------------------------------------------------------- /Modules/CnC/merlin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/merlin.sh -------------------------------------------------------------------------------- /Modules/CnC/mouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/mouse.sh -------------------------------------------------------------------------------- /Modules/CnC/pupy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/pupy.sh -------------------------------------------------------------------------------- /Modules/CnC/thunder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/CnC/thunder.sh -------------------------------------------------------------------------------- /Modules/Droppers/CVE/2018-15982.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/CVE/2018-15982.sh -------------------------------------------------------------------------------- /Modules/Droppers/CVE/2018-8174.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/CVE/2018-8174.sh -------------------------------------------------------------------------------- /Modules/Droppers/CVE/2019-0768.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/CVE/2019-0768.sh -------------------------------------------------------------------------------- /Modules/Droppers/Meter/dkmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Meter/dkmc.sh -------------------------------------------------------------------------------- /Modules/Droppers/Meter/enigma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Meter/enigma.sh -------------------------------------------------------------------------------- /Modules/Droppers/Meter/phantom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Meter/phantom.sh -------------------------------------------------------------------------------- /Modules/Droppers/Meter/spooky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Meter/spooky.sh -------------------------------------------------------------------------------- /Modules/Droppers/Obs/graffiti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Obs/graffiti.sh -------------------------------------------------------------------------------- /Modules/Droppers/Obs/sgn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/Obs/sgn.sh -------------------------------------------------------------------------------- /Modules/Droppers/droid/apkinf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/droid/apkinf.sh -------------------------------------------------------------------------------- /Modules/Droppers/droid/apkwash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/droid/apkwash.sh -------------------------------------------------------------------------------- /Modules/Droppers/droid/getdroid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/droid/getdroid.sh -------------------------------------------------------------------------------- /Modules/Droppers/droid/ghost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/droid/ghost.sh -------------------------------------------------------------------------------- /Modules/Droppers/droid/wbruter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/droid/wbruter.sh -------------------------------------------------------------------------------- /Modules/Droppers/macros.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Droppers/macros.cmd -------------------------------------------------------------------------------- /Modules/Gathering/Cloning/nero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Cloning/nero.sh -------------------------------------------------------------------------------- /Modules/Gathering/Domain/catphish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Domain/catphish.sh -------------------------------------------------------------------------------- /Modules/Gathering/Domain/domainhunter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Domain/domainhunter.sh -------------------------------------------------------------------------------- /Modules/Gathering/Email/credover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Email/credover.sh -------------------------------------------------------------------------------- /Modules/Gathering/Email/egen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Email/egen.sh -------------------------------------------------------------------------------- /Modules/Gathering/Email/phemail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Email/phemail.sh -------------------------------------------------------------------------------- /Modules/Gathering/Email/phishbait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Email/phishbait.sh -------------------------------------------------------------------------------- /Modules/Gathering/Generation/cuteit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Generation/cuteit.sh -------------------------------------------------------------------------------- /Modules/Gathering/Generation/evilurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Generation/evilurl.sh -------------------------------------------------------------------------------- /Modules/Gathering/Generation/maskphish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Generation/maskphish.sh -------------------------------------------------------------------------------- /Modules/Gathering/Generation/urlcadiz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Gathering/Generation/urlcadiz.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/artemis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/artemis.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/blackeye.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/blackeye.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/credsniper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/credsniper.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/hiddeneye.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/hiddeneye.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/lockphish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/lockphish.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/phishx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/phishx.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/shark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/shark.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/weeman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/weeman.sh -------------------------------------------------------------------------------- /Modules/Phishing/Singular/whatphish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Singular/whatphish.sh -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/advphish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/advphish.sh -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/gophish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/gophish.sh -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/gosmish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/gosmish.py -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/socialfish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/socialfish.sh -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/spf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/spf.sh -------------------------------------------------------------------------------- /Modules/Phishing/Trawler/stp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/Phishing/Trawler/stp.sh -------------------------------------------------------------------------------- /Modules/tool-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/Modules/tool-update.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/README.md -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/install.sh -------------------------------------------------------------------------------- /tigershark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiterabb17/TigerShark/HEAD/tigershark --------------------------------------------------------------------------------