1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 01:49:01 +00:00
hashcat/BUILD.md

50 lines
871 B
Markdown
Raw Normal View History

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