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

..03-May-2022-

.github/ISSUE_TEMPLATE/H21-Nov-2021-181131

OpenCL/H21-Nov-2021-680,198563,423

charsets/H21-Nov-2021-1919

deps/H03-May-2022-184,243133,802

docs/H03-May-2022-1,213812

extra/tab_completion/H21-Nov-2021-1,187773

include/H21-Nov-2021-8,9325,879

layouts/H21-Nov-2021-680668

masks/H21-Nov-2021-134,150134,141

modules/H21-Nov-2021-

obj/H21-Nov-2021-

rules/H21-Nov-2021-305,278304,768

src/H03-May-2022-182,977136,848

tools/H21-Nov-2021-42,15426,523

.appveyor.ymlH A D21-Nov-20212.9 KiB7364

.editorconfigH A D21-Nov-2021304 1714

.gitattributesH A D21-Nov-202126 21

.gitignoreH A D21-Nov-2021249 2625

.travis.ymlH A D21-Nov-2021434 1716

BUILD.mdH A D21-Nov-20211.8 KiB8452

BUILD_CYGWIN.mdH A D21-Nov-20211.1 KiB4831

BUILD_MSYS2.mdH A D21-Nov-20211 KiB4730

BUILD_WSL.mdH A D21-Nov-20211.2 KiB4131

MakefileH A D21-Nov-202121 21

README.mdH A D21-Nov-20214.2 KiB5533

example.dictH A D21-Nov-20211 MiB128,417128,416

example0.cmdH A D21-Nov-202170 32

example0.hashH A D21-Nov-2021209.3 KiB6,4956,494

example0.shH A D21-Nov-202162 21

example400.cmdH A D21-Nov-202161 32

example400.hashH A D21-Nov-202135 21

example400.shH A D21-Nov-202152 21

example500.cmdH A D21-Nov-202154 32

example500.hashH A D21-Nov-202135 21

example500.shH A D21-Nov-202146 21

hashcat.hctuneH A D21-Nov-202124.2 KiB408370

README.md

1## *hashcat* ##
2
3**hashcat** is the world's fastest and most advanced password recovery utility, supporting five unique modes of attack for over 300 highly-optimized hashing algorithms. hashcat currently supports CPUs, GPUs, and other hardware accelerators on Linux, Windows, and macOS, and has facilities to help enable distributed password cracking.
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](https://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](https://hashcat.net/wiki/doku.php?id=frequently_asked_questions). The [Hashcat Forum](https://hashcat.net/forum/) also contains a plethora of information. If you still think you need help by a real human come to [Discord](https://discord.gg/HFS523HGBT).
16
17### Building ###
18
19Refer to [BUILD.md](BUILD.md) for instructions on how to build **hashcat** from source.
20
21Tests:
22
23Travis | Appveyor | Coverity
24------ | -------- | --------
25[![Hashcat Travis Build status](https://travis-ci.org/hashcat/hashcat.svg?branch=master)](https://travis-ci.org/hashcat/hashcat) | [![Hashcat Appveyor Build status](https://ci.appveyor.com/api/projects/status/github/hashcat/hashcat?branch=master&svg=true)](https://ci.appveyor.com/project/jsteube/hashcat) | [![Coverity Scan Build Status](https://scan.coverity.com/projects/11753/badge.svg)](https://scan.coverity.com/projects/hashcat)
26
27### Contributing ###
28
29Contributions 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:
30
311. Licensed under MIT license, or dedicated to the public domain (BSD, GPL, etc. code is incompatible)
322. Adheres to gnu99 standard
333. Compiles cleanly with no warnings when compiled with `-W -Wall -std=gnu99`
344. Uses [Allman-style](https://en.wikipedia.org/wiki/Indent_style#Allman_style) code blocks & indentation
355. Uses 2-spaces as the indentation or a tab if it's required (for example: Makefiles)
366. Uses lower-case function and variable names
377. 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)`)
388. Use code like array[index + 0] if you also need to do array[index + 1], to keep it aligned
39
40You can use GNU Indent to help assist you with the style requirements:
41
42```
43indent -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
44```
45
46Your 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.
47
48Solve 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.
49
50If 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 optimize an algorithm, be sure to quantify your optimizations and document the trade-offs, and back up your claims with benchmarks and metrics.
51
52In 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!
53
54### Happy Cracking!
55