[Forensics-changes] [bruteforce-salted-openssl] 02/02: Import Debian changes 1.4.0-1

Joao Eriberto Mota Filho eriberto at moszumanska.debian.org
Wed Jul 26 13:49:53 UTC 2017


This is an automated email from the git hooks/post-receive script.

eriberto pushed a commit to branch debian
in repository bruteforce-salted-openssl.

commit 63cc333fa671689d55733683651bc7389794d869
Merge: 091d72f 7a41b1e
Author: Joao Eriberto Mota Filho <eriberto at debian.org>
Date:   Mon Jul 24 11:58:30 2017 -0300

    Import Debian changes 1.4.0-1
    
    bruteforce-salted-openssl (1.4.0-1) unstable; urgency=medium
    
      * New upstream release.
      * debian/control: bumped Standards-Version to 4.0.0.
      * debian/copyright: updated the upstream and packaging copyright years.
      * debian/rules: removed no longer needed addon '--with autoreconf'.

 AUTHORS                                            |    2 +-
 ChangeLog                                          |    5 +
 INSTALL                                            |  320 +++--
 NEWS                                               |    3 +
 README                                             |   28 +-
 configure.ac                                       |   10 +-
 .../bruteforce-salted-openssl-1.4.0.ebuild         |   30 +
 debian/changelog                                   |    9 +
 debian/control                                     |    4 +-
 debian/copyright                                   |    4 +-
 debian/rules                                       |    2 +-
 doc/bruteforce-salted-openssl.1                    |   40 +-
 src/bruteforce-salted-openssl.c                    | 1493 +++++++++++---------
 src/version.h                                      |    4 +-
 14 files changed, 1064 insertions(+), 890 deletions(-)

diff --cc debian/changelog
index 191dbfa,0000000..0a2cad2
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,18 -1,0 +1,27 @@@
++bruteforce-salted-openssl (1.4.0-1) unstable; urgency=medium
++
++  * New upstream release.
++  * debian/control: bumped Standards-Version to 4.0.0.
++  * debian/copyright: updated the upstream and packaging copyright years.
++  * debian/rules: removed no longer needed addon '--with autoreconf'.
++
++ -- Joao Eriberto Mota Filho <eriberto at debian.org>  Mon, 24 Jul 2017 11:58:30 -0300
++
 +bruteforce-salted-openssl (1.3.3-1) unstable; urgency=medium
 +
 +  * New upstream release.
 +
 + -- Joao Eriberto Mota Filho <eriberto at debian.org>  Sun, 04 Dec 2016 19:20:32 -0200
 +
 +bruteforce-salted-openssl (1.3.2-2) unstable; urgency=medium
 +
 +  * Bump DH level to 10.
 +  * debian/control: pointed the Vcs-* fields to right place.
 +
 + -- Joao Eriberto Mota Filho <eriberto at debian.org>  Tue, 27 Sep 2016 10:20:07 -0300
 +
 +bruteforce-salted-openssl (1.3.2-1) unstable; urgency=medium
 +
 +  * Initial release (Closes: #838848)
 +
 + -- Joao Eriberto Mota Filho <eriberto at debian.org>  Mon, 26 Sep 2016 10:10:02 -0300
diff --cc debian/control
index 4f04ad6,0000000..789e65a
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,47 -1,0 +1,47 @@@
 +Source: bruteforce-salted-openssl
 +Section: utils
 +Priority: optional
 +Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
 +Uploaders: Joao Eriberto Mota Filho <eriberto at debian.org>
- Build-Depends: debhelper (>= 10), dh-autoreconf, libssl-dev
- Standards-Version: 3.9.8
++Build-Depends: debhelper (>= 10), libssl-dev
++Standards-Version: 4.0.0
 +Homepage: https://github.com/glv2/bruteforce-salted-openssl
 +Vcs-Git: https://anonscm.debian.org/git/forensics/bruteforce-salted-openssl.git
 +Vcs-Browser: https://anonscm.debian.org/git/forensics/bruteforce-salted-openssl.git
 +
 +Package: bruteforce-salted-openssl
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: try to find the passphrase for files encrypted with OpenSSL
 + bruteforce-salted-openssl try to find the passphrase or password of a file
 + that was encrypted with the openssl command. It can be used in two ways:
 + .
 +    - Try all possible passwords given a charset.
 +    - Try all passwords in a file (dictionary).
 + .
 + bruteforce-salted-openssl have the following features:
 + .
 +    - You can specify the number of threads to use when cracking a file.
 +    - The program should be able to use all the digests and symmetric ciphers
 +      available with the OpenSSL libraries installed on your system.
 +    - Sending a USR1 signal to a running bruteforce-salted-openssl process
 +      makes it print progress and continue.
 +    - There are an exhaustive mode and a dictionary mode.
 + .
 + In the exhaustive mode the program tries to decrypt the file by trying all
 + possible passwords. It is especially useful if you know something about the
 + password (i.e. you forgot a part of your password but still remember most of
 + it). Finding the password of the file without knowing anything about it would
 + take way too much time (unless the password is really short and/or weak).
 + There are some command line options to specify:
 + .
 +    - The minimum password length to try.
 +    - The maximum password length to try.
 +    - The beginning of the password.
 +    - The end of the password.
 +    - The character set to use (among the characters of the current locale).
 + .
 + In dictionary mode the program tries to decrypt the file by trying all the
 + passwords contained in a file. The file must have one password per line.
 + .
 + This package is useful for security, pentests and forensics investigations.
diff --cc debian/copyright
index 00644d1,0000000..a7ce5f8
mode 100644,000000..100644
--- a/debian/copyright
+++ b/debian/copyright
@@@ -1,83 -1,0 +1,83 @@@
 +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 +Upstream-Name: bruteforce-salted-openssl
 +Source: https://github.com/glv2/bruteforce-salted-openssl
 +
 +Files: *
- Copyright: 2014-2016 Guillaume LE VAILLANT <guillaume.le.vaillant at openmailbox.org>
++Copyright: 2014-2017 Guillaume LE VAILLANT <guillaume.le.vaillant at openmailbox.org>
 +License: GPL-3+ with OpenSSL exception
 +
 +Files: contrib/gentoo/app-crypt/bruteforce-salted-openssl/*
 +Copyright: 2014-2016 Guillaume LE VAILLANT <guillaume.le.vaillant at openmailbox.org>
 +License: GPL-3
 +
 +Files: debian/*
- Copyright: 2016 Joao Eriberto Mota Filho <eriberto at debian.org>
++Copyright: 2016-2017 Joao Eriberto Mota Filho <eriberto at debian.org>
 +License: BSD-3-Clause
 +
 +License: GPL-3+ with OpenSSL exception
 + 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, either version 3 of the License, or
 + (at your option) any later version.
 + .
 + Additional permission under GNU GPL version 3 section 7:
 + .
 + If you modify this program, or any covered work, by linking or combining
 + it with the OpenSSL library (or a modified version of that library),
 + containing parts covered by the terms of the OpenSSL license, the licensors
 + of this program grant you additional permission to convey the resulting work.
 + Corresponding source for a non-source form of such a combination shall include
 + the source code for the parts of the OpenSSL library used as well as that of
 + the covered work.
 + .
 + This package 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, see <https://www.gnu.org/licenses/>.
 + .
 + On Debian systems, the complete text of the GNU General
 + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
 +
 +License: GPL-3
 + 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 3 of the License.
 + .
 + This package 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, see <https://www.gnu.org/licenses/>.
 + .
 + On Debian systems, the complete text of the GNU General
 + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
 +
 +License: BSD-3-Clause
 + Redistribution and use in source and binary forms, with or without
 + modification, are permitted provided that the following conditions
 + are met:
 + 1. Redistributions of source code must retain the above copyright
 +    notice, this list of conditions and the following disclaimer.
 + 2. Redistributions in binary form must reproduce the above copyright
 +    notice, this list of conditions and the following disclaimer in the
 +    documentation and/or other materials provided with the distribution.
 + 3. Neither the name of the University nor the names of its contributors
 +    may be used to endorse or promote products derived from this software
 +    without specific prior written permission.
 + .
 + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 + A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE HOLDERS OR
 + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --cc debian/rules
index 826087f,0000000..b114ce6
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,7 -1,0 +1,7 @@@
 +#!/usr/bin/make -f
 +#export DH_VERBOSE = 1
 +
 +export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 +
 +%:
- 	dh $@ --with autoreconf
++	dh $@

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/bruteforce-salted-openssl.git



More information about the forensics-changes mailing list