├── .gitignore ├── LICENSE ├── README.md ├── install ├── var │ └── www │ │ └── html │ │ ├── portal.wsgi │ │ └── templates │ │ ├── 1x1.png │ │ ├── PluginDetect.js │ │ └── plugin_detect.tpl └── vhost │ └── portal.conf ├── manage.py ├── panel ├── __init__.py ├── admin.py ├── emailfunctions.py ├── migrations │ └── __init__.py ├── models.py ├── static │ ├── 3rd-party │ │ ├── bootstrap-table │ │ │ ├── bootstrap-table.min.css │ │ │ ├── bootstrap-table.min.js │ │ │ └── extensions │ │ │ │ ├── cookie │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ ├── editable │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ ├── export │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ ├── filter-control │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ └── bootstrap-table-filter-control.min.js │ │ │ │ ├── filter │ │ │ │ ├── bootstrap-table-filter.js │ │ │ │ └── bootstrap-table-filter.min.js │ │ │ │ ├── flat-json │ │ │ │ ├── bootstrap-table-flat-json.js │ │ │ │ └── bootstrap-table-flat-json.min.js │ │ │ │ ├── key-events │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ ├── mobile │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ ├── multiple-sort │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ ├── natural-sorting │ │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ │ │ ├── reorder-columns │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ ├── reorder-rows │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ ├── resizable │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ └── toolbar │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── summernote │ │ │ ├── font-awesome.min.css │ │ │ ├── summernote-bs2.css │ │ │ ├── summernote-bs3.css │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ ├── css │ │ └── style.css │ ├── images │ │ ├── 1x1.png │ │ ├── favicon.ico │ │ ├── gridline.gif │ │ ├── icon-generic.gif │ │ ├── icon-image.gif │ │ ├── icon-media.gif │ │ ├── icon-zip.gif │ │ └── viper.png │ └── js │ │ ├── Chart.min.js │ │ ├── PluginDetect.js │ │ ├── bootstrap-filestyle.min.js │ │ └── jquery-2.1.3.min.js ├── statsfunctions.py ├── templates │ ├── base.html │ ├── campaign.html │ ├── error.html │ ├── index.html │ ├── recipient.html │ ├── success.html │ ├── template.html │ └── template_single.html ├── tests.py ├── urls.py └── views.py ├── spearphisher ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── testdata.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/README.md -------------------------------------------------------------------------------- /install/var/www/html/portal.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/install/var/www/html/portal.wsgi -------------------------------------------------------------------------------- /install/var/www/html/templates/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/install/var/www/html/templates/1x1.png -------------------------------------------------------------------------------- /install/var/www/html/templates/PluginDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/install/var/www/html/templates/PluginDetect.js -------------------------------------------------------------------------------- /install/var/www/html/templates/plugin_detect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/install/var/www/html/templates/plugin_detect.tpl -------------------------------------------------------------------------------- /install/vhost/portal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/install/vhost/portal.conf -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/manage.py -------------------------------------------------------------------------------- /panel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/admin.py -------------------------------------------------------------------------------- /panel/emailfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/emailfunctions.py -------------------------------------------------------------------------------- /panel/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /panel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/models.py -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/cookie/bootstrap-table-cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/cookie/bootstrap-table-cookie.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/editable/bootstrap-table-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/editable/bootstrap-table-editable.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/editable/bootstrap-table-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/editable/bootstrap-table-editable.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/export/bootstrap-table-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/export/bootstrap-table-export.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/export/bootstrap-table-export.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/export/bootstrap-table-export.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/filter/bootstrap-table-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/filter/bootstrap-table-filter.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/filter/bootstrap-table-filter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/filter/bootstrap-table-filter.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/flat-json/bootstrap-table-flat-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/flat-json/bootstrap-table-flat-json.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/flat-json/bootstrap-table-flat-json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/flat-json/bootstrap-table-flat-json.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/key-events/bootstrap-table-key-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/key-events/bootstrap-table-key-events.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/key-events/bootstrap-table-key-events.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/key-events/bootstrap-table-key-events.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/natural-sorting/bootstrap-table-natural-sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/natural-sorting/bootstrap-table-natural-sorting.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/natural-sorting/bootstrap-table-natural-sorting.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/natural-sorting/bootstrap-table-natural-sorting.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/resizable/bootstrap-table-resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/resizable/bootstrap-table-resizable.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /panel/static/3rd-party/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/bootstrap/js/npm.js -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /panel/static/3rd-party/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/font-awesome.min.css -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/summernote-bs2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/summernote-bs2.css -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/summernote-bs3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/summernote-bs3.css -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/summernote.css -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/summernote.js -------------------------------------------------------------------------------- /panel/static/3rd-party/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/3rd-party/summernote/summernote.min.js -------------------------------------------------------------------------------- /panel/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/css/style.css -------------------------------------------------------------------------------- /panel/static/images/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/1x1.png -------------------------------------------------------------------------------- /panel/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/favicon.ico -------------------------------------------------------------------------------- /panel/static/images/gridline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/gridline.gif -------------------------------------------------------------------------------- /panel/static/images/icon-generic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/icon-generic.gif -------------------------------------------------------------------------------- /panel/static/images/icon-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/icon-image.gif -------------------------------------------------------------------------------- /panel/static/images/icon-media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/icon-media.gif -------------------------------------------------------------------------------- /panel/static/images/icon-zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/icon-zip.gif -------------------------------------------------------------------------------- /panel/static/images/viper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/images/viper.png -------------------------------------------------------------------------------- /panel/static/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/js/Chart.min.js -------------------------------------------------------------------------------- /panel/static/js/PluginDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/js/PluginDetect.js -------------------------------------------------------------------------------- /panel/static/js/bootstrap-filestyle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/js/bootstrap-filestyle.min.js -------------------------------------------------------------------------------- /panel/static/js/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/static/js/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /panel/statsfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/statsfunctions.py -------------------------------------------------------------------------------- /panel/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/base.html -------------------------------------------------------------------------------- /panel/templates/campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/campaign.html -------------------------------------------------------------------------------- /panel/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/error.html -------------------------------------------------------------------------------- /panel/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/index.html -------------------------------------------------------------------------------- /panel/templates/recipient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/recipient.html -------------------------------------------------------------------------------- /panel/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/success.html -------------------------------------------------------------------------------- /panel/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/template.html -------------------------------------------------------------------------------- /panel/templates/template_single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/templates/template_single.html -------------------------------------------------------------------------------- /panel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/tests.py -------------------------------------------------------------------------------- /panel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/urls.py -------------------------------------------------------------------------------- /panel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/panel/views.py -------------------------------------------------------------------------------- /spearphisher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spearphisher/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/spearphisher/settings.py -------------------------------------------------------------------------------- /spearphisher/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/spearphisher/urls.py -------------------------------------------------------------------------------- /spearphisher/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/spearphisher/wsgi.py -------------------------------------------------------------------------------- /testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevthehermit/SpearPhisher/HEAD/testdata.py --------------------------------------------------------------------------------