1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-09 17:38:58 +00:00
hashcat/BUILD.md

47 lines
694 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
# Author: see docs/credits.txt
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
2016-09-02 08:41:08 +00:00
$ git submodule init
$ git submodule update
2016-05-10 17:16:57 +00:00
```
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 ;)