Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k4u5h4l/phish-garage
A phishing site generator, which clones the target website UI in minutes!
https://github.com/k4u5h4l/phish-garage
linux phishing-script phishing-tool python3 selenium selenium-python
Last synced: 7 days ago
JSON representation
A phishing site generator, which clones the target website UI in minutes!
- Host: GitHub
- URL: https://github.com/k4u5h4l/phish-garage
- Owner: k4u5h4L
- Created: 2024-09-06T18:59:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T11:38:03.000Z (5 months ago)
- Last Synced: 2024-11-14T07:47:57.519Z (2 months ago)
- Topics: linux, phishing-script, phishing-tool, python3, selenium, selenium-python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phish-Garage
A tool which would help you create phishing sites instantly from online websites.
## Tools used
- `Selenium` with the Chrome browser, to parse the DOM tree.
- `Requests` to download web assets.
- `Rich` to format terminal input and output prompts.## How to install/run?
If you just want to use it, then go ahead to the releases tab in GitHub and download the executable for Linux (I have yet to compile it for Windows and Mac). The dependencies were bundled with `pyinstaller`. If you are using Windows or Mac, you can follow the below Development steps to get it running on your own OS.## Prerequisites (for development)
- I have used `python 3.12`, although I reckon it should work other python distributions, as long as the path to the virtual env dependencies are set right, in the `main.spec` file.
- All dependencies in the `requirements.txt` file installed in the virtual environment.
- Bundle it using `pyinstaller` for your OS.
```bash
pyinstaller -F --paths=/site-packages main.py
# in my case, pyinstaller -F --paths=venv/lib/python3.12/site-packages main.py
```You should then have the binary executable in the `dist/` folder. Simply run this.
# Note:
This project should be used only for educational purposes only. I am not liable for any consequences of you using this software for whatever it is you do.