hashcat/docs/BUILD.md

57 lines
1021 B
Markdown
Raw Normal View History

hashcat build documentation
2015-12-04 15:47:52 +01:00
=
# Revision:
2016-02-04 09:44:52 +01:00
* 1.3
2015-12-04 15:47:52 +01:00
# Authors:
* Gabriele Gristina <<matrix@hashcat.net>>
* Christoph Heuwieser <<dropdead@hashcat.net>>
* magnum <<john.magnum@hushmail.com>>
2015-12-04 15:47:52 +01:00
# Building hashcat for Linux and OSX
2015-12-04 15:47:52 +01:00
Get a copy of the **hashcat** repository
2015-12-04 15:47:52 +01:00
```sh
$ git clone https://github.com/hashcat/hashcat.git
2015-12-04 15:47:52 +01:00
```
Run "make"
```sh
$ make
```
# Install hashcat for Linux
2016-02-04 09:44:52 +01:00
The install target is linux FHS compatible and can be used like this:
```sh
$ make install
2015-12-04 15:47:52 +01:00
```
2016-02-04 09:44:52 +01:00
If you install it, cached kernels, session files, restore- and pot-files etc. will go to $HOME/.hashcat/
# Building hashcat for Windows
Get a copy of the **hashcat** repository
```sh
$ git clone https://github.com/hashcat/hashcat.git
```
Basically all you need is the OpenCL Headers.
2016-02-04 09:44:52 +01:00
Simply clone into the reference Implementation:
2016-01-27 19:34:40 +01:00
```sh
2016-02-04 09:44:52 +01:00
$ mkdir -p deps/OpenCL-Headers
$ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
2016-01-27 19:34:40 +01:00
```
```sh
2016-02-04 09:44:52 +01:00
$ make win32 win64
```
2015-12-04 15:47:52 +01:00
=
Enjoy your fresh **hashcat** binaries ;)