├── README.md ├── lh.py ├── lt.py ├── main.py ├── setup.sh ├── src ├── __pycache__ │ └── some_func.cpython-312.pyc ├── finish.py ├── lt.txt ├── setup.py ├── some_func.py └── template │ ├── facebook │ ├── facebook.py │ ├── file1.py │ ├── file2.py │ ├── info.txt │ └── template.php │ ├── github │ ├── file1.py │ ├── file2.py │ ├── github.py │ ├── info.txt │ └── template.php │ ├── instagram │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── instagram.py │ └── template.php │ ├── linkedin │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── linkedin.py │ └── template.php │ ├── netflix │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── netflix.py │ └── template.php │ ├── paypal │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── paypal.py │ └── template.php │ ├── pinterest │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── pinterest.py │ └── template.php │ ├── spotify │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── spotify.py │ └── template.php │ ├── twitch │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── template.php │ └── twitch.py │ └── twitter │ ├── file1.py │ ├── file2.py │ ├── info.txt │ ├── template.php │ └── twitter.py └── url.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/README.md -------------------------------------------------------------------------------- /lh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/lh.py -------------------------------------------------------------------------------- /lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/lt.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/main.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/setup.sh -------------------------------------------------------------------------------- /src/__pycache__/some_func.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/__pycache__/some_func.cpython-312.pyc -------------------------------------------------------------------------------- /src/finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/finish.py -------------------------------------------------------------------------------- /src/lt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/some_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/some_func.py -------------------------------------------------------------------------------- /src/template/facebook/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/facebook/facebook.py -------------------------------------------------------------------------------- /src/template/facebook/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/facebook/file1.py -------------------------------------------------------------------------------- /src/template/facebook/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/facebook/file2.py -------------------------------------------------------------------------------- /src/template/facebook/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/facebook/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/facebook/template.php -------------------------------------------------------------------------------- /src/template/github/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/github/file1.py -------------------------------------------------------------------------------- /src/template/github/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/github/file2.py -------------------------------------------------------------------------------- /src/template/github/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/github/github.py -------------------------------------------------------------------------------- /src/template/github/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/github/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/github/template.php -------------------------------------------------------------------------------- /src/template/instagram/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/instagram/file1.py -------------------------------------------------------------------------------- /src/template/instagram/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/instagram/file2.py -------------------------------------------------------------------------------- /src/template/instagram/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/instagram/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/instagram/instagram.py -------------------------------------------------------------------------------- /src/template/instagram/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/instagram/template.php -------------------------------------------------------------------------------- /src/template/linkedin/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/linkedin/file1.py -------------------------------------------------------------------------------- /src/template/linkedin/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/linkedin/file2.py -------------------------------------------------------------------------------- /src/template/linkedin/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/linkedin/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/linkedin/linkedin.py -------------------------------------------------------------------------------- /src/template/linkedin/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/linkedin/template.php -------------------------------------------------------------------------------- /src/template/netflix/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/netflix/file1.py -------------------------------------------------------------------------------- /src/template/netflix/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/netflix/file2.py -------------------------------------------------------------------------------- /src/template/netflix/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/netflix/netflix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/netflix/netflix.py -------------------------------------------------------------------------------- /src/template/netflix/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/netflix/template.php -------------------------------------------------------------------------------- /src/template/paypal/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/paypal/file1.py -------------------------------------------------------------------------------- /src/template/paypal/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/paypal/file2.py -------------------------------------------------------------------------------- /src/template/paypal/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/paypal/paypal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/paypal/paypal.py -------------------------------------------------------------------------------- /src/template/paypal/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/paypal/template.php -------------------------------------------------------------------------------- /src/template/pinterest/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/pinterest/file1.py -------------------------------------------------------------------------------- /src/template/pinterest/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/pinterest/file2.py -------------------------------------------------------------------------------- /src/template/pinterest/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/pinterest/pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/pinterest/pinterest.py -------------------------------------------------------------------------------- /src/template/pinterest/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/pinterest/template.php -------------------------------------------------------------------------------- /src/template/spotify/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/spotify/file1.py -------------------------------------------------------------------------------- /src/template/spotify/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/spotify/file2.py -------------------------------------------------------------------------------- /src/template/spotify/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/spotify/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/spotify/spotify.py -------------------------------------------------------------------------------- /src/template/spotify/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/spotify/template.php -------------------------------------------------------------------------------- /src/template/twitch/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitch/file1.py -------------------------------------------------------------------------------- /src/template/twitch/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitch/file2.py -------------------------------------------------------------------------------- /src/template/twitch/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/twitch/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitch/template.php -------------------------------------------------------------------------------- /src/template/twitch/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitch/twitch.py -------------------------------------------------------------------------------- /src/template/twitter/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitter/file1.py -------------------------------------------------------------------------------- /src/template/twitter/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitter/file2.py -------------------------------------------------------------------------------- /src/template/twitter/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template/twitter/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitter/template.php -------------------------------------------------------------------------------- /src/template/twitter/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdWei/exaPhisher/HEAD/src/template/twitter/twitter.py -------------------------------------------------------------------------------- /url.txt: -------------------------------------------------------------------------------- 1 | your url is: https://shiny-beds-prove-151-77-197-66.loca.lt 2 | --------------------------------------------------------------------------------