carlospolop 74f390e866 a
2025-06-10 16:42:46 +02:00

682 B

{{#include ../../banners/hacktricks-training.md}}

For a phishing assessment sometimes it might be useful to completely clone/dump a website.

Note that you can add also some payloads to the cloned website like a BeEF hook to "control" the tab of the user.

There are different tools you can use for this purpose:

wget

wget --mirror --page-requisites --convert-links --adjust-extension <URL>
cd <URL>
python3 -m http.server 8000

goclone

#https://github.com/imthaghost/goclone
goclone <url>

Social Engineering Toolit

#https://github.com/trustedsec/social-engineer-toolkit

{{#include ../../banners/hacktricks-training.md}}