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