├── .gitignore ├── LICENSE ├── Phlexish.py ├── README.md ├── SERVER ├── index.html ├── ip.php ├── login.php ├── mobile.html ├── verify.html └── verifycode.php ├── Settings.ini ├── WebPages ├── facebook │ ├── index.html │ ├── login.php │ ├── mobile.html │ ├── verify.html │ └── verifycode.php └── ip.php ├── base └── Configurations.py ├── data └── index.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/LICENSE -------------------------------------------------------------------------------- /Phlexish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/Phlexish.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/README.md -------------------------------------------------------------------------------- /SERVER/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/index.html -------------------------------------------------------------------------------- /SERVER/ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/ip.php -------------------------------------------------------------------------------- /SERVER/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/login.php -------------------------------------------------------------------------------- /SERVER/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/mobile.html -------------------------------------------------------------------------------- /SERVER/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/verify.html -------------------------------------------------------------------------------- /SERVER/verifycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/SERVER/verifycode.php -------------------------------------------------------------------------------- /Settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | language = en 3 | didbackground = True -------------------------------------------------------------------------------- /WebPages/facebook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/facebook/index.html -------------------------------------------------------------------------------- /WebPages/facebook/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/facebook/login.php -------------------------------------------------------------------------------- /WebPages/facebook/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/facebook/mobile.html -------------------------------------------------------------------------------- /WebPages/facebook/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/facebook/verify.html -------------------------------------------------------------------------------- /WebPages/facebook/verifycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/facebook/verifycode.php -------------------------------------------------------------------------------- /WebPages/ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/WebPages/ip.php -------------------------------------------------------------------------------- /base/Configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/base/Configurations.py -------------------------------------------------------------------------------- /data/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnightSec-Official/Phlexish/HEAD/data/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wget==3.2 2 | --------------------------------------------------------------------------------