flaxcrack Posted February 6, 2006 Share Posted February 6, 2006 (edited) Here it is! Don't throw stones at me... If you can't figure it out then don't worry about it. #comments-start Author: Flaxcrack @ http://www.autoitscript.com/ Version: 1.0 Use: MD5PWC($PWS, $PWL, $POT, $SPROC) :: MD5PWC(SourceFile, ListFile, JackPOTFile, Save Processor 0 for no 1 for yes) 1 is default for Save Processor #comments-end #include <File.au3> Func MD5PWC($PWS, $PWL, $POT, $SPROC = 1) Local $plHND = PluginOpen("dllHash.dll") Local $aPWS Local $aPWL _FileReadToArray($PWS, $aPWS) _FileReadToArray($PWL, $aPWL) Local $LineReadSource = 1 Do Local $LineReadList = 1 $SPW = $aPWS[$LineReadSource] Do $ENC = StringHash($aPWL[$LineReadList]) If $ENC = $aPWS[$LineReadSource] Then FileWriteLine($POT, $aPWS[$LineReadSource]&":"&$aPWL[$LineReadList]) If $SPROC = 1 Then Sleep(1) $LineReadList = $LineReadList + 1 Until $LineReadList = _FileCountLines($PWL) + 1 $LineReadSource = $LineReadSource + 1 Until $LineReadSource = _FileCountLines($PWS) + 1 PluginClose($plHND) EndFunc Here is an example using it #include <md5pwc.au3> MD5PWC(@ScriptDir&"\out.txt",@ScriptDir&"\list.txt",@ScriptDir&"\pot.txt", 0) Edited February 6, 2006 by flaxcrack [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD() Link to comment Share on other sites More sharing options...
busysignal Posted February 6, 2006 Share Posted February 6, 2006 Thanks for the code but where is the "dllHash.dll" file? Is this something you put together? If so please post.. Cheers.. Link to comment Share on other sites More sharing options...
flaxcrack Posted February 6, 2006 Author Share Posted February 6, 2006 (edited) Thanks for the code but where is the "dllHash.dll" file? Is this something you put together? If so please post..Cheers.. Sorry about that. I am using JSThePatriot's MD5 Hash Plug-in. It can be found here: http://www.autoitscript.com/forum/index.php?showtopic=21010Thanks and good luck. Make sure you use JPM's version of the file.dllHash.dll Edited February 6, 2006 by flaxcrack [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD() Link to comment Share on other sites More sharing options...
JSThePatriot Posted February 6, 2006 Share Posted February 6, 2006 Looks good. I am glad to see it is being put to good use. I will let you know when I upload the new .dll, it will be a slight bit smaller so you may just want to link to it instead of having it available here for download. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008Â Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more) Link to comment Share on other sites More sharing options...
flaxcrack Posted February 6, 2006 Author Share Posted February 6, 2006 Looks good. I am glad to see it is being put to good use. I will let you know when I upload the new .dll, it will be a slight bit smaller so you may just want to link to it instead of having it available here for download.JSYou got it! I'll keep a look out for when it is finished. [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD() Link to comment Share on other sites More sharing options...
busysignal Posted February 9, 2006 Share Posted February 9, 2006 flaxcrack: Thanks for the {.DLL} post. I will give it a go.. JSThePatriot: Thanks for making this {.DLL} available.. Cheer.. B_ Link to comment Share on other sites More sharing options...
JSThePatriot Posted February 9, 2006 Share Posted February 9, 2006 @flaxcrack I have updated my MD5 plugin. It is fully functional now. @busysignal You are most certainly welcome. I plan to make some more useful plugins in the near future. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008Â Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more) Link to comment Share on other sites More sharing options...
flaxcrack Posted February 10, 2006 Author Share Posted February 10, 2006 @flaxcrackI have updated my MD5 plugin. It is fully functional now.@busysignalYou are most certainly welcome. I plan to make some more useful plugins in the near future.JS Nice, I'll update the code this weekend then. Thanks a 1,000! Great job on the DLL btw. As soon as I saw it posted I knew I was going to make a MD5 Hash Auditer. [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD() Link to comment Share on other sites More sharing options...
strik3r0475 Posted March 30, 2006 Share Posted March 30, 2006 ERROR: StringHash(): undefined function. What include file is StringHash in or is it in an include file? Fight Spam! Click Here! Link to comment Share on other sites More sharing options...
nfwu Posted March 30, 2006 Share Posted March 30, 2006 StringHash is in the plugin calleddllHash.dllFound here: http://www.autoitscript.com/forum/index.php?showtopic=21010#) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode() Link to comment Share on other sites More sharing options...
strik3r0475 Posted March 30, 2006 Share Posted March 30, 2006 StringHash is in the plugin calleddllHash.dllFound here: http://www.autoitscript.com/forum/index.php?showtopic=21010#)Is that different from the dllHash.dll in the 3rd post of this topic?I tried that one and everyone from the link you posted and all give me the same error.... Fight Spam! Click Here! Link to comment Share on other sites More sharing options...
nfwu Posted March 31, 2006 Share Posted March 31, 2006 The file has to be in the same directory as the script... #) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode() Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now