Advertisement
SmartGenius

MD5 Hash Table Generator

Jul 6th, 2012
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. @Echo Off
  2. @Title MD5 Hash Table Generator
  3.  
  4. ::Coded by SmartGenius
  5.  
  6. 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"
  7. Set "C=0"
  8. If ["%~1"]==[""] (Set "Len=3") else (Set "Len=%~1")
  9.  
  10. Call :Md5Gen "" %Len%
  11. Pause
  12. Exit /b 0
  13.  
  14. :Md5Gen
  15. If %C% NEQ %~2 (
  16. Set /a "C+=1"
  17. For %%D in (%Dic%) do (Call :Md5Gen %~1%%D %~2)
  18. Set /a "C-=1"
  19. ) else (
  20. For /f "tokens=1" %%H in ('Echo.%~1^|md5') do (Echo. %~1 = %%H >>Md5HashTables.txt)
  21. )
  22. Goto :Eof
  23.  
  24.  
  25. :: GET MD5 Command Here ->> http://www.elguille.info/colabora/md5.zip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement