![]() |
|
[HC Official] Hash Algorithm Identifier v3.3 - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: [HC Official] Hash Algorithm Identifier v3.3 (/Thread-HC-Official-Hash-Algorithm-Identifier-v3-3) |
RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-18-2014 (02-17-2014, 09:24 PM)Ligeti Wrote: Thank you for sharing this... I love it! %100 HQ Not required. You liked it, that's enough for me. RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-18-2014 (02-17-2014, 09:24 PM)Ligeti Wrote: Thank you for sharing this... I love it! %100 HQ Not required. You liked it, that's enough for me. RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-18-2014 (02-18-2014, 03:52 PM)Ex094 Wrote: Great work Pyscho Coder! This is truly awesome, so much work being done with just using Regular Expressions Thank you. Yes Regular expression's are truly awesome. RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-18-2014 (02-18-2014, 03:52 PM)Ex094 Wrote: Great work Pyscho Coder! This is truly awesome, so much work being done with just using Regular Expressions Thank you. Yes Regular expression's are truly awesome. RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-20-2014 New version Hash Algorithm Identifier v2.0 has been released. It has now support for 106 hashes. Few hashes are new and they are not even in the googlecode project. Thank you. RE: Hash Algorithm Identifier v1.0 - Psycho_Coder - 02-20-2014 New version Hash Algorithm Identifier v2.0 has been released. It has now support for 106 hashes. Few hashes are new and they are not even in the googlecode project. Thank you. RE: Hash Algorithm Identifier v2.0 - Psycho_Coder - 02-20-2014 Added support for python lower and new versions. 2.7.6 <= Python Versions Support >= 3.0 used the code segment below to do the trick. Code: def getInput(prompt):
if sys.hexversion > 0x03000000:
return input(prompt)
else:
return raw_input(prompt)RE: Hash Algorithm Identifier v2.0 - Psycho_Coder - 02-20-2014 Added support for python lower and new versions. 2.7.6 <= Python Versions Support >= 3.0 used the code segment below to do the trick. Code: def getInput(prompt):
if sys.hexversion > 0x03000000:
return input(prompt)
else:
return raw_input(prompt)RE: Hash Algorithm Identifier v2.0 - Psycho_Coder - 02-20-2014 Windows Binaries created and uploaded. Binaries were created using py2exe. Wiki about how to use them will be made shortly. Added start.cmd script to compile he program from source and then execute, in the windows environment. Anyone uses Mac OS x ? I would like to know how to create mac executables. I have never used mac in my whole life and I don't know anything about it and hence seeking help from you. (Though I guess only a very very few users have actually noticed this thread. However, I have to update the thread and hence I will do regardless of the feedback expected.) Thank you. RE: Hash Algorithm Identifier v2.0 - Psycho_Coder - 02-20-2014 Windows Binaries created and uploaded. Binaries were created using py2exe. Wiki about how to use them will be made shortly. Added start.cmd script to compile he program from source and then execute, in the windows environment. Anyone uses Mac OS x ? I would like to know how to create mac executables. I have never used mac in my whole life and I don't know anything about it and hence seeking help from you. (Though I guess only a very very few users have actually noticed this thread. However, I have to update the thread and hence I will do regardless of the feedback expected.) Thank you. |