mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
49 lines
793 B
Markdown
49 lines
793 B
Markdown
hashcat build documentation
|
|
=
|
|
# Revision:
|
|
* 1.3
|
|
|
|
# Authors:
|
|
* Gabriele Gristina <<matrix@hashcat.net>>
|
|
* Christoph Heuwieser <<dropdead@hashcat.net>>
|
|
* magnum <<john.magnum@hushmail.com>>
|
|
|
|
# Building hashcat for Linux and OSX
|
|
|
|
Get a copy of the **hashcat** repository
|
|
|
|
```sh
|
|
$ git clone https://github.com/hashcat/hashcat.git
|
|
```
|
|
|
|
Get a copy of the **OpenCL Headers** repository
|
|
|
|
```sh
|
|
$ git submodule update --recursive
|
|
```
|
|
|
|
Run "make"
|
|
|
|
```sh
|
|
$ make
|
|
```
|
|
|
|
# Install hashcat for Linux
|
|
|
|
The install target is linux FHS compatible and can be used like this:
|
|
|
|
```sh
|
|
$ make install
|
|
```
|
|
|
|
If you install it, cached kernels, session files, restore- and pot-files etc. will go to $HOME/.hashcat/
|
|
|
|
# Building hashcat for Windows
|
|
|
|
```sh
|
|
$ make win32 win64
|
|
```
|
|
|
|
=
|
|
Enjoy your fresh **hashcat** binaries ;)
|