├── .DS_Store ├── README.md ├── application.py ├── application.pyc ├── fish.txt ├── handlers ├── __init__.py ├── __init__.pyc ├── login.py └── login.pyc ├── logs ├── .DS_Store └── app.log ├── server.py ├── templates ├── .DS_Store └── index.html ├── url.py └── url.pyc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/application.py -------------------------------------------------------------------------------- /application.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/application.pyc -------------------------------------------------------------------------------- /fish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/fish.txt -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handlers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/handlers/__init__.pyc -------------------------------------------------------------------------------- /handlers/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/handlers/login.py -------------------------------------------------------------------------------- /handlers/login.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/handlers/login.pyc -------------------------------------------------------------------------------- /logs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/logs/.DS_Store -------------------------------------------------------------------------------- /logs/app.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/logs/app.log -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/server.py -------------------------------------------------------------------------------- /templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/templates/.DS_Store -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/templates/index.html -------------------------------------------------------------------------------- /url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/url.py -------------------------------------------------------------------------------- /url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1r06u3/phishing/HEAD/url.pyc --------------------------------------------------------------------------------