From b9e1a61efa79b15f93b70c44fc4f6112f01dda53 Mon Sep 17 00:00:00 2001 From: Rolf Date: Fri, 29 Mar 2019 16:39:41 +0000 Subject: [PATCH 1/2] Update BUILD_MSYS2.md --- BUILD_MSYS2.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD_MSYS2.md b/BUILD_MSYS2.md index e2e3b57e2..d3b43b9ba 100644 --- a/BUILD_MSYS2.md +++ b/BUILD_MSYS2.md @@ -6,7 +6,7 @@ Tested on a Windows 7 SP1 x64 machine. Go to https://www.msys2.org/ and follow the instructions on the main page (steps 1 to 7). -Install additional dependencies required to compile hashcat by running the following commands: +Install additional dependencies required to compile hashcat by running the following commands ``` $ pacman -S git @@ -23,7 +23,7 @@ Once all that is done, type the following command to copy the latest master revi $ git clone https://github.com/hashcat/hashcat.git ``` -Switch to the newly created folder by runnig +Switch to the newly created folder by running ``` $ cd hashcat @@ -35,7 +35,7 @@ Now type "make" to start compiling hashcat $ make ``` -The process may take a while, please be patient. Once it's finished, run hashcat by typing "./hashcat.exe". +The process may take a while, please be patient. Once it's finished, run hashcat by typing "./hashcat.exe" ``` $ ./hashcat.exe From 58f1db2aea94f7519f66d43d44854f2e9763f69f Mon Sep 17 00:00:00 2001 From: Rolf Date: Fri, 29 Mar 2019 16:43:37 +0000 Subject: [PATCH 2/2] Create BUILD_CYGWIN.MD --- BUILD_CYGWIN.MD | 79 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 BUILD_CYGWIN.MD diff --git a/BUILD_CYGWIN.MD b/BUILD_CYGWIN.MD new file mode 100644 index 000000000..c6e4ec032 --- /dev/null +++ b/BUILD_CYGWIN.MD @@ -0,0 +1,79 @@ +# Compiling hashcat with Cygwin. + + + +Tested on a Windows 7 SP1 x64 machine. + + + +### Installation ### + + + +Go to https://www.cygwin.com , get the setup-x86_64 file and follow the instructions on the website. + + + +Make sure to install additional dependencies necessary for hashcat compilation by selecting the following packages during cygwin installation + + + +``` +libiconv-devel +gcc-core +make +git +``` + + + +### Building ### + + + +Once all that is done, open the cygwin bash (cygwin\cygwin.bat) and type the following command to copy the latest master revision of hashcat repository into cygwin\home\username\hashcat + + + +``` +$ git clone https://github.com/hashcat/hashcat.git +``` + + + +Switch to the newly created folder by running + + + +``` +$ cd hashcat +``` + + + +Now type "make" to start compiling hashcat + + + +``` +$ make +``` + + + +The process may take a while, please be patient. Once it's finished, run hashcat by typing "./hashcat.exe" + + + +``` +$ ./hashcat.exe +``` + + + +### Notes ### + + + +While hashcat will run fine from cygwin bash, running it from a windows shell will require cygwin1.dll and cygiconv-2.dll to be in the same folder with hashcat.exe (the files can be found in cygwin\bin folder). +