Skip to content

Obfuscated Phishing URLs using HTTP Basic Authentication

Notifications You must be signed in to change notification settings

batmanrizz/url-obfuscator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Google Logo

URL Generator Script

This is a simple Python script that generates a custom URL based on your inputted domain name and saves it to a file called url.txt.


🚀 Features

  • Interactive prompt for your domain name
  • Formats a premade URL string with your input
  • Saves the result automatically to url.txt
  • No dependencies required—just Python!


🛠️ How to Use

  1. Clone this repo (or just copy the code):

    git clone https://github.com/batmanrizz/url-obfuscator.git
    cd url-obfuscator
  2. Run the script:

    python main.py
  3. Follow the prompt:

    Enter your domain name--> example.com
    
  4. Check the output:
    The URL will be saved in a file called url.txt in the same directory.


📝 Example

If you enter:

Enter your domain name--> example.com

The content of url.txt will be:

https://accounts.google.com+signin=secure+v2+identifier=passive@example.com

🧩 Script

url_end = input("Enter your domain name--> ")

url = f"https://accounts.google.com+signin=secure+v2+identifier=passive@{url_end}"

with open("url.txt", "w") as f:
    f.write(url)

Python Logo


About

Obfuscated Phishing URLs using HTTP Basic Authentication

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages