
Home
About
Backpacking
Games
Links
Pics
Playlist
Programs
Stuff I Wrote
Text
Things I Made
Download ~ 500KB
This program was written by me, to format lists of usernames and passwords into a easier to use format. You copy the lists into a file called list.txt, located at C:/list.txt (you have to create that file yourself), then run this program and it will generate a file called list.htm, also at C:/list.htm. The list.txt file should be in the following format:
hxxp://username:password@www.example.com/members/site
http://username:password@exampletwo.com/go/p12345c
hxxp://user:pass@www.example.com/members/site
http://user:pass@site.net/members
http://name:word@site.net/members
http://user:pass@site.net/members
Note that you can have either http, or hxxp, or hwhateverp, it will replace the second and third characters with t's.
Also note that it will add www. to the begining of all sites, so it will group similar site.com, and www.site.com.
The above would produce this:
www.example.com
username:password
user:pass
www.exampletwo.com
username:password
www.site.net
user:pass
name:word
user:pass
Problems, Bugs, Whatevers
It can only handle up to 1024 sites, so if you have more passes than that break it up. Note this can easily be changed I have it at 1024 cause that seemed reasonable and the higher its set the more RAM it'll use.
The input and output file has to be at C:/, reason it isn't just in the same directory as the program is run in, if you run the program in a directory that has spaces (C:/documents and settings... for example) it'll have problems. Now I'm sure this is fixable, but for now I just wanted to get something that got the job done.
It'll overwrite whatever list.htm you have there now. So if you have a list.htm that you want to keep don't run this until you rename or move it. Also if you make a list with this and want to save it but still want to create another list you have to move or rename the first list.htm.
Source
Here is the source code in text format.