forked from openwall/johnny
-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
41 lines (34 loc) · 1.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
About Johnny
============
Johnny is a GUI for John the Ripper written in C++ using the Qt
framework.
You can find more about Johnny by visiting:
http://openwall.info/wiki/john/johnny
Compiling on Unix/Linux and Windows
-----------------------------------
Prerequisites:
* Qt 4.6.3 or later (may or may not work on earlier versions too)
* On Linux you have two choices for installing the Qt SDK:
1. Install Qt using your distribution's package manager. The
minimum libraries you need are libqt4-core, libqt4-gui and
libqt4-dev. Besides that you will need qt4-qmake for qmake
and g++/libstdc++5, though these should be automatically
installed as dependencies to libqt*.
For e.g. on debian you can:
apt-get install libqt4-core libqt4-gui libqt4-dev
and say yes to the dependencies and you get everything
you need.
2. Install the latest official Qt SDK available at:
http://qt.nokia.com/downloads/
* On Windows:
- MinGW 4.4 or later, Visual Studio 2008 or later
- jom
The Qt SDK provides you with most of the required software.
Grab the official Qt SDK from http://qt.nokia.com/downloads/
- open an instance of Qt SDK Command Prompt
Building:
cd johnny/
qmake
make (or mingw32-make or nmake or jom, depending on your platform)
To clean the build directory:
make clean && make distclean