├── .gitignore ├── LICENSE ├── README.md ├── qq_wifi ├── home │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── templates │ │ ├── error.html │ │ └── home.html │ ├── tests.py │ └── views.py ├── manage.py ├── qq_wifi │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── static │ ├── 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 │ ├── 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 │ ├── test │ └── tittle.png └── templates │ └── home.html ├── relocation.py ├── setup.sh └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/README.md -------------------------------------------------------------------------------- /qq_wifi/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq_wifi/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/admin.py -------------------------------------------------------------------------------- /qq_wifi/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/models.py -------------------------------------------------------------------------------- /qq_wifi/home/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/templates/error.html -------------------------------------------------------------------------------- /qq_wifi/home/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/templates/home.html -------------------------------------------------------------------------------- /qq_wifi/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/tests.py -------------------------------------------------------------------------------- /qq_wifi/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/home/views.py -------------------------------------------------------------------------------- /qq_wifi/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/manage.py -------------------------------------------------------------------------------- /qq_wifi/qq_wifi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq_wifi/qq_wifi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/qq_wifi/settings.py -------------------------------------------------------------------------------- /qq_wifi/qq_wifi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/qq_wifi/urls.py -------------------------------------------------------------------------------- /qq_wifi/qq_wifi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/qq_wifi/wsgi.py -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /qq_wifi/static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap.css -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /qq_wifi/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /qq_wifi/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /qq_wifi/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /qq_wifi/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /qq_wifi/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /qq_wifi/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /qq_wifi/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/js/bootstrap.js -------------------------------------------------------------------------------- /qq_wifi/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /qq_wifi/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/js/npm.js -------------------------------------------------------------------------------- /qq_wifi/static/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qq_wifi/static/tittle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/qq_wifi/static/tittle.png -------------------------------------------------------------------------------- /qq_wifi/templates/home.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /relocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/relocation.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/setup.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcz717/phishingPi/HEAD/start.sh --------------------------------------------------------------------------------