Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

john-1.9.0-bp154.1.73 RPM for ppc64le

From OpenSuSE Leap 15.4 for ppc64le

Name: john Distribution: SUSE Linux Enterprise 15 SP4
Version: 1.9.0 Vendor: openSUSE
Release: bp154.1.73 Build date: Thu May 12 03:20:17 2022
Group: Productivity/Security Build host: obs-power9-07
Size: 130580026 Source RPM: john-1.9.0-bp154.1.73.src.rpm
Packager: https://bugs.opensuse.org
Url: https://www.openwall.com/john/
Summary: Utility to detect weak passwords
John the Ripper is a password cracker (password security auditing
tool). Its primary purpose is to detect weak passwords, and a
number of other hash types are supported to that end.

Provides

Requires

License

GPL-2.0-or-later

Changelog

* Tue Oct 12 2021 Sarah Kriesch <sarah.kriesch@opensuse.org>
  - Upstream patch for Big Endians in s390x-upstream.patch
  - Include johnswap.h in opencl_7z_fmt_plug.c with s390x.patch
* Tue Jun 08 2021 simmphonie@opensuse.org
  - add john-1.9.0-jumbo-gcc11.patch to fix alignment compile errors
    on GCC 11 gh#4611
* Sat Mar 13 2021 Dirk Müller <dmueller@suse.com>
  - enable ztex support (fix usb dependency):
    add john-1.9.0-jumbo-gcc10.patch to fix fcommon related build failures
* Tue Oct 06 2020 simmphonie@opensuse.org
  - Add cl-device.patch to handle systems that already defined
    CL_DEVICE_TOPOLOGY_AMD  gh#4331
* Fri Jun 12 2020 Martin Pluskal <mpluskal@suse.com>
  - Fix building with gcc10
  - Small cleanup of spec file with spec-cleaner
* Sat Oct 12 2019 simmphonie@opensuse.org
  - Remove fdupes check (build fails with debug packages)
* Tue Sep 10 2019 simmphonie@opensuse.org
  - Fixed build for ARM and PPC. CPU with AVX support at least is
    only available for x86_64 architecture now.
* Tue Sep 10 2019 Jan Engelhardt <jengelh@inai.de>
  - Use noun phrase in summary. Reword description to avoid
    unspecific "Unix password".
* Mon Sep 09 2019 simmphonie@opensuse.org
  - remove setBadness from rpmlintrc
* Mon Sep 02 2019 Christophe Giboudeaux <christophe@krop.fr>
  - Fix the sources URL. Use https.
* Thu Jun 06 2019 simmphonie@opensuse.org
  - spec-file changes
    + add jumbo scripts and remove "env" from shebang
    + remove patches. In upstream already:
      + john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch
      + ppc64le.patch
      + reproducible.patch
    + use configure to find dependenices and CPU architecture
      + openCL support
      + multicore support with fork option
      + require CPU with AVX support at least
    + root rights are no longer required
  - update to 1.9.0
    + Increased the interleaving for bcrypt on x86-64 from 2x to 3x for a major
      speedup on CPUs without SMT.  Unfortunately, this sometimes results in a minor
      performance regression when running multiple threads on CPUs with SMT.
    + Recognize the $2b$ bcrypt prefix.
    + In the generic crypt(3) format, detect descrypt with valid vs. invalid salts
      as separate id's for our heuristics on supported hash types.
    + Introduced a number of optimizations for faster handling of large password
      hash files, including loading, cracking, and "--show".  Some of these use more
      memory than before, yet in a more efficient manner.
    + Benchmark using all-different candidate passwords of length 7 by default.
    + Dropped undocumented special handling of "Mc" in 'c' and 'C' rule commands.
    + Dropped undocumented limitation of the 'M' and 'Q' rule commands where they
      would sometimes memorize/check only up to the current hash type's length limit
      yet this optimization wouldn't necessarily be transparent (e.g., if a later
      command would extract a substring from above the hash type's length limit and
      bring it to within the limit).
    + Implemented special-case handling of repeated rule commands '$', '^', '[',
      ']', '{', and '}', as well as faster handling of the 'D' command.
    + When built with "--fork" support, disallow session names with all-digit
      suffixes since these clash with those produced by "--fork".
    + Forward SIGTERM to --fork'ed children.
    + Set stdout to line buffered (rather than potentially fully buffered), except
      for "--stdout", "--show", and auxiliary programs such as "unshadow".
    + On Windows, restore normal processing of Ctrl-C in case our parent (such as
      Johnny the GUI) had disabled it.
    + Added linux-x86*-avx512 and linux-x86*-avx2 make targets, which use
      respectively AVX-512 and AVX2 for bitslice DES.
    + Added linux-mic make target for Intel MIC (first generation Xeon Phi, aka
      Knights Corner), which uses its 512-bit SIMD intrinsics for bitslice DES.
      (For second generation Xeon Phi, aka Knights Landing, use linux-x86-64-avx512.)
    + Added linux-arm64le, linux-arm32le-neon, and linux-arm32le make targets.
      (The first two of these make use of ASIMD or NEON for bitslice DES.)
    + Added linux-sparc64 make target.
    + Made a minor optimization to MMX and SSE2 assembly code for LM hash.
    + Dropped Ultrix and SCO support.
    + Don't probe for alternate config file names (like john.ini when on Unix).
    + "DokuWiki" external mode sample has been added to the default john.conf.
    + Fixed operator precedence in the external mode compiler to be the same as C.
    + Fixed an out of bounds write bug in the external mode virtual machine.
    + Fixed a bug introduced in version 1.7.4 in the wordlist rules engine, where
      some sequences of rule commands could overflow a word buffer.
    + Fixed a bug where unaligned access SSE/AVX instructions would unnecessarily
      be generated by GCC 4.6+ in the bitslice DES code in non-OpenMP builds.
    + Fixed a bug where "Warning: no OpenMP support for this hash type" could be
      printed in "--stdout" mode.
    + Made assorted other bugfixes, portability and documentation enhancements.
  - version 1.7.9.8
    + Revised the incremental mode to let the current character counts grow for
      each character position independently, with the aim to improve efficiency in
      terms of successful guesses per candidate passwords tested.
    + Revised the pre-defined incremental modes, as well as external mode filters
      that are used to generate .chr files.
    + Added makechr, a script to (re-)generate .chr files.
    + Enhanced the status reporting to include four distinct speed metrics (g/s,
      p/s, c/s, and C/s).
    + Added the "--fork=N" and "--node=MIN[-MAX]/TOTAL" options for trivial
      parallel and distributed processing.
    + In the external mode compiler, treat character literals as unsigned.
    + Renamed many of the formats.
    + Updated the documentation.
    + Relaxed the license for many source files to cut-down BSD.
    + Relaxed the license for John the Ripper as a whole from GPLv2 (exact version)
      to GPLv2 or newer with optional OpenSSL and unRAR exceptions.
    + Assorted other changes have been made.
* Tue Mar 27 2018 dimstar@opensuse.org
  - Build against openSSL 1.0 until upstream catches up
    (boo#1078844).
* Sat May 27 2017 bwiedemann@suse.com
  - Add reproducible.patch to sort input files to make build reproducible
    (boo#1041090)
* Thu Dec 08 2016 meissner@suse.com
  - remove incorrect too large john.keyring ...
    The signature of these tarballs is currently with a key with MD5 hash,
    which is rejected by default.
* Wed Feb 17 2016 normand@linux.vnet.ibm.com
  - as follow on of previous "jumbo patch" need two powerpc changes:
    new john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch
    place ppc64le.patch after application of "jumbo patch" in spec
    allow to solve partially boo #940498  for ppc64le
    but still have 4 FAILED tests for ppc64 tracked upstream by
    http://www.openwall.com/lists/john-dev/2016/02/16/1
* Thu Jun 25 2015 astieger@suse.com
  - fix SLE 11 SP3 build
* Mon Dec 15 2014 lars@linux-schulserver.de
  - include "jumbo patch" into the build - special thanks to
    Mark Draheim for the specfile patch (closes bnc #839246)

Files

/etc/john.conf
/usr/bin/1password2john.py
/usr/bin/7z2john.pl
/usr/bin/DPAPImk2john.py
/usr/bin/adxcsouf2john.py
/usr/bin/aem2john.py
/usr/bin/aix2john.pl
/usr/bin/aix2john.py
/usr/bin/andotp2john.py
/usr/bin/androidbackup2john.py
/usr/bin/androidfde2john.py
/usr/bin/ansible2john.py
/usr/bin/apex2john.py
/usr/bin/applenotes2john.py
/usr/bin/aruba2john.py
/usr/bin/axcrypt2john.py
/usr/bin/base64conv
/usr/bin/bestcrypt2john.py
/usr/bin/bitcoin2john.py
/usr/bin/bitlocker2john
/usr/bin/bitshares2john.py
/usr/bin/bitwarden2john.py
/usr/bin/bks2john.py
/usr/bin/blockchain2john.py
/usr/bin/ccache2john.py
/usr/bin/cisco2john.pl
/usr/bin/codepage.pl
/usr/bin/cracf2john.py
/usr/bin/dashlane2john.py
/usr/bin/deepsound2john.py
/usr/bin/diskcryptor2john.py
/usr/bin/dmg2john
/usr/bin/dmg2john.py
/usr/bin/ecryptfs2john.py
/usr/bin/ejabberd2john.py
/usr/bin/electrum2john.py
/usr/bin/encfs2john.py
/usr/bin/enpass2john.py
/usr/bin/ethereum2john.py
/usr/bin/filezilla2john.py
/usr/bin/fuzz_option.pl
/usr/bin/geli2john.py
/usr/bin/gpg2john
/usr/bin/hccap2john
/usr/bin/hccapx2john.py
/usr/bin/hextoraw.pl
/usr/bin/htdigest2john.py
/usr/bin/ibmiscanner2john.py
/usr/bin/ikescan2john.py
/usr/bin/ios7tojohn.pl
/usr/bin/itunes_backup2john.pl
/usr/bin/iwork2john.py
/usr/bin/john
/usr/bin/kdcdump2john.py
/usr/bin/keepass2john
/usr/bin/keychain2john.py
/usr/bin/keyring2john.py
/usr/bin/keystore2john.py
/usr/bin/kirbi2john.py
/usr/bin/known_hosts2john.py
/usr/bin/krb2john.py
/usr/bin/kwallet2john.py
/usr/bin/lastpass2john.py
/usr/bin/ldif2john.pl
/usr/bin/leet.pl
/usr/bin/libreoffice2john.py
/usr/bin/lion2john-alt.pl
/usr/bin/lion2john.pl
/usr/bin/lotus2john.py
/usr/bin/luks2john.py
/usr/bin/mac2john-alt.py
/usr/bin/mac2john.py
/usr/bin/mailer
/usr/bin/mcafee_epo2john.py
/usr/bin/monero2john.py
/usr/bin/money2john.py
/usr/bin/mozilla2john.py
/usr/bin/multibit2john.py
/usr/bin/neo2john.py
/usr/bin/netntlm.pl
/usr/bin/netscreen.py
/usr/bin/office2john.py
/usr/bin/openbsd_softraid2john.py
/usr/bin/openssl2john.py
/usr/bin/padlock2john.py
/usr/bin/pass_gen.pl
/usr/bin/pcap2john.py
/usr/bin/pdf2john.pl
/usr/bin/pem2john.py
/usr/bin/pfx2john.py
/usr/bin/pgpdisk2john.py
/usr/bin/pgpsda2john.py
/usr/bin/pgpwde2john.py
/usr/bin/potcheck.pl
/usr/bin/prosody2john.py
/usr/bin/ps_token2john.py
/usr/bin/pse2john.py
/usr/bin/putty2john
/usr/bin/pwsafe2john.py
/usr/bin/racf2john
/usr/bin/radius2john.pl
/usr/bin/radius2john.py
/usr/bin/rar2john
/usr/bin/relbench
/usr/bin/rexgen2rules.pl
/usr/bin/rulestack.pl
/usr/bin/sap2john.pl
/usr/bin/sha-dump.pl
/usr/bin/sha-test.pl
/usr/bin/signal2john.py
/usr/bin/sipdump2john.py
/usr/bin/ssh2john.py
/usr/bin/sspr2john.py
/usr/bin/staroffice2john.py
/usr/bin/strip2john.py
/usr/bin/telegram2john.py
/usr/bin/tezos2john.py
/usr/bin/truecrypt2john.py
/usr/bin/uaf2john
/usr/bin/unafs
/usr/bin/undrop
/usr/bin/unique
/usr/bin/unrule.pl
/usr/bin/unshadow
/usr/bin/vdi2john.pl
/usr/bin/vmx2john.py
/usr/bin/vncpcap2john
/usr/bin/wpapcap2john
/usr/bin/zip2john
/usr/share/doc/packages/john
/usr/share/doc/packages/john/Auditing-Kerio-Connect.md
/usr/share/doc/packages/john/Auditing-Openfire.md
/usr/share/doc/packages/john/AxCrypt-Auditing-HOWTO.md
/usr/share/doc/packages/john/CHANGES
/usr/share/doc/packages/john/CHANGES-jumbo
/usr/share/doc/packages/john/CONFIG
/usr/share/doc/packages/john/CONTACT
/usr/share/doc/packages/john/COPYING
/usr/share/doc/packages/john/CRAM-MD5.txt
/usr/share/doc/packages/john/CREDITS
/usr/share/doc/packages/john/CREDITS-jumbo
/usr/share/doc/packages/john/DYNAMIC
/usr/share/doc/packages/john/DYNAMIC_COMPILER_FORMATS.md
/usr/share/doc/packages/john/DYNAMIC_EXPRESSIONS
/usr/share/doc/packages/john/DYNAMIC_SCRIPTING
/usr/share/doc/packages/john/DiskCryptor-HOWTO.md
/usr/share/doc/packages/john/ENCODINGS
/usr/share/doc/packages/john/EXAMPLES
/usr/share/doc/packages/john/EXTERNAL
/usr/share/doc/packages/john/FAQ
/usr/share/doc/packages/john/HDAA_README
/usr/share/doc/packages/john/INSTALL-FEDORA
/usr/share/doc/packages/john/INSTALL-UBUNTU
/usr/share/doc/packages/john/INSTALL-WINDOWS
/usr/share/doc/packages/john/Kerberos-Auditing-HOWTO.md
/usr/share/doc/packages/john/LICENSE
/usr/share/doc/packages/john/LICENSE.mpi
/usr/share/doc/packages/john/MARKOV
/usr/share/doc/packages/john/MASK
/usr/share/doc/packages/john/MODES
/usr/share/doc/packages/john/NETNTLM_README
/usr/share/doc/packages/john/NEWS
/usr/share/doc/packages/john/OFFICE
/usr/share/doc/packages/john/OPTIONS
/usr/share/doc/packages/john/PRINCE
/usr/share/doc/packages/john/README-DISTROS
/usr/share/doc/packages/john/README-MIC
/usr/share/doc/packages/john/README-OPENCL
/usr/share/doc/packages/john/README-PDF
/usr/share/doc/packages/john/README-PST
/usr/share/doc/packages/john/README-TACACS+
/usr/share/doc/packages/john/README-ZIP
/usr/share/doc/packages/john/README-ZTEX
/usr/share/doc/packages/john/README-krb5-18-23
/usr/share/doc/packages/john/README.7z2john.md
/usr/share/doc/packages/john/README.Apple_DMG
/usr/share/doc/packages/john/README.BitLocker
/usr/share/doc/packages/john/README.Ethereum
/usr/share/doc/packages/john/README.FileVault2
/usr/share/doc/packages/john/README.FreeBSD
/usr/share/doc/packages/john/README.IBM_AS400
/usr/share/doc/packages/john/README.LUKS
/usr/share/doc/packages/john/README.LotusNotes
/usr/share/doc/packages/john/README.MinGW
/usr/share/doc/packages/john/README.RACF
/usr/share/doc/packages/john/README.Tezos
/usr/share/doc/packages/john/README.apex
/usr/share/doc/packages/john/README.bash-completion
/usr/share/doc/packages/john/README.bitcoin
/usr/share/doc/packages/john/README.coding-style
/usr/share/doc/packages/john/README.cprepair
/usr/share/doc/packages/john/README.format-epi
/usr/share/doc/packages/john/README.gpg
/usr/share/doc/packages/john/README.ios7
/usr/share/doc/packages/john/README.keychain
/usr/share/doc/packages/john/README.keyring
/usr/share/doc/packages/john/README.keystore
/usr/share/doc/packages/john/README.krb5tgs-17-18-23.md
/usr/share/doc/packages/john/README.kwallet
/usr/share/doc/packages/john/README.librexgen
/usr/share/doc/packages/john/README.md
/usr/share/doc/packages/john/README.mozilla
/usr/share/doc/packages/john/README.mpi
/usr/share/doc/packages/john/README.pwsafe
/usr/share/doc/packages/john/README.ssh
/usr/share/doc/packages/john/RULES
/usr/share/doc/packages/john/RULES-hashcat
/usr/share/doc/packages/john/Regen-Lost-Salts.txt
/usr/share/doc/packages/john/SHOW_FORMATS.md
/usr/share/doc/packages/john/SIPcrack-LICENSE
/usr/share/doc/packages/john/SUBSETS
/usr/share/doc/packages/john/SecureMode-tutorial.md
/usr/share/doc/packages/john/dynamic_history.txt
/usr/share/doc/packages/john/extras
/usr/share/doc/packages/john/extras/AddressSanitizer-HOWTO.txt
/usr/share/doc/packages/john/extras/HACKING.md
/usr/share/doc/packages/john/extras/README-CUDA
/usr/share/doc/packages/john/extras/john-1.7.9-jumbo-7-licensing-stats.txt
/usr/share/doc/packages/john/extras/john-1.7.9-jumbo-7-licensing.txt
/usr/share/doc/packages/john/extras/libFuzzer-HOWTO.txt
/usr/share/doc/packages/john/pass_gen.Manifest
/usr/share/doc/packages/john/pcap2john.readme
/usr/share/john
/usr/share/john/alnum.chr
/usr/share/john/alnumspace.chr
/usr/share/john/alpha.chr
/usr/share/john/ascii.chr
/usr/share/john/digits.chr
/usr/share/john/dumb16.conf
/usr/share/john/dumb32.conf
/usr/share/john/dynamic.conf
/usr/share/john/dynamic_disabled.conf
/usr/share/john/dynamic_flat_sse_formats.conf
/usr/share/john/hybrid.conf
/usr/share/john/john.local.conf
/usr/share/john/kernels
/usr/share/john/kernels/7z_kernel.cl
/usr/share/john/kernels/DES_bs_finalize_keys_kernel.cl
/usr/share/john/kernels/DES_bs_hash_checking_kernel.cl
/usr/share/john/kernels/DES_bs_kernel.cl
/usr/share/john/kernels/DES_bs_kernel_f.cl
/usr/share/john/kernels/DES_bs_kernel_h.cl
/usr/share/john/kernels/agile_kernel.cl
/usr/share/john/kernels/androidbackup_kernel.cl
/usr/share/john/kernels/ansible_kernel.cl
/usr/share/john/kernels/axcrypt2_kernel.cl
/usr/share/john/kernels/axcrypt_kernel.cl
/usr/share/john/kernels/bf_cpu_kernel.cl
/usr/share/john/kernels/bf_kernel.cl
/usr/share/john/kernels/bitlocker_kernel.cl
/usr/share/john/kernels/bitwarden_kernel.cl
/usr/share/john/kernels/blockchain_kernel.cl
/usr/share/john/kernels/bsd_softraid_kernel.cl
/usr/share/john/kernels/cloudkeychain_kernel.cl
/usr/share/john/kernels/cryptmd5_kernel.cl
/usr/share/john/kernels/cryptsha256_kernel_DEFAULT.cl
/usr/share/john/kernels/cryptsha256_kernel_GPU.cl
/usr/share/john/kernels/cryptsha512_kernel_DEFAULT.cl
/usr/share/john/kernels/cryptsha512_kernel_GPU.cl
/usr/share/john/kernels/diskcryptor_aes_kernel.cl
/usr/share/john/kernels/dmg_kernel.cl
/usr/share/john/kernels/encfs_kernel.cl
/usr/share/john/kernels/enpass_kernel.cl
/usr/share/john/kernels/ethereum_kernel.cl
/usr/share/john/kernels/fvde_kernel.cl
/usr/share/john/kernels/geli_kernel.cl
/usr/share/john/kernels/gpg_kernel.cl
/usr/share/john/kernels/iwork_kernel.cl
/usr/share/john/kernels/keepass_kernel.cl
/usr/share/john/kernels/keychain_kernel.cl
/usr/share/john/kernels/keyring_kernel.cl
/usr/share/john/kernels/keystore_kernel.cl
/usr/share/john/kernels/krb5_kernel.cl
/usr/share/john/kernels/krb5pa-md5_kernel.cl
/usr/share/john/kernels/lastpass_kernel.cl
/usr/share/john/kernels/lm_kernel_b.cl
/usr/share/john/kernels/lm_kernel_f.cl
/usr/share/john/kernels/lotus5_kernel.cl
/usr/share/john/kernels/md4_kernel.cl
/usr/share/john/kernels/md5_kernel.cl
/usr/share/john/kernels/mscash_kernel.cl
/usr/share/john/kernels/nt_kernel.cl
/usr/share/john/kernels/ntlmv2_kernel.cl
/usr/share/john/kernels/o5logon_kernel.cl
/usr/share/john/kernels/odf_kernel.cl
/usr/share/john/kernels/office_kernel.cl
/usr/share/john/kernels/oldoffice_kernel.cl
/usr/share/john/kernels/opencl_DES_hst_dev_shared.h
/usr/share/john/kernels/opencl_DES_kernel_params.h
/usr/share/john/kernels/opencl_aes.h
/usr/share/john/kernels/opencl_aes_bitslice.h
/usr/share/john/kernels/opencl_aes_plain.h
/usr/share/john/kernels/opencl_asn1.h
/usr/share/john/kernels/opencl_bitlocker.h
/usr/share/john/kernels/opencl_blowfish.h
/usr/share/john/kernels/opencl_cast.h
/usr/share/john/kernels/opencl_chacha.h
/usr/share/john/kernels/opencl_cmac.h
/usr/share/john/kernels/opencl_common.h
/usr/share/john/kernels/opencl_des.h
/usr/share/john/kernels/opencl_device_info.h
/usr/share/john/kernels/opencl_hmac_sha1.h
/usr/share/john/kernels/opencl_hmac_sha256.h
/usr/share/john/kernels/opencl_hmac_sha512.h
/usr/share/john/kernels/opencl_keccak.h
/usr/share/john/kernels/opencl_lm_finalize_keys.h
/usr/share/john/kernels/opencl_lm_hst_dev_shared.h
/usr/share/john/kernels/opencl_lm_kernel_params.h
/usr/share/john/kernels/opencl_lotus5_fmt.h
/usr/share/john/kernels/opencl_mask.h
/usr/share/john/kernels/opencl_mask_extras.h
/usr/share/john/kernels/opencl_md4.h
/usr/share/john/kernels/opencl_md5.h
/usr/share/john/kernels/opencl_md5_ctx.h
/usr/share/john/kernels/opencl_misc.h
/usr/share/john/kernels/opencl_nonstd.h
/usr/share/john/kernels/opencl_pbkdf1_hmac_sha1.h
/usr/share/john/kernels/opencl_pbkdf2_hmac_md4.h
/usr/share/john/kernels/opencl_pbkdf2_hmac_md5.h
/usr/share/john/kernels/opencl_pbkdf2_hmac_sha1.h
/usr/share/john/kernels/opencl_pbkdf2_hmac_sha256.h
/usr/share/john/kernels/opencl_pkcs12.h
/usr/share/john/kernels/opencl_rawsha256.h
/usr/share/john/kernels/opencl_rawsha512.h
/usr/share/john/kernels/opencl_rc4.h
/usr/share/john/kernels/opencl_ripemd.h
/usr/share/john/kernels/opencl_sboxes-s.h
/usr/share/john/kernels/opencl_sboxes.h
/usr/share/john/kernels/opencl_sha1.h
/usr/share/john/kernels/opencl_sha1_ctx.h
/usr/share/john/kernels/opencl_sha2.h
/usr/share/john/kernels/opencl_sha256.h
/usr/share/john/kernels/opencl_sha256crypt.h
/usr/share/john/kernels/opencl_sha2_common.h
/usr/share/john/kernels/opencl_sha2_ctx.h
/usr/share/john/kernels/opencl_sha512.h
/usr/share/john/kernels/opencl_sha512crypt.h
/usr/share/john/kernels/opencl_twofish.h
/usr/share/john/kernels/opencl_unicode.h
/usr/share/john/kernels/pbkdf1_hmac_sha1_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_md4_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_md5_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_sha1_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_sha1_unsplit_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_sha256_kernel.cl
/usr/share/john/kernels/pbkdf2_hmac_sha512_kernel.cl
/usr/share/john/kernels/pbkdf2_kernel.cl
/usr/share/john/kernels/pbkdf2_ripemd160_kernel.cl
/usr/share/john/kernels/pem_kernel.cl
/usr/share/john/kernels/pfx_kernel.cl
/usr/share/john/kernels/pgpdisk_kernel.cl
/usr/share/john/kernels/pgpsda_kernel.cl
/usr/share/john/kernels/pgpwde_kernel.cl
/usr/share/john/kernels/phpass_kernel.cl
/usr/share/john/kernels/pwsafe_kernel.cl
/usr/share/john/kernels/rakp_kernel.cl
/usr/share/john/kernels/rar_kernel.cl
/usr/share/john/kernels/salted_sha_kernel.cl
/usr/share/john/kernels/sap_pse_kernel.cl
/usr/share/john/kernels/sha1_kernel.cl
/usr/share/john/kernels/sha256_kernel.cl
/usr/share/john/kernels/sha512_gpl_kernel.cl
/usr/share/john/kernels/sha512_kernel.cl
/usr/share/john/kernels/solarwinds_kernel.cl
/usr/share/john/kernels/ssh_kernel.cl
/usr/share/john/kernels/sspr_kernel.cl
/usr/share/john/kernels/strip_kernel.cl
/usr/share/john/kernels/telegram_kernel.cl
/usr/share/john/kernels/tezos_kernel.cl
/usr/share/john/kernels/vmx_kernel.cl
/usr/share/john/kernels/wpapsk_kernel.cl
/usr/share/john/kernels/xsha512_kernel.cl
/usr/share/john/kernels/zip_kernel.cl
/usr/share/john/korelogic.conf
/usr/share/john/lanman.chr
/usr/share/john/latin1.chr
/usr/share/john/lm_ascii.chr
/usr/share/john/lower.chr
/usr/share/john/lowernum.chr
/usr/share/john/lowerspace.chr
/usr/share/john/password.lst
/usr/share/john/regex_alphabets.conf
/usr/share/john/repeats16.conf
/usr/share/john/repeats32.conf
/usr/share/john/rules
/usr/share/john/rules/InsidePro-PasswordsPro.rule
/usr/share/john/rules/T0XlC-insert_top_100_passwords_1_G.rule
/usr/share/john/rules/T0XlC.rule
/usr/share/john/rules/T0XlCv1.rule
/usr/share/john/rules/best64.rule
/usr/share/john/rules/d3ad0ne.rule
/usr/share/john/rules/dive.rule
/usr/share/john/rules/passphrase-rule1.rule
/usr/share/john/rules/passphrase-rule2.rule
/usr/share/john/rules/rockyou-30000.rule
/usr/share/john/rules/specific.rule
/usr/share/john/upper.chr
/usr/share/john/uppernum.chr
/usr/share/john/utf8.chr
/usr/share/john/wordlists
/usr/share/man/man8/john.8.gz
/usr/share/man/man8/mailer.8.gz
/usr/share/man/man8/relbench.8.gz
/var/log/john


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 16:49:08 2024