• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

charsets/H04-Dec-2015-

docs/H03-May-2022-241199

examples/H04-Dec-2015-2,7222,680

include/H04-Dec-2015-2,2221,797

masks/H04-Dec-2015-134,148134,140

obj/H04-Dec-2015-

rules/H04-Dec-2015-261,390260,964

salts/H04-Dec-2015-857,633857,630

src/H03-May-2022-41,40329,935

tables/H04-Dec-2015-548542

tools/H04-Dec-2015-44,56242,499

MakefileH A D04-Dec-201521 21

README.mdH A D04-Dec-20153.4 KiB4828

README.md

1## *Hashcat* ##
2
3**Hashcat** is an advanced CPU-based password recovery utility for Windows 7/8/10, Apple OS X, and GNU/Linux, supporting seven unique modes of attack for over 100 optimized hashing algorithms.
4
5### License ###
6
7**Hashcat** is licensed under the MIT license. Refer to [docs/license.txt](docs/license.txt) for more information.
8
9### Installation ###
10
11Download the [latest release](https://hashcat.net/hashcat/) and unpack it in the desired location. Please remember to use `7z x` when unpacking the archive from the command line to ensure full file paths remain intact.
12
13### Usage/Help ###
14
15Please refer to the [Hashcat Wiki](http://hashcat.net/wiki/) and the output of `--help` for usage information and general help. A list of frequently asked questions may also be found [here](http://hashcat.net/wiki/doku.php?id=frequently_asked_questions). The [Hashcat Forums](http://hashcat.net/forum/) also contain a plethora of information.
16
17### Building ###
18
19Refer to [docs/BUILD.md](docs/BUILD.md) for instructions on how to build **Hashcat** from source.
20
21### Contributing ###
22
23Contributions are welcome and encouraged, provided your code is of sufficient quality. Before submitting a pull request, please ensure your code adheres to the following requirements:
24
251. Licensed under MIT license, or dedicated to public domain (BSD, GPL, etc. code is incompatible)
262. Adheres to either C89, C90, or C99 standards
272. Compiles cleanly with no warnings when compiled with `-W -Wall -std=c99`
283. Uses [Allman-style](https://en.wikipedia.org/wiki/Indent_style#Allman_style) code blocks & indentation
294. Uses 2-character tabs and 2-character indentations
305. Uses lower-case function and variable names
316. Avoids the use of `!` and uses positive conditionals wherever possible (e.g., `if (foo == 0)` instead of `if (!foo)`, and `if (foo)` instead of `if (foo !=0)`)
32
33You can use GNU Indent to help assist you with the style requirements:
34
35```
36indent -st -bad -bap -sc -bl -bli0 -ncdw -nce -cli0 -cbi0 -pcs -cs -npsl -bs -nbc -bls -blf -lp -i2 -ts2 -nut -l1024 -nbbo -fca -lc1024 -fc1
37```
38
39Your pull request should fully describe the functionality you are adding/removing or the problem you are solving. Regardless of whether your patch modifies one line or one thousand lines, you must describe what has prompted and/or motivated the change.
40
41Solve only one problem in each pull request. If you're fixing a bug and adding a new feature, you need to make two separate pull requests. If you're fixing three bugs, you need to make three separate pull requests. If you're adding four new features, you need to make four separate pull requests. So on, and so forth.
42
43If your patch fixes a bug, please be sure there is an [issue](https://github.com/hashcat/hashcat/issues) open for the bug before submitting a pull request. If your patch aims to improve performance or optimizes an algorithm, be sure to quantify your optimizations and document the trade-offs, and back up your claims with benchmarks and metrics.
44
45In order to maintain the quality and integrity of the **Hashcat** source tree, all pull requests must be reviewed and signed off by at least two [board members](https://github.com/orgs/hashcat/people) before being merged. The [project lead](https://github.com/jsteube) has the ultimate authority in deciding whether to accept or reject a pull request. Do not be discouraged if your pull request is rejected!
46
47### Happy Cracking!
48