Extended password length up to 32 for 7zip
[hashcat.git] / docs / changes.txt
1 * changes v2.01 -> v3.00:
2
3 This release markes the fusion of "hashcat" and "oclHashcat" into "hashcat".
4 It combines all features of all hashcat projects in one project.
5
6 ** NOTE to beta users: that's what's planed for release **
7
8 ##
9 ## Features
10 ##
11
12 - Support for Apple OpenCL runtime
13 - Support for NVidia OpenCL runtime (replaces CUDA)
14 - Support for Mesa/Clover OpenCL runtime
15 - Support for pocl OpenCL runtime
16 - Support for Khronos' OSS OpenCL reference implementation for building
17 - Support to utilize OpenCL devices-types other than GPU, ex: CPU and FPGA
18 - Support to utilize multiple different OpenCL platforms in parallel, ex: AMD + NV
19 - Support to utilize multiple different OpenCL device-types in parallel, ex: GPU + CPU
20 - Added option --opencl-platform to select a specific OpenCL platform
21 - Added option --opencl-device-types select specific OpenCL device types
22 - Added option --opencl-vector-width to override automatically selected vector-width size
23 - Added makefile native compilation target
24 - Added makefile install and uninstall targets
25 - Added autotuning engine and user-configurable tuning database
26 - Added execution timer of the running kernel to the status display
27 - Added command prompt to quit at next restore checkpoint
28 - Added human-readable error message for the OpenCL error codes
29 - Added option --potfile-path to override potfile path
30
31 ##
32 ## Algorithms
33 ##
34
35 - Added new hash-mode   125 = ArubaOS
36 - Added new hash-mode 12900 = Android FDE (Samsung DEK)
37 - Added new hash-mode 13000 = RAR5
38 - Added new hash-mode 13100 = Kerberos 5 TGS-REP etype 23
39 - Added new hash-mode 13200 = AxCrypt
40 - Added new hash-mode 13300 = AxCrypt in memory SHA1
41 - Added new hash-mode 13400 = Keepass 1 (AES/Twofish) and Keepass 2 (AES)
42 - Added new hash-mode 13500 = PeopleSoft PS_TOKEN
43
44 ##
45 ## Performance
46 ##
47
48 - Full Table: https://docs.google.com/spreadsheets/d/1B1S_t1Z0KsqByH3pNkYUM-RCFMu860nlfSsYEqOoqco/edit#gid=0
49
50 ##
51 ## Improvements
52 ##
53
54 - Reordering of files to help integration into linux distributions ~/.hashcat etc
55 - Use a profile directory to write temporary files (session, potfile etc.)
56 - Workaround depencies on AMD APP-SDK AMD ADL, NV CUDA-SDK, NV ForceWare, NVML and NVAPI; they are no longer required
57 - Load external libraries dynamic at runtime instead of link them static at compile-time
58 - Benchmark accuracy improved; Is now on par to: singlehash -a 3 -w 3 ?b?b?b?b?b?b?b
59 - Benchmark no longer depends on a fixed time
60 - Removed option --benchmark-mode, therefore support --workload-profile in benchmark-mode
61 - Extended support from 14 to 255 functions calls per rule
62 - Extended password length up to 32 for 7zip
63 - Extended version information
64 - Removed some duplicate rules in T0XlCv1, d3ad0ne and dive
65 - Redesigned changes.txt layout
66
67 ##
68 ## Bugs
69 ##
70
71 - Fixed a bug in speed display: In some situation, especially with slow hashes or lots of salts, it showed a speed of 0H/s
72 - Fixed a bug in restore handling: user immediately aborting after restart broke the restore file
73 - Fixed a bug in line counter: conditional jump or move depends on an uninitialised value
74 - Fixed a bug in rule-engine for NVidia devices: code for left- and right-shift were switched
75 - Fixed a bug in dive.rule: rules were not updated after the function 'x' was renamed to 'O'
76 - Fixed a bug in memory allocation "OpenCL -4 error": used unitialized value in a special situation
77 - Fixed a bug in memory handling: heap buffer overflow
78 - Fixed a bug in memory handling: out of bounds access
79 - Fixed a bug in implementation of DCC2: forced default iteration count for hashes to 10240
80 - Fixed a bug in implementation of WPA/WPA2: MAC and nonce stay one their original position as in the hccap file
81 - Fixed a bug in implementation of GOST R 34.11-94: zero length passwords were not cracked
82
83 ##
84 ## Technical
85 ##
86
87 - Removed deprecated GCC version check requirement
88 - Removed NPROCS from Makefile, let make automatically detect the optimal number of parallel threads
89 - Dropped all C++ overloading functions to normal function which helps support more OpenCL platforms
90 - Renamed functions in common.h to emphasize their purpose
91 - Refactorized fast-hash kernels to enable SIMD on all OpenCL platforms
92 - Refactorized SIMD handling: SIMD the inner-loop not the outer-loop to save registers
93 - Workaround missing clEnqueueFillBuffer() support in certain OpenCL runtimes
94 - Added amd_bytealign() support in non-AMD OpenCL runtimes
95 - Added amd_bfe() support in non-AMD OpenCL runtimes
96 - Added several macros to allow writing optimized code for the different OpenCL platforms
97 - Replaced typedef for bool with stdbool.h
98 - Added special DEBUG environment variables to the makefile
99 - Hashcat now acquires an exclusive lock before writing to any file
100 - Changed buffers to not use same buffer for both input and output at the same time with snprintf()
101 - Check for allocatable device-memory depending on kernel_accel amplifier before trying to allocate
102 - Added additional check for max. ESSID length to prevent possible crashes
103 - Use a GCC equivalent for __stdcall where applicable
104 - Synchronize maximum output line size with input line size
105 - Increased maximum hash line size to 0x50000
106 - Run weak-hash checks only in straight-attack mode, this greatly reduces code complexity
107 - Restrict loopback option to straight attack-mode
108 - Moved rules_optimize to hashcat-utils
109 - Stick to older libOpenCL in binary package to avoid errors like this: version `OPENCL_2.0' not found
110 - Tightened hash parser for several algorithms
111 - Updated old RC4 code in Kerberos 5
112 - Limited the salt length of Juniper Netscreen/SSG (ScreenOS) hashes to 10
113 - Updated algorithm used to automatically select an ideal --scrypt-tmto value
114 - Renamed option --gpu-accel to --kernel-accel
115 - Renamed option --gpu-loops to --kernel-loops
116 - Renamed option --gpu-devices to --opencl-devices
117 - Added inline declaration to functions from simd.c, common.c, rp.c and types_ocl.c to increase performance
118 - Dropped static declaration from functions in all kernel to achieve OpenCL 1.1 compatibility
119 - Added -cl-std=CL1.1 to all kernel build options
120 - Created environment variable to inform NVidia OpenCL runtime to not create its own kernel cache
121 - Created environment variable to inform pocl OpenCL runtime to not create its own kernel cache
122 - Dropped special 64-bit rotate() handling for NV, it seems that they've added it to their OpenCL runtime