--- lcrack-20040914.orig/debian/README.Debian +++ lcrack-20040914/debian/README.Debian @@ -0,0 +1,20 @@ +Note that upstream lcrack builds four binaries. As you can see below, three of +them are named in the way they don't reflect a relation with the main tool +"lcrack". That said, I've decided to rename them for Debian according to the +following table: + + ____________________________________ +|Original binary | Debian binary name| +|----------------------------------- | +| lcrack | lcrack | +| mktbl | lcrack_mktbl | +| mkword | lcrack_mkword | +| regex | lcrack_regex | + ------------------------------------ + +Manpages will be ready soon (help welcome). + +Enjoy! + + -- Tiago Bortoletto Vaz Tue, 17 Nov 2009 09:40:35 -0200 + --- lcrack-20040914.orig/debian/changelog +++ lcrack-20040914/debian/changelog @@ -0,0 +1,11 @@ +lcrack (20040914-1build1) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:31:39 +0000 + +lcrack (20040914-1) unstable; urgency=low + + * Initial Release. (Closes: #556602) + + -- Tiago Bortoletto Vaz Tue, 17 Nov 2009 09:40:35 -0200 --- lcrack-20040914.orig/debian/compat +++ lcrack-20040914/debian/compat @@ -0,0 +1 @@ +5 --- lcrack-20040914.orig/debian/control +++ lcrack-20040914/debian/control @@ -0,0 +1,31 @@ +Source: lcrack +Section: utils +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Tiago Bortoletto Vaz +Build-Depends: debhelper (>= 7), autotools-dev, automake +Standards-Version: 3.8.3 +Homepage: http://usuarios.lycos.es/reinob/ +Vcs-Browser: http://git.debian.org/git/users/tiago/lcrack.git +Vcs-Git: git://git.debian.org/users/tiago/lcrack.git + +Package: lcrack +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: A generic password cracker + Lepton's Crack is a generic password cracker, easily customizable with + a simple plug-in system. It can perform a dictionary-based (wordlist) + attack, as well as a brute-force (incremental) password scan. + . + For the incremental scan, the user can provide a regex-like expression + that will be enumerated, thus checking every possible combination. This + powerful feature effectively combines `shoulder-surfing' with standard + brute-forcing. + . + By default it comes with the following modules: + * md4 : standard MD4 hash + * md5 : standard MD5 hash + * nt4 : NT MD4/Unicode + * dom : Lotus Domino HTTP password + * sha1 : standard SHA-1 hash + * null : trivial 1-byte hash --- lcrack-20040914.orig/debian/copyright +++ lcrack-20040914/debian/copyright @@ -0,0 +1,40 @@ +Name: lcrack +Source: http://usuarios.lycos.es/reinob/ + +Files: * +Copyright: 2002, Bernardo Reino + Miguel Dilaj +X-Contributors: Jeff Fay + Burcin Erocal + Piero Bruneti + Matteo Bruneti + +License: GPL-2 + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; version 2 + of the License. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: debian/* +Copyright: 2009, Tiago Bortoletto Vaz +License: GPL-2+ + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: md4.c +Copyright: 1997-1998, Andrew Tridgell +License: LGPL-2+ + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. --- lcrack-20040914.orig/debian/docs +++ lcrack-20040914/debian/docs @@ -0,0 +1,3 @@ +README +AUTHORS +CREDITS --- lcrack-20040914.orig/debian/rules +++ lcrack-20040914/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +clean: + dh $@ + rm -f build-stamp + +build: build-stamp +build-stamp: + dh build --before configure + dh_auto_configure + dh build --after configure + touch $@ + dh_testdir + +install: build + dh $@ + mkdir -p $(CURDIR)/debian/lcrack/usr/bin/ + cp lcrack ${CURDIR}/debian/lcrack/usr/bin/ + cp mktbl ${CURDIR}/debian/lcrack/usr/bin/lcrack_mktbl + cp mkword ${CURDIR}/debian/lcrack/usr/bin/lcrack_mkword + cp regex ${CURDIR}/debian/lcrack/usr/bin/lcrack_regex + chmod 0755 ${CURDIR}/debian/lcrack/usr/bin/* + +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs CHANGES + dh_installdocs + dh_lintian + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: + +binary: binary-arch + +.PHONY: clean build install binary binary-arch binary-indep --- lcrack-20040914.orig/debian/watch +++ lcrack-20040914/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://usuarios.lycos.es/reinob/lcrack/lcrack-(.+)\.tar\.gz