Jens Steube [Tue, 24 May 2016 17:30:55 +0000 (19:30 +0200)]
Fix bug in -a 1 mode: If left wordlist has less entries than right wordlist then 0x80 was not added
jsteube [Mon, 23 May 2016 19:34:50 +0000 (21:34 +0200)]
Reduce helptext width from 134 to 118; Reduce -w 1 target to 2ms
jsteube [Sun, 22 May 2016 23:28:11 +0000 (01:28 +0200)]
Adjust target workload profile timings slightly
jsteube [Sun, 22 May 2016 20:25:15 +0000 (22:25 +0200)]
Fix changes
jsteube [Sun, 22 May 2016 19:46:06 +0000 (21:46 +0200)]
Redesigned hashcat --help menu
jsteube [Sat, 21 May 2016 19:23:22 +0000 (21:23 +0200)]
Get SHA256 KDF for VeraCrypt to work
jsteube [Sat, 21 May 2016 13:49:09 +0000 (15:49 +0200)]
Update autotune engine
jsteube [Sat, 21 May 2016 10:26:44 +0000 (12:26 +0200)]
Mark -n and -u as outdated function and restrict them to --force
jsteube [Sat, 21 May 2016 10:16:09 +0000 (12:16 +0200)]
Fix some indents
jsteube [Sat, 21 May 2016 10:13:37 +0000 (12:13 +0200)]
Fix some indents
jsteube [Sat, 21 May 2016 09:00:16 +0000 (11:00 +0200)]
Merge branch 'master' of https://github.com/hashcat/oclHashcat
jsteube [Sat, 21 May 2016 08:58:58 +0000 (10:58 +0200)]
We can safely replace atomic_add() with atomic_inc()
Jens Steube [Fri, 20 May 2016 22:39:22 +0000 (00:39 +0200)]
Some final fixes for d_return_buf refactorization; Initial kernels vor veracrypts SHA256 KDF (not working)
jsteube [Fri, 20 May 2016 17:05:54 +0000 (19:05 +0200)]
Some fixes for rare kernels
Jens Steube [Fri, 20 May 2016 16:24:33 +0000 (18:24 +0200)]
Optimize handling of cracked hashes, was a bottleneck if too many at once
Jens Steube [Fri, 20 May 2016 13:47:42 +0000 (15:47 +0200)]
Respect eventual already cracked hashes from potfile when generating the bitmaps
Jens Steube [Thu, 19 May 2016 20:37:43 +0000 (22:37 +0200)]
More VeraCrypt stuff; SHA256 kernels missing and --veracrypt-pim missing
Jens Steube [Thu, 19 May 2016 18:59:53 +0000 (20:59 +0200)]
Merge pull request #348 from anthraxx/master
fallback for Makefile version if its not a git checkout (tarball) (re…
Jens Steube [Thu, 19 May 2016 18:53:17 +0000 (20:53 +0200)]
Prepare for VeraCrypt integration
anthraxx [Thu, 19 May 2016 09:15:15 +0000 (11:15 +0200)]
fallback for Makefile version if its not a git checkout (tarball) (refix)
This makes use of git export-subst to insert the current ref names.
If git describe fails because because an extracted tarball is used
to build from source then the fallback will get called and the last
part of the ref names will be used for the version variable.
if it is a git checkout and HEAD is the current tag:
v3.00-beta
If it is a git checkout and HEAD is ahead of the latest tag:
v3.00-beta-36-g24a6095
If it is a tarball from a tag created via 'git archive HEAD --format=tar':
v3.00-beta
If it is a tarball from the master created via 'git archive HEAD --format=tar':
master
NOTE: If a tarball is manually created (without git archive) then the
version will "$Format:%D$", however before this commit it would not be
possible to build a release tarball at all (because git describe would fail)
Tarballs that you manually want to distribute on your website need to be either
downloaded from github and re-uploaded or need to be create via git-archive:
gzip:
git archive --format=tar HEAD|gzip > oclHashcat.tar.gz
bzip2:
git archive --format=tar HEAD|bzip2 > oclHashcat.tar.bz2
You can also use a tag for git archive like:
git archive --format=tar v2.01|bzip2 > oclHashcat-2.01.tar.bz2
Jens Steube [Thu, 19 May 2016 09:10:39 +0000 (11:10 +0200)]
Merge pull request #347 from hashcat/revert-346-master
Revert "fallback for Makefile version if its not a git checkout (tarball)"
Jens Steube [Thu, 19 May 2016 09:10:16 +0000 (11:10 +0200)]
Revert "fallback for Makefile version if its not a git checkout (tarball)"
Jens Steube [Thu, 19 May 2016 09:08:24 +0000 (11:08 +0200)]
Merge pull request #346 from anthraxx/master
fallback for Makefile version if its not a git checkout (tarball)
Jens Steube [Wed, 18 May 2016 20:26:19 +0000 (22:26 +0200)]
Speed up unamplified speed
anthraxx [Wed, 18 May 2016 16:43:04 +0000 (18:43 +0200)]
fallback for Makefile version if its not a git checkout (tarball)
This makes use of git export-subst to insert the current ref names.
If git describe fails because because an extracted tarball is used
to build from source then the fallback will get called and the last
part of the ref names will be used for the version variable.
if it is a git checkout and HEAD is the current tag:
- v3.00-beta
If it is a git checkout and HEAD is ahead of the latest tag:
- v3.00-beta-36-g24a6095
If it is a tarball from a tag created via 'git archive HEAD --format=tar':
- v3.00-beta
If it is a tarball from the master created via 'git archive HEAD --format=tar':
- master
NOTE: If a tarball is manually created (without git archive) then the
version will "$Format:%D$", however before this commit it would not be
possible to build a release tarball that is not a git checkout (because
git describe would fail)
Jens Steube [Wed, 18 May 2016 09:18:31 +0000 (11:18 +0200)]
Get rid of some JIT compiler warnings
Jens Steube [Wed, 18 May 2016 07:56:23 +0000 (09:56 +0200)]
Use umask(077), mainly to secure hashcat.pot from reading from other users, but should be a good idea for all files. See https://github.com/hashcat/oclHashcat/issues/331 for details
Jens Steube [Wed, 18 May 2016 07:35:51 +0000 (09:35 +0200)]
Fix types_ocl.c to solve issue https://github.com/hashcat/oclHashcat/issues/344
Jens Steube [Tue, 17 May 2016 16:21:37 +0000 (18:21 +0200)]
Fix for -m 2500, see: https://github.com/hashcat/oclHashcat/issues/339
Jens Steube [Tue, 17 May 2016 14:48:59 +0000 (16:48 +0200)]
Merge pull request #341 from roycewilliams/master
add version header and time to --status-automat
Royce Williams [Tue, 17 May 2016 14:24:35 +0000 (06:24 -0800)]
add version header and time to --status-automat
Jens Steube [Tue, 17 May 2016 10:07:15 +0000 (12:07 +0200)]
Merge pull request #340 from gm4tr1x/master
Fix "abort trap: 6" for -m 6231 on OSX
Jens Steube [Tue, 17 May 2016 09:29:38 +0000 (11:29 +0200)]
Do not show any header in case --status-automat is used
Gabriele 'matrix' Gristina [Tue, 17 May 2016 08:31:56 +0000 (10:31 +0200)]
Fix "abort trap: 6" for -m 6231 on OSX
Jens Steube [Tue, 17 May 2016 08:17:00 +0000 (10:17 +0200)]
Enabled support of --status-automat in combination with --benchmark for automated benchmark processing
jsteube [Mon, 16 May 2016 19:30:21 +0000 (21:30 +0200)]
Minimal psafe2 increase and autotune fix
jsteube [Mon, 16 May 2016 18:30:39 +0000 (20:30 +0200)]
Fix some macros for NV
jsteube [Mon, 16 May 2016 00:38:58 +0000 (02:38 +0200)]
Separated sm50, sm52 and older cards in hashcat.hctune and updated accordingly
jsteube [Sun, 15 May 2016 17:54:56 +0000 (19:54 +0200)]
Added SIMD code for all generic PBKDF2-HMAC-* modes
Jens Steube [Sun, 15 May 2016 11:22:31 +0000 (13:22 +0200)]
Cache clGetKernelWorkGroupInfo() results on startup
Use clGetEventProfilingInfo() instead of our own timer
Jens Steube [Sat, 14 May 2016 23:29:36 +0000 (01:29 +0200)]
Merge pull request #332 from philsmd/master
test fix: ArubaOS salts are 8 hexadecimal chars long (4 binary), not 10
Jens Steube [Sat, 14 May 2016 23:27:26 +0000 (01:27 +0200)]
Merge pull request #333 from y0sh1/CreateTravisBuilds
Added Travis building
Jens Steube [Sat, 14 May 2016 23:13:09 +0000 (01:13 +0200)]
Added SIMD code for DCC2
Jens Steube [Sat, 14 May 2016 22:37:46 +0000 (00:37 +0200)]
Use packv() and unpackv() for slow hash SIMD handling in kernels
Y0sh1 [Sat, 14 May 2016 19:17:32 +0000 (21:17 +0200)]
Added Travis building, placed build status in readme
philsmd [Sat, 14 May 2016 17:47:23 +0000 (19:47 +0200)]
Merge remote-tracking branch 'upstream/master'
Jens Steube [Sat, 14 May 2016 17:45:51 +0000 (19:45 +0200)]
Added SIMD code for WPA/WPA2
philsmd [Fri, 13 May 2016 17:02:57 +0000 (19:02 +0200)]
test fix: ArubaOS salts are 8 hexadecimal chars long (4 binary), not 10 (4 binary), because '01' will be appended afterwards (total length is 10)
Jens Steube [Fri, 13 May 2016 13:31:58 +0000 (15:31 +0200)]
Add some missing changes
Jens Steube [Thu, 12 May 2016 20:15:44 +0000 (22:15 +0200)]
Add WinZip test.pl and test.sh
Jens Steube [Thu, 12 May 2016 11:05:12 +0000 (13:05 +0200)]
Fix WinZip multihash
Jens Steube [Thu, 12 May 2016 10:44:15 +0000 (12:44 +0200)]
Change some newline handling and startup infos
Jens Steube [Thu, 12 May 2016 07:27:07 +0000 (09:27 +0200)]
Merge branch 'master' of https://github.com/hashcat/oclHashcat
Jens Steube [Thu, 12 May 2016 07:26:54 +0000 (09:26 +0200)]
Prepare for WinZip integration
jsteube [Thu, 12 May 2016 07:24:20 +0000 (09:24 +0200)]
Balancing the workload turns out to be very efficient
jsteube [Wed, 11 May 2016 10:19:02 +0000 (12:19 +0200)]
Use VERSION_TAG only, but uncut
jsteube [Wed, 11 May 2016 09:58:51 +0000 (11:58 +0200)]
In case the user did not specify --opencl-device-types and the user runs hashcat in a system with only a CPU only he probably want to use that CPU. In such a case, automatically enable CPU device type support, since it's disabled by default.
jsteube [Wed, 11 May 2016 09:38:52 +0000 (11:38 +0200)]
Add more informative help text in case of faulty or no OpenCL installation
Jens Steube [Tue, 10 May 2016 22:01:29 +0000 (00:01 +0200)]
Fix autotune to not actually crack hashes
Jens Steube [Tue, 10 May 2016 17:30:11 +0000 (19:30 +0200)]
Remove debugging option from JIT compiler option
jsteube [Tue, 10 May 2016 17:16:57 +0000 (19:16 +0200)]
Moved BUILD.md to root folder
jsteube [Tue, 10 May 2016 17:07:07 +0000 (19:07 +0200)]
Prepare to rename project into hashcat
This release markes the fusion of "hashcat" and "oclHashcat" into "hashcat".
It combines all features of all hashcat projects in one project.
jsteube [Tue, 10 May 2016 08:22:13 +0000 (10:22 +0200)]
Remove OPENCL EXTENSION, failing on Intel OpenCL SDK
jsteube [Mon, 9 May 2016 21:35:25 +0000 (23:35 +0200)]
Switch back -m 7400 to old version
jsteube [Mon, 9 May 2016 21:14:26 +0000 (23:14 +0200)]
Remove unroll access for Drupal for NV gpus
jsteube [Mon, 9 May 2016 21:07:23 +0000 (23:07 +0200)]
Use real registers for salt, high-end maxwells didn't like it with global memory access
jsteube [Mon, 9 May 2016 19:51:36 +0000 (21:51 +0200)]
Remove barrier from DCC1, high-end maxwells didn't like it
jsteube [Mon, 9 May 2016 19:32:12 +0000 (21:32 +0200)]
Prepare for a more dynamic #pragma unroll use
jsteube [Mon, 9 May 2016 17:23:37 +0000 (19:23 +0200)]
Fix compiler warnings
Jens Steube [Mon, 9 May 2016 10:36:54 +0000 (12:36 +0200)]
Merge pull request #330 from RolfHashcat/patch-1
Update hashcat_tuning.hctab
Rolf [Mon, 9 May 2016 10:31:02 +0000 (11:31 +0100)]
Update hashcat_tuning.hctab
Requested optimisation of opencl vector width values for GTX Titan Mk I.
jsteube [Mon, 9 May 2016 09:25:51 +0000 (11:25 +0200)]
Add some missing hash-modes to hashcat_tuning.hctab
Jens Steube [Mon, 9 May 2016 07:40:57 +0000 (09:40 +0200)]
Fix -m 9000 performance for AMD
jsteube [Mon, 9 May 2016 07:17:59 +0000 (09:17 +0200)]
Fix broken -m 1500 and -m 3000
jsteube [Sun, 8 May 2016 22:58:04 +0000 (00:58 +0200)]
Add compiler kernel hints for algorithms with fixed workgroup size
jsteube [Sun, 8 May 2016 20:56:36 +0000 (22:56 +0200)]
Rewrote sha256crypt from scratch
jsteube [Sun, 8 May 2016 16:57:44 +0000 (18:57 +0200)]
Another some unroll to reduce register pressure
jsteube [Sun, 8 May 2016 16:29:54 +0000 (18:29 +0200)]
Remove some unroll to reduce register pressure
jsteube [Sun, 8 May 2016 14:07:40 +0000 (16:07 +0200)]
Enable unrolling of SHA512 with HMAC on NV
Jens Steube [Sun, 8 May 2016 13:33:32 +0000 (15:33 +0200)]
Optimize out the swap32() of sha256 in 7zip
jsteube [Sun, 8 May 2016 12:39:44 +0000 (14:39 +0200)]
Extended password length up to 32 for 7zip
jsteube [Sun, 8 May 2016 11:45:49 +0000 (13:45 +0200)]
Rename ALIAS_pre_maxwell and ALIAS_maxwell_budget to ALIAS_nv_use_simd
jsteube [Sun, 8 May 2016 11:37:58 +0000 (13:37 +0200)]
Run a few device compatibility checks on startup
jsteube [Sun, 8 May 2016 10:58:43 +0000 (12:58 +0200)]
Check if device is little endian device
jsteube [Sun, 8 May 2016 09:09:44 +0000 (11:09 +0200)]
Optimize some macros
Use rotate() instead of inline asm; breaks Titan speed
jsteube [Sat, 7 May 2016 23:56:32 +0000 (01:56 +0200)]
Update autotune, respect kernel_loops_max
jsteube [Sat, 7 May 2016 21:51:50 +0000 (23:51 +0200)]
Merge branch 'master' of https://github.com/hashcat/oclHashcat
jsteube [Sat, 7 May 2016 21:51:37 +0000 (23:51 +0200)]
Replace SHL+ADD with MAD
Jens Steube [Sat, 7 May 2016 19:02:56 +0000 (21:02 +0200)]
Merge pull request #329 from jfoug/master
generated and generated2. Changed xNM command to ONM
jsteube [Sat, 7 May 2016 18:59:35 +0000 (20:59 +0200)]
Add maxwell budget to hashcat_tuning.hctab
jsteube [Sat, 7 May 2016 18:45:16 +0000 (20:45 +0200)]
Little bit inline assembly for the older nvidia cards
jfoug [Sat, 7 May 2016 17:58:10 +0000 (12:58 -0500)]
generated and generated2. Changed xNM command to ONM
Jens Steube [Sat, 7 May 2016 17:52:57 +0000 (19:52 +0200)]
Merge pull request #328 from jfoug/master
d3adone.rule: removed duplicates.
jsteube [Sat, 7 May 2016 17:51:23 +0000 (19:51 +0200)]
Fix pocl version string
jsteube [Sat, 7 May 2016 17:44:02 +0000 (19:44 +0200)]
Add missing pre-maxwell cards
jfoug [Sat, 7 May 2016 17:34:25 +0000 (12:34 -0500)]
d3adone.rule: removed duplicates.
jsteube [Sat, 7 May 2016 13:50:18 +0000 (15:50 +0200)]
Update hashcat_tuning.hctab to match best settings with new autotuner
jsteube [Sat, 7 May 2016 11:21:59 +0000 (13:21 +0200)]
Merge branch 'master' of https://github.com/hashcat/oclHashcat
jsteube [Sat, 7 May 2016 11:15:21 +0000 (13:15 +0200)]
Optimize a few modes for hashcat_tuning.hctab for budget NV cards
Little experiment with MD4 based optimizations on -m 900 -m 1000 and -m 1100
Fix benchmark in case user fixes -u and -n values
Jens Steube [Sat, 7 May 2016 09:14:20 +0000 (11:14 +0200)]
Merge pull request #327 from jfoug/master
d3ad0ne rules. Converted all xNM commands into ONM