Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Echo Off
- @Title MD5 Hash Table Generator
- ::Coded by SmartGenius
- Set "Dic=a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
- Set "C=0"
- If ["%~1"]==[""] (Set "Len=3") else (Set "Len=%~1")
- Call :Md5Gen "" %Len%
- Pause
- Exit /b 0
- :Md5Gen
- If %C% NEQ %~2 (
- Set /a "C+=1"
- For %%D in (%Dic%) do (Call :Md5Gen %~1%%D %~2)
- Set /a "C-=1"
- ) else (
- For /f "tokens=1" %%H in ('Echo.%~1^|md5') do (Echo. %~1 = %%H >>Md5HashTables.txt)
- )
- Goto :Eof
- :: GET MD5 Command Here ->> http://www.elguille.info/colabora/md5.zip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement