Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

MaskURL - URL Masking Tool

MaskURL

Downloads

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.


🔹 Run Online (Google Colab)

Open In Colab


⭕ Example Usage

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

🔹 Features

  • 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.

🔹 Installation

Git Installation

git clone https://github.com/hackwithakki/MaskURL.git
cd MaskURL
pip install -r requirements.txt
python3 MaskURL.py

PyPI Installation

pip install MaskURL

Run in CLI

MaskURL <your-phishing-link> <any-custom-domain> <any-phishing-keyword>

Example:

MaskURL https://ngrok.com gmail.com account-login

Run in Python

import 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.")

🛠 Contribution

Contributions are welcome! Open an issue or submit a pull request.


🔹 Snapshots

Screenshot


⭐️ If you found this project useful, please consider giving it a star!