2015-12-04 14:47:52 +00:00
|
|
|
oclHashcat build documentation
|
|
|
|
=
|
|
|
|
# Revision:
|
2015-12-16 12:47:46 +00:00
|
|
|
* 1.1
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
# Authors:
|
|
|
|
* Gabriele Gristina <<matrix@hashcat.net>>
|
|
|
|
* Christoph Heuwieser <<dropdead@hashcat.net>>
|
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
To compile **oclHashcat** the following third party libraries are required:
|
|
|
|
|
2015-12-16 12:47:46 +00:00
|
|
|
- ADL_SDK v8.0 ( http://developer.amd.com/tools-and-sdks/graphics-development/display-library-adl-sdk/ )
|
|
|
|
- GDK v352_55 ( https://developer.nvidia.com/gpu-deployment-kit )
|
|
|
|
- NVIDIA Driver v352.21 ( https://www.nvidia.com/download/driverResults.aspx/86390/en-us )
|
|
|
|
- NVAPI R352 ( https://developer.nvidia.com/nvapi )
|
|
|
|
- AMD-APP-SDK v3.0 ( http://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/ )
|
|
|
|
|
2015-12-04 14:47:52 +00:00
|
|
|
To be able to compile the ocl binaries, it is required to have the latest stable driver from AMD installed.
|
|
|
|
(fglxr must be installed and initialized)
|
|
|
|
|
|
|
|
http://support.amd.com/
|
|
|
|
|
2015-12-09 14:55:06 +00:00
|
|
|
The next thing to do is download all the third party libraries listed above and put these files into the *deps/tmp* directory.
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2015-12-09 14:55:06 +00:00
|
|
|
The following files are needed inside the *deps/tmp* directory:
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
ADL_SDK8.zip
|
|
|
|
R352-developer.zip
|
|
|
|
NVIDIA-Linux-x86_64-352.21.run
|
|
|
|
gdk_linux_amd64_352_55_release.run
|
2015-12-09 12:33:21 +00:00
|
|
|
AMD-APP-SDKInstaller-v3.0.130.135-GA-linux64.tar.bz2
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
# Building oclHashcat
|
|
|
|
First get a copy of **oclHashcat** repository
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ git clone https://github.com/hashcat/oclHashcat.git
|
|
|
|
```
|
2015-12-16 12:47:46 +00:00
|
|
|
Install the dependencies
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
$ cd oclHashcat
|
2015-12-16 12:47:46 +00:00
|
|
|
$ sudo ./tools/deps.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
Run "make all"
|
|
|
|
|
|
|
|
```sh
|
2015-12-04 14:47:52 +00:00
|
|
|
$ make all
|
|
|
|
```
|
|
|
|
|
|
|
|
Useful tricks:
|
|
|
|
- build only *Linux* binaries
|
|
|
|
```sh
|
|
|
|
$ make linux
|
|
|
|
```
|
|
|
|
- build only *Windows* binaries
|
|
|
|
```sh
|
|
|
|
$ make windows
|
|
|
|
```
|
|
|
|
|
|
|
|
=
|
|
|
|
Enjoy your fresh **oclHashcat** binaries ;)
|