Oracle 11g Format - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Oracle 11g Format (/thread-2155.html) |
Oracle 11g Format - MundeX - 03-20-2013 It's possible to use hashcat like oclHashcat-plus to recover password having Oracle 11g sys.user$.spare4 value? I've read thread oclHashcat-plus: Oracle 11g Format, but when try the same using hashcat nothing happend , only "Try --help for more help." RE: Oracle 11g Format - epixoip - 03-20-2013 if it were a problem with the hash format you would be getting a line length exception, not the help message. this means there's something else wrong with your command. paste your whole command line, but censor your hash. RE: Oracle 11g Format - MundeX - 03-21-2013 System Properties (example): -> Database: Oracle 11g -> Account: SYS -> Passwd: SYS -> SYS.USER$: NAME = 'SYS', SPARE4 = 'S:B283DCCE5DC81D2023E3304C8818646CFF434C9C2FCDD505130ED13524B4' This means: HASH = 'B283DCCE5DC81D2023E3304C8818646CFF434C9C', SALT = '2FCDD505130ED13524B4' Whole command line: C:\Temp\hashcat-0.43>hashcat-cli64.exe -m 112 B283DCCE5DC81D2023E3304C8818646CFF434C9C:2FCDD505130ED13524B4 I tried input file (hash_salt.txt) and other -m values (110). RE: Oracle 11g Format - atom - 03-21-2013 hashcat does not support -m 112, you need to use oclHashcat-plus RE: Oracle 11g Format - epixoip - 03-21-2013 the following commands work with plus: Code: ./oclHashcat-plus64.bin -m 112 B283DCCE5DC81D2023E3304C8818646CFF434C9C:2FCDD505130ED13524B4 -a 3 ?l?l?l and this command works with hashcat (no support for mode 112): Code: echo B283DCCE5DC81D2023E3304C8818646CFF434C9C:2FCDD505130ED13524B4 >test hope that helps. RE: Oracle 11g Format - MundeX - 03-21-2013 (03-21-2013, 04:53 PM)epixoip Wrote: (...) Works like a charm! Regards |