Accepting request 25243 from security
Copy from security/john based on submit request 25243 from user lrupp OBS-URL: https://build.opensuse.org/request/show/25243 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/john?expand=0&rev=4
This commit is contained in:
parent
0776afe5d3
commit
13b82294af
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a37ebb8e5d0d331e90c33bb34e5ed4ec5754295222c9a6b3f4a8fb8d63528034
|
|
||||||
size 656511
|
|
3
john-1.7.3.4.tar.bz2
Normal file
3
john-1.7.3.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:326d75156eae59f55dfceddd4f1077b68a7ef7cb79b66bc47d6f17e73341660e
|
||||||
|
size 657123
|
12
john.changes
12
john.changes
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 28 23:59:28 CEST 2009 - lrupp@suse.de
|
||||||
|
|
||||||
|
- update to 1.7.3.4:
|
||||||
|
+ "make check" has been implemented
|
||||||
|
+ The "--test" option will now take an optional argument - the
|
||||||
|
duration of each benchmark in seconds
|
||||||
|
+ Some very minor bugs that did not affect normal operation have
|
||||||
|
been fixed.
|
||||||
|
+ Some unimportant compiler warnings have been fixed, a source code
|
||||||
|
comment has been made more verbose and more complete.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 9 19:48:06 CEST 2008 - lrupp@suse.de
|
Tue Sep 9 19:48:06 CEST 2008 - lrupp@suse.de
|
||||||
|
|
||||||
|
124
john.spec
124
john.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package john (Version 1.7.3.1)
|
# spec file for package john (Version 1.7.3.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,10 +20,9 @@
|
|||||||
|
|
||||||
Name: john
|
Name: john
|
||||||
Url: http://www.openwall.com/john/
|
Url: http://www.openwall.com/john/
|
||||||
License: GPL v2 or later
|
License: GPLv2+
|
||||||
Group: Productivity/Security
|
Group: Productivity/Security
|
||||||
AutoReqProv: on
|
Version: 1.7.3.4
|
||||||
Version: 1.7.3.1
|
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Detects Weak Passwords
|
Summary: Detects Weak Passwords
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
@ -88,7 +87,12 @@ if test -z "$TARGET"; then
|
|||||||
fi
|
fi
|
||||||
export TARGET
|
export TARGET
|
||||||
pushd src
|
pushd src
|
||||||
make $TARGET %{cflags}
|
make clean $TARGET %{cflags}
|
||||||
|
popd
|
||||||
|
|
||||||
|
%check
|
||||||
|
pushd src
|
||||||
|
make check
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -101,7 +105,7 @@ install -m 755 -p run/mailer %buildroot%_bindir/
|
|||||||
install -m 644 -p %{SOURCE2} %buildroot%_mandir/man8/
|
install -m 644 -p %{SOURCE2} %buildroot%_mandir/man8/
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
#rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@ -116,109 +120,3 @@ install -m 644 -p %{SOURCE2} %buildroot%_mandir/man8/
|
|||||||
%config (noreplace) %_sysconfdir/john.conf
|
%config (noreplace) %_sysconfdir/john.conf
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Sep 09 2008 lrupp@suse.de
|
|
||||||
- update to 1.7.3.1:
|
|
||||||
+ Two Blowfish-based crypt(3) hashes may now be computed in
|
|
||||||
parallel for much better performance on modern multi-issue CPUs
|
|
||||||
with a sufficient number of registers (e.g., x86_64).
|
|
||||||
+ New make targets: macosx-universal, macosx-x86-64, solaris-x86-64-cc,
|
|
||||||
solaris-x86-64-gcc, solaris-x86-sse2-cc, solaris-x86-sse2-gcc,
|
|
||||||
solaris-x86-mmx-cc, solaris-x86-mmx-gcc, solaris-x86-any-cc,
|
|
||||||
linux-ia64;
|
|
||||||
+ Minor bug fixes.
|
|
||||||
+ "DumbForce" and "KnownForce" external mode samples have been
|
|
||||||
added to the default john.conf.
|
|
||||||
- removed the outdated patchset (needs to be re-integrated)
|
|
||||||
* Mon Sep 25 2006 lrupp@suse.de
|
|
||||||
- remove double cflags definition
|
|
||||||
* Fri Jun 09 2006 lrupp@suse.de
|
|
||||||
- new version 1.7.2
|
|
||||||
- moved john.conf to /etc
|
|
||||||
- moved john binary to /usr/bin
|
|
||||||
- enabled some opt flags (must be tested)
|
|
||||||
* Wed May 17 2006 schwab@suse.de
|
|
||||||
- Use RPM_OPT_FLAGS.
|
|
||||||
- Don't strip binaries.
|
|
||||||
- Fix last change.
|
|
||||||
* Mon Mar 27 2006 lrupp@suse.de
|
|
||||||
- use CFLAGS instead of params.h.patch
|
|
||||||
* Fri Mar 24 2006 lrupp@suse.de
|
|
||||||
- charset.tar.bz2 is included upstream
|
|
||||||
- reduce build requires
|
|
||||||
- new version 1.7.0.2
|
|
||||||
* Tue Mar 14 2006 lrupp@suse.de
|
|
||||||
- new version 1.7.0.1
|
|
||||||
- adapt patches to new version
|
|
||||||
- disabled some compiler fixes
|
|
||||||
- removed RPM_OPT_FLAGS => performance issue atm
|
|
||||||
* Mon Mar 13 2006 lrupp@suse.de
|
|
||||||
- split off worlists to an extra package
|
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
|
||||||
- converted neededforbuild to BuildRequires
|
|
||||||
* Sun Jan 15 2006 schwab@suse.de
|
|
||||||
- Don't strip binaries.
|
|
||||||
- Fix ia64 configuration.
|
|
||||||
* Mon Dec 19 2005 aosthof@suse.de
|
|
||||||
- Fixed .spec file for all architectures besides x86
|
|
||||||
- Added targets for ia64 / s390 / s390x
|
|
||||||
* Fri Nov 11 2005 kukuk@suse.de
|
|
||||||
- Fix compiling with glibc 2.4 snapshot
|
|
||||||
* Wed Sep 14 2005 lrupp@suse.de
|
|
||||||
- new version 1.6.39
|
|
||||||
- use noreplace for config
|
|
||||||
* Wed Jun 15 2005 meissner@suse.de
|
|
||||||
- use RPM_OPT_FLAGS.
|
|
||||||
* Mon Jun 06 2005 ro@suse.de
|
|
||||||
- added directory to filelist
|
|
||||||
* Fri Jun 03 2005 lrupp@suse.de
|
|
||||||
- changed manpage
|
|
||||||
- added patches from ftp.openwall.com again:
|
|
||||||
+ blowfish (Eggdrop blowfish)
|
|
||||||
+ md5 (work with md5 hash of apache; faster)
|
|
||||||
+ rawMD5
|
|
||||||
+ MySQL (about 75%% faster than mysqlpassword.c)
|
|
||||||
- enabled global mode in params.g again
|
|
||||||
* Mon May 30 2005 lrupp@suse.de
|
|
||||||
- added "all" wordlist from openwall
|
|
||||||
- enabled arch-support for sparc and ppc
|
|
||||||
- added old doc-files from 1.6
|
|
||||||
* Wed May 25 2005 lrupp@suse.de
|
|
||||||
- new package, version 1.6.38
|
|
||||||
* Tue Jan 25 2005 lrupp@suse.de
|
|
||||||
- added some wordlists to get more options ;-)
|
|
||||||
- added patches from ftp.openwall.com to provide support for
|
|
||||||
additiional password formats:
|
|
||||||
+ blowfish
|
|
||||||
+ md5
|
|
||||||
+ rawMD5
|
|
||||||
* Mon Aug 02 2004 lrupp@suse.de
|
|
||||||
- - fixed BugTraq-ID: 43287
|
|
||||||
- enabled global-mode in params.h
|
|
||||||
- fix misspelling in manpage
|
|
||||||
* Fri Feb 27 2004 lrupp@suse.de
|
|
||||||
- use devel version: no segfault on x86-64
|
|
||||||
- included documentation and charsets from old version
|
|
||||||
- renamed new john.conf in john.ini
|
|
||||||
- created a short manpage for john
|
|
||||||
- created symlink /var/lib/john/john
|
|
||||||
* Mon Nov 10 2003 ro@suse.de
|
|
||||||
- use defattr
|
|
||||||
* Fri Nov 07 2003 lrupp@suse.de
|
|
||||||
- added '# norootforbuild' in the spec-file
|
|
||||||
* Thu Jun 12 2003 poeml@suse.de
|
|
||||||
- add /var/lib/john to the filelist
|
|
||||||
* Fri May 23 2003 coolo@suse.de
|
|
||||||
- use BuildRoot
|
|
||||||
* Tue Sep 17 2002 ro@suse.de
|
|
||||||
- removed bogus self-provides
|
|
||||||
* Fri Jul 05 2002 kukuk@suse.de
|
|
||||||
- use %%ix86
|
|
||||||
* Thu Mar 29 2001 uli@suse.de
|
|
||||||
- fixed for gcc >2.95
|
|
||||||
- replaced config.guess stuff with %%ifarch
|
|
||||||
* Wed Mar 01 2000 werner@suse.de
|
|
||||||
- Fix config.guess selection
|
|
||||||
* Mon Sep 13 1999 bs@suse.de
|
|
||||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
|
||||||
* Thu Mar 18 1999 uli@suse.de
|
|
||||||
- new package, version 1.6
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user