This tool lets you to deploy a server which will act like proxy between browser and some real domain. All requests from client will be passed to the real domain and all URLs in responses will be substituted on fake domain.
Technically speaking, it is phishing tool, but you can use it for a lot of good reasons:
- Remove unwanted content from sites
- Modify site design as you want
I am currently passive working on it, ant it is not production-ready! If you need some assistance, contact me in Telegram - @Asen_17.
I hope to find some developing partners for this project - let me know if you would be interested working together!
Consider this project as experimental!
It is currently on the stage of PoC, but still you can make it work with simple configuration:
- Install python library dependencies:
pip3 install -r requirements.txt
- Configure
app.py
inConfig
section (read comments there)- Set original domain and path you want to mimick
- Write HTML/JS code in
inject.html
you want to inject in original site`s code
- Setup your fake domain. By default local domain used -
faker.loc
, configure it in local DNS settings (filehosts
). - Run
app.py
-python3 app.py
- Go to browser and open https://faker.loc
- If you use
path
, use it also in fake domain! So, according to default settings ofapp.py
it should be - https://faker.loc/demone2/phone-and-tablet
- If you use
- fix enormously large div-block heights (noon, amazon, google) [something not loading correctly]
- more clever domain substitution [look for encoded domain name in HTML/JS]
- always substitute URL but with original path
- speedup HTTP requests
- make real domain configurable, not hardcoded [best way to do it - through named cookies]