Skip to content
This repository has been archived by the owner on Aug 15, 2021. It is now read-only.
/ SWC Public archive

SWC - Serveo Website Crawler. A tool that searches for websites that use serveo.

License

Notifications You must be signed in to change notification settings

hXR16F/SWC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SWC - Serveo Website Crawler
A tool that searches for websites that use serveo.


screenshot

Usage

Run by double-clicking:

src/SWC.bat

It automatically saves index.html when it finds any alive website and saves it's name in log.txt.

If you want to change the length/charset of a website name (line 10):

call PwdGen.bat 2 6 > "_string"
::              ^ ^ length
::              \ charset

Click here for more informations about PwdGen.

Reading log.txt

Example log:

-qhicsv
-wekcxk
-cmwzrf
-xyqrxg
-tutnih
-rgendi
-sejqws
+equina

The '+' indicates that website is alive and the '-' means that website doesn't exist.

The script below allows you to process through log.txt:

@echo off
setlocal EnableDelayedExpansion
for /f "tokens=1*" %%i in (log.txt) do (
	set "line=%%i"
	if "!line:~0,1!" equ "+" echo https://!line:~1,64!.serveo.net/ ^(Alive^)
	if "!line:~0,1!" equ "-" echo https://!line:~1,64!.serveo.net/ ^(Dead^)
)
pause

The output would be:

https://qhicsv.serveo.net/ (Dead)
https://wekcxk.serveo.net/ (Dead)
https://cmwzrf.serveo.net/ (Dead)
https://xyqrxg.serveo.net/ (Dead)
https://tutnih.serveo.net/ (Dead)
https://rgendi.serveo.net/ (Dead)
https://sejqws.serveo.net/ (Dead)
https://equina.serveo.net/ (Alive)
Press any key to continue . . .

About

SWC - Serveo Website Crawler. A tool that searches for websites that use serveo.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published