• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Scam Page Domain Extractor (1 Viewer)

Currently reading:
 Scam Page Domain Extractor (1 Viewer)

Recently searched:

throwawayz

Member
LV
0
Joined
Feb 20, 2022
Threads
0
Likes
4
Awards
2
Credits
560©
Cash
0$
One line in bash will do it. You're probably on Windows... if you are, install VMWare workstation and a Linux distro or enable WSL 2 on Windows, download Windows Terminal or use cmd.exe to enter wsl, windows subsystem for linux.

bash prompt:
┌──(throwawayz㉿suffer)-[/home/throwawayz]
└─$ < LIST.txt grep -Eo '\b[a-zA-Z0-9.-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b' | grep -Eo '[^@]+$' | sort -u
output.com


"< LIST.txt grep -Eo '\b[a-zA-Z0-9.-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b' | grep -Eo '[^@]+$' | sort -u"

^ this command,
feeds the original file named LIST.txt in this example to grep, grep uses regex to filter and pull only what follows @ and matches the accepted format for a domain.
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom