Skip to content

Commit

Permalink
Fix copyright header and additions to README.
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnok committed Aug 24, 2015
1 parent 0b10e33 commit 5296cc7
Show file tree
Hide file tree
Showing 28 changed files with 125 additions and 77 deletions.
22 changes: 13 additions & 9 deletions README
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
Overview
========

Johnny is a cross-platform GUI frontend for John the Ripper, the popular
password cracker, written in C++ using the Qt framework.
Johnny the open source cross-platform GUI frontend for John the Ripper, the
popular password cracker, written in C++ using the Qt framework.

Johnny's aim is to automate and simplify the password cracking routines as well
as add extra functionality like session management, using the immense capabilities
and features offered by John the Ripper.
Johnny's aim is to automate and simplify the password cracking routine on the
Desktop as well as add extra functionality like session management and easy
hash/password management, on top of the immense capabilities and features
offered by John the Ripper.

The application uses John The Ripper for the actual work, thus it needs to be
installed on your system. Official core version or the community-enhanced
version (jumbo) are both supported.
installed on your system. Official core (proper) version and the
community-enhanced version (jumbo) are both supported. The latter exposes more
functionality like extra cracking modes and hash types support.

To download official binaries and find more about Johnny visit:
To download official binary redistributables and find more about Johnny visit:
http://openwall.info/wiki/john/johnny

For detailed licensing info see COPYING.
Johnny is released under the BSD 2-clause license.

For detailed licensing info see COPYING dist-file.
For version history see CHANGELOG.
For building and install instructions see INSTALL.
10 changes: 6 additions & 4 deletions src/hashsortfilterproxymodel.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "hashsortfilterproxymodel.h"
Expand Down Expand Up @@ -75,8 +77,8 @@ bool HashSortFilterProxyModel::filterAcceptsRow(int sourceRow,
while ((isAccepted == false) && (currentColumn < m_filteredColumns.count())) {
index = sourceModel()->index(sourceRow, m_filteredColumns[currentColumn], sourceParent);
if (sourceModel()->data(index).toString().contains(filterRegExp())) {
isAccepted = true;
}
isAccepted = true;
}
currentColumn++;
}
return isAccepted;
Expand Down
6 changes: 4 additions & 2 deletions src/hashsortfilterproxymodel.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef HASHSORTFILTERPROXYMODEL_H
Expand Down
6 changes: 4 additions & 2 deletions src/hashtypechecker.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "hashtypechecker.h"
Expand Down
6 changes: 4 additions & 2 deletions src/hashtypechecker.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef HASHTYPECHECKER_H
Expand Down
6 changes: 4 additions & 2 deletions src/johnattack.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "johnattack.h"
Expand Down
6 changes: 4 additions & 2 deletions src/johnattack.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef JOHNATTACK_H
Expand Down
7 changes: 4 additions & 3 deletions src/johnhandler.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "johnhandler.h"

#include <QMetaType>
Expand Down
6 changes: 4 additions & 2 deletions src/johnhandler.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef JOHNHANDLER_H
Expand Down
7 changes: 4 additions & 3 deletions src/johnprocess.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "johnprocess.h"
Expand Down
9 changes: 5 additions & 4 deletions src/johnprocess.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef JOHNPROCESS_H
Expand All @@ -19,7 +20,7 @@
class JohnProcess : public QProcess
{
Q_OBJECT

public:
JohnProcess();
~JohnProcess();
Expand Down
6 changes: 4 additions & 2 deletions src/johnsession.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "johnsession.h"
Expand Down
6 changes: 4 additions & 2 deletions src/johnsession.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef JOHNSESSION_H
Expand Down
7 changes: 4 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright (c) 2011, 2015 Shinnok <raydenxy at gmail.com>.
* Copyright (c) 2011,2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>. See LICENSE.
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "mainwindow.h"
Expand Down
8 changes: 4 additions & 4 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* Copyright (c) 2011, 2015 Shinnok <admin at shinnok.com>.
* Copyright (c) 2011, 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>.
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "mainwindow.h"
Expand Down
8 changes: 4 additions & 4 deletions src/mainwindow.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* Copyright (c) 2011, 2015 Shinnok <admin at shinnok.com>.
* Copyright (c) 2011, 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>.
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef MAINWINDOW_H
Expand Down
6 changes: 4 additions & 2 deletions src/menu.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "menu.h"
Expand Down
8 changes: 5 additions & 3 deletions src/menu.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef MENU_H
Expand All @@ -11,7 +13,7 @@
class Menu : public QMenu
{
Q_OBJECT

public:
Menu(QWidget *parent = 0);
~Menu();
Expand Down
6 changes: 4 additions & 2 deletions src/openotherformatfiledialog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "openotherformatfiledialog.h"
Expand Down
6 changes: 4 additions & 2 deletions src/openotherformatfiledialog.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef OPENOTHERFORMATFILEDIALOG_H
Expand Down
7 changes: 4 additions & 3 deletions src/passwordfilemodel.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright (c) 2011,2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>.
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "passwordfilemodel.h"
Expand Down
7 changes: 4 additions & 3 deletions src/passwordfilemodel.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright (c) 2011, 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>.
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef PASSWORDFILEMODEL_H
Expand Down
6 changes: 4 additions & 2 deletions src/tabwidget.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "tabwidget.h"
Expand Down
6 changes: 4 additions & 2 deletions src/tabwidget.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef TABWIDGET_H
Expand Down
6 changes: 4 additions & 2 deletions src/textlabel.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "textlabel.h"
Expand Down
6 changes: 4 additions & 2 deletions src/textlabel.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Shinnok <admin at shinnok.com>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef TEXTLABEL_H
Expand Down
6 changes: 4 additions & 2 deletions src/translator.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#include "translator.h"
Expand Down
6 changes: 4 additions & 2 deletions src/translator.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>.
* See LICENSE for details.
* Copyright (c) 2011-2015 Shinnok <admin at shinnok.com>
* Parts Copyright (c) 2012 Aleksey Cherepanov <aleksey.4erepanov@gmail.com>
* Parts Copyright (c) 2015 Mathieu Laprise <mathieu.laprise@polymtl.ca>
* See LICENSE dist-file for details.
*/

#ifndef TRANSLATOR_H
Expand Down

0 comments on commit 5296cc7

Please sign in to comment.