<p align="center">
<a href="https://spyboy.in/twitter">
<img src="https://img.shields.io/badge/-TWITTER-black?logo=twitter&style=for-the-badge">
</a>
<a href="https://spyboy.in/">
<img src="https://img.shields.io/badge/-spyboy.in-black?logo=google&style=for-the-badge">
</a>
<a href="https://spyboy.blog/">
<img src="https://img.shields.io/badge/-spyboy.blog-black?logo=wordpress&style=for-the-badge">
</a>
<a href="https://spyboy.in/Discord">
<img src="https://img.shields.io/badge/-Discord-black?logo=discord&style=for-the-badge">
</a>
</p>
<br>
<img width="100%" align="centre" src="https://cdn.discordapp.com/attachments/1141162711464550430/1149804240680783902/faced1ng.png" />
<h4 align="center"> The Ultimate URL Masking Tool </h4>
Facad1ng is an open-source URL masking tool designed to help you Hide Phishing URLs and make them look legit using social engineering techniques.
### How To Install:
```
pip3 install Facad1ng
```
### How To Run On CLI:
```
Facad1ng <your-phishing-link> <any-custom-domain> <any-phishing-keyword>
```
```
Example: Facad1ng https://ngrok.com gmail.com accout-login
```
### Python code:
```py
import subprocess
# Define the command to run your Facad1ng script with arguments
command = ["python3", "-m", "Facad1ng.main", "https://ngrok.com", "facebook.com", "login"]
# Run the command
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# Wait for the process to complete and get the output
stdout, stderr = process.communicate()
# Print the output and error (if any)
print("Output:")
print(stdout.decode())
print("Error:")
print(stderr.decode())
# Check the return code to see if the process was successful
if process.returncode == 0:
print("Facad1ng completed successfully.")
else:
print("Facad1ng encountered an error.")
```
<h4 align="center"> This tool is a Proof of Concept and is for Educational Purposes Only. </h4>
---
### ⭔ Key Features:
- **URL Masking**: Facad1ng allows users to mask URLs with a custom domain and optional phishing keywords, making it difficult to identify the actual link.
- **Multiple URL Shorteners**: The tool supports multiple URL shorteners, providing flexibility in choosing the one that best suits your needs. Currently, it supports popular services like TinyURL, osdb, dagd, and clckru.
- **Input Validation**: Facad1ng includes robust input validation to ensure that URLs, custom domains, and phishing keywords meet the required criteria, preventing errors and enhancing security.
- **User-Friendly Interface**: Its simple and intuitive interface makes it accessible to both novice and experienced users, eliminating the need for complex command-line inputs.
- **Open Source**: Being an open-source project, Facad1ng is transparent and community-driven. Users can contribute to its development and suggest improvements.
---
<h4 align="center">
OS compatibility :
<br><br>
<img src="https://img.shields.io/badge/Windows-05122A?style=for-the-badge&logo=windows">
<img src="https://img.shields.io/badge/Linux-05122A?style=for-the-badge&logo=linux">
<img src="https://img.shields.io/badge/Android-05122A?style=for-the-badge&logo=android">
<img src="https://img.shields.io/badge/macOS-05122A?style=for-the-badge&logo=macos">
</h4>
<h4 align="center">
Requirements:
<br><br>
<img src="https://img.shields.io/badge/Python-05122A?style=for-the-badge&logo=python">
<img src="https://img.shields.io/badge/Git-05122A?style=for-the-badge&logo=git">
</h4>
### ⭔ Git Installation
---
```
git clone https://github.com/spyboy-productions/Facad1ng.git
```
```
cd Facad1ng
```
```
pip3 install -r requirements.txt
```
```
python3 facad1ng.py
```
---
#### 💬 If having issue [Chat here](https://discord.gg/ZChEmMwE8d)
[![Discord Server](https://discord.com/api/guilds/726495265330298973/embed.png)](https://discord.gg/ZChEmMwE8d)
### ⭔ Snapshots
---
<img width="100%" align="centre" src="https://cdn.discordapp.com/attachments/1141162711464550430/1149806863240663241/Screenshot_2023-09-09_at_1.59.55_AM.png" />
Raw data
{
"_id": null,
"home_page": "https://github.com/spyboy-productions/Facad1ng",
"name": "Facad1ng",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "masking,phishing,url-shortener,mask-phishing-url,hide-phishing-link,url-phishing",
"author": "Spyboy",
"author_email": "spyboyblog@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/43/43/96bc8ff8daa77b9bd09da764b3012422c77c7dff98ee7afc2e0261788b6d/Facad1ng-0.0.18.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <a href=\"https://spyboy.in/twitter\">\n <img src=\"https://img.shields.io/badge/-TWITTER-black?logo=twitter&style=for-the-badge\">\n </a>\n \n <a href=\"https://spyboy.in/\">\n <img src=\"https://img.shields.io/badge/-spyboy.in-black?logo=google&style=for-the-badge\">\n </a>\n \n <a href=\"https://spyboy.blog/\">\n <img src=\"https://img.shields.io/badge/-spyboy.blog-black?logo=wordpress&style=for-the-badge\">\n </a>\n \n <a href=\"https://spyboy.in/Discord\">\n <img src=\"https://img.shields.io/badge/-Discord-black?logo=discord&style=for-the-badge\">\n </a>\n \n</p>\n\n<br>\n\n<img width=\"100%\" align=\"centre\" src=\"https://cdn.discordapp.com/attachments/1141162711464550430/1149804240680783902/faced1ng.png\" />\n\n<h4 align=\"center\"> The Ultimate URL Masking Tool </h4>\n\nFacad1ng is an open-source URL masking tool designed to help you Hide Phishing URLs and make them look legit using social engineering techniques.\n\n### How To Install:\n```\npip3 install Facad1ng\n```\n\n### How To Run On CLI:\n```\nFacad1ng <your-phishing-link> <any-custom-domain> <any-phishing-keyword>\n```\n```\nExample: Facad1ng https://ngrok.com gmail.com accout-login\n```\n\n### Python code:\n```py\nimport subprocess\n\n# Define the command to run your Facad1ng script with arguments\ncommand = [\"python3\", \"-m\", \"Facad1ng.main\", \"https://ngrok.com\", \"facebook.com\", \"login\"]\n\n# Run the command\nprocess = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)\n\n# Wait for the process to complete and get the output\nstdout, stderr = process.communicate()\n\n# Print the output and error (if any)\nprint(\"Output:\")\nprint(stdout.decode())\nprint(\"Error:\")\nprint(stderr.decode())\n\n# Check the return code to see if the process was successful\nif process.returncode == 0:\n print(\"Facad1ng completed successfully.\")\nelse:\n print(\"Facad1ng encountered an error.\")\n```\n\n<h4 align=\"center\"> This tool is a Proof of Concept and is for Educational Purposes Only. </h4> \n\n---\n\n### \u2b54 Key Features:\n\n- **URL Masking**: Facad1ng allows users to mask URLs with a custom domain and optional phishing keywords, making it difficult to identify the actual link.\n\n- **Multiple URL Shorteners**: The tool supports multiple URL shorteners, providing flexibility in choosing the one that best suits your needs. Currently, it supports popular services like TinyURL, osdb, dagd, and clckru.\n\n- **Input Validation**: Facad1ng includes robust input validation to ensure that URLs, custom domains, and phishing keywords meet the required criteria, preventing errors and enhancing security.\n\n- **User-Friendly Interface**: Its simple and intuitive interface makes it accessible to both novice and experienced users, eliminating the need for complex command-line inputs.\n\n- **Open Source**: Being an open-source project, Facad1ng is transparent and community-driven. Users can contribute to its development and suggest improvements.\n\n---\n\n<h4 align=\"center\">\n OS compatibility :\n <br><br>\n <img src=\"https://img.shields.io/badge/Windows-05122A?style=for-the-badge&logo=windows\">\n <img src=\"https://img.shields.io/badge/Linux-05122A?style=for-the-badge&logo=linux\">\n <img src=\"https://img.shields.io/badge/Android-05122A?style=for-the-badge&logo=android\">\n <img src=\"https://img.shields.io/badge/macOS-05122A?style=for-the-badge&logo=macos\">\n</h4>\n\n<h4 align=\"center\"> \nRequirements:\n<br><br>\n<img src=\"https://img.shields.io/badge/Python-05122A?style=for-the-badge&logo=python\">\n<img src=\"https://img.shields.io/badge/Git-05122A?style=for-the-badge&logo=git\">\n</h4>\n\n### \u2b54 Git Installation\n---\n\n```\ngit clone https://github.com/spyboy-productions/Facad1ng.git\n```\n```\ncd Facad1ng\n```\n```\npip3 install -r requirements.txt\n```\n```\npython3 facad1ng.py\n```\n\n---\n\n#### \ud83d\udcac If having issue [Chat here](https://discord.gg/ZChEmMwE8d)\n[![Discord Server](https://discord.com/api/guilds/726495265330298973/embed.png)](https://discord.gg/ZChEmMwE8d)\n\n### \u2b54 Snapshots\n---\n\n<img width=\"100%\" align=\"centre\" src=\"https://cdn.discordapp.com/attachments/1141162711464550430/1149806863240663241/Screenshot_2023-09-09_at_1.59.55_AM.png\" />\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "The Ultimate URL Masking Tool",
"version": "0.0.18",
"project_urls": {
"Homepage": "https://github.com/spyboy-productions/Facad1ng"
},
"split_keywords": [
"masking",
"phishing",
"url-shortener",
"mask-phishing-url",
"hide-phishing-link",
"url-phishing"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "17947a98c03cfbaba3dcfcf38f482247fbd0b41dd937fd4d924ec53403d52ced",
"md5": "c2c97d30a1c92ce3c94ba5f07beed96d",
"sha256": "f62ed6fd67e32304f2ecdc46ec7cb2f225a4f131df2bdefd6afa2a757ad80b7b"
},
"downloads": -1,
"filename": "Facad1ng-0.0.18-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c2c97d30a1c92ce3c94ba5f07beed96d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 8041,
"upload_time": "2023-09-14T06:05:35",
"upload_time_iso_8601": "2023-09-14T06:05:35.525262Z",
"url": "https://files.pythonhosted.org/packages/17/94/7a98c03cfbaba3dcfcf38f482247fbd0b41dd937fd4d924ec53403d52ced/Facad1ng-0.0.18-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "434396bc8ff8daa77b9bd09da764b3012422c77c7dff98ee7afc2e0261788b6d",
"md5": "457a15a788f656ce326bd604637a950f",
"sha256": "6f55062fb384be6d4fc425a95efc71aaea3d5a5a696227e12caa54ffd12b4e19"
},
"downloads": -1,
"filename": "Facad1ng-0.0.18.tar.gz",
"has_sig": false,
"md5_digest": "457a15a788f656ce326bd604637a950f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5439,
"upload_time": "2023-09-14T06:05:37",
"upload_time_iso_8601": "2023-09-14T06:05:37.281460Z",
"url": "https://files.pythonhosted.org/packages/43/43/96bc8ff8daa77b9bd09da764b3012422c77c7dff98ee7afc2e0261788b6d/Facad1ng-0.0.18.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-14 06:05:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "spyboy-productions",
"github_project": "Facad1ng",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "facad1ng"
}