MaskURL is an open-source URL masking tool designed to help you hide phishing URLs and make them look legitimate using social engineering techniques.
⚠️ IMPORTANT: This tool is a Proof of Concept and is for Educational Purposes Only.
Your phishing link: https://example.com/whatever
Custom URL: gmail.com
Phishing keyword: anything-u-want
Output: https://gmail.com-anything-u-want@tinyurl.com/yourlink- URL Masking with custom domains.
- Multiple URL Shorteners supported (TinyURL, osdb, dagd, clckru).
- Input Validation to prevent errors.
- User-Friendly Interface for easy usage.
- Open Source and community-driven.
git clone https://github.com/hackwithakki/MaskURL.git
cd MaskURL
pip install -r requirements.txt
python3 MaskURL.pypip install MaskURLMaskURL <your-phishing-link> <any-custom-domain> <any-phishing-keyword>Example:
MaskURL https://ngrok.com gmail.com account-loginimport subprocess
command = ["python3", "-m", "MaskURL.main", "https://ngrok.com", "facebook.com", "login"]
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
print("Output:", stdout.decode())
print("Error:", stderr.decode())
if process.returncode == 0:
print("MaskURL generated successfully.")
else:
print("MaskURL encountered an error.")Contributions are welcome! Open an issue or submit a pull request.
⭐️ If you found this project useful, please consider giving it a star!

