mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-23 23:31:00 +02:00
added multithreaded rainbowcrack, thanks bor for the ebuild
This commit is contained in:
parent
0a35886df3
commit
adc0017cd4
5 changed files with 76 additions and 0 deletions
10
app-crypt/rcracki_mt/ChangeLog
Normal file
10
app-crypt/rcracki_mt/ChangeLog
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# ChangeLog for app-crypt/rcracki_mt
|
||||
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: $
|
||||
|
||||
*rcracki_mt-0.6.3 (26 Oct 2009)
|
||||
|
||||
26 Oct 2009; Sergiy Borodych <bor@univ.kiev.ua> +rcracki_mt-0.6.3.ebuild,
|
||||
+metadata.xml:
|
||||
init ebuild
|
||||
|
||||
5
app-crypt/rcracki_mt/Manifest
Normal file
5
app-crypt/rcracki_mt/Manifest
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
AUX rcracki_mt-share.patch 438 RMD160 2dd008c7968ea783eebd07c62dbec2bd49a368a4 SHA1 1d5c04691bb985b1ae38a5b56cd3508937d3475a SHA256 5aaaec2cf18edcf4d31ea3ebe277a5654b8b5b57faed19f0163b40fe6fdfffe8
|
||||
DIST rcracki_mt_0.6.3_src.tar.gz 56715 RMD160 8c4526aaf35818863303b574a3e774c1e3679d23 SHA1 f251b5bed6aaea7b51b53c699bf8d6bddb4e14e1 SHA256 1f56a28207570aa500135182a10342439ad7bba357068ffa996914eee9a947f3
|
||||
EBUILD rcracki_mt-0.6.3.ebuild 768 RMD160 f6d05ab6a8113077cdbd7757261f49cce59ae414 SHA1 5281b3ab7e389ded3487f322ccc97a4b1d6c1b2e SHA256 588ddb0ba38fbba8297ced0d7c51f241874e11aafc34aeaee00bb44da1fa1b94
|
||||
MISC ChangeLog 262 RMD160 1dced324f6182742434e81783ff6356788d8fa1e SHA1 d544429423d9b8544d51af604470efe37c7f97bb SHA256 05a667250dd782311787605ca4ec6345e614306d1c5ec0bc0bd4681c7cb5d8f3
|
||||
MISC metadata.xml 508 RMD160 c3c7649235effe556d25de3ad8702d350894bf23 SHA1 2fa8a5e470adea782c44c2d83e6d7af81bd11e51 SHA256 92ff0e771e92f2f8e59ba2708a277e5083e4a040886725be2d5dc8d7fafd91cf
|
||||
12
app-crypt/rcracki_mt/files/rcracki_mt-share.patch
Normal file
12
app-crypt/rcracki_mt/files/rcracki_mt-share.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
--- rcracki_mt_0.6.3_src/ChainWalkContext.cpp.orig 2009-10-26 16:07:22.000000000 +0200
|
||||
+++ rcracki_mt_0.6.3_src/ChainWalkContext.cpp 2009-10-26 16:08:40.000000000 +0200
|
||||
@@ -75,6 +75,9 @@
|
||||
else if (ReadLinesFromFile(GetApplicationPath() + "charset.txt", vLine)) {
|
||||
readCharset = true;
|
||||
}
|
||||
+ else if (ReadLinesFromFile("@@SHARE@@/charset.txt", vLine)) {
|
||||
+ readCharset = true;
|
||||
+ }
|
||||
if (readCharset)
|
||||
{
|
||||
UINT4 i;
|
||||
15
app-crypt/rcracki_mt/metadata.xml
Normal file
15
app-crypt/rcracki_mt/metadata.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd></herd>
|
||||
<maintainer>
|
||||
<email>bor@univ.kiev.ua</email>
|
||||
<name>Sergiy Borodych</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
Rcracki_mt can be used to perform a rainbow table attack on password
|
||||
hashes. It is intended for indexed and perfected rainbow tables, mainly
|
||||
generated by the distributed project www.freerainbowtables.com
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
|
||||
34
app-crypt/rcracki_mt/rcracki_mt-0.6.3.ebuild
Normal file
34
app-crypt/rcracki_mt/rcracki_mt-0.6.3.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="rcracki_mt can be used to perform a rainbow table attack on password hashes"
|
||||
HOMEPAGE="http://sourceforge.net/projects/rcracki/"
|
||||
SRC_URI="mirror://sourceforge/rcracki/${PN}_${PV}_src.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-libs/openssl"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}_${PV}_src"
|
||||
|
||||
src_prepare() {
|
||||
cd "${S}"
|
||||
epatch "${FILESDIR}/${PN}-share.patch"
|
||||
sed -i "s#@@SHARE@@#/usr/share/${P}#g" ChainWalkContext.cpp || die
|
||||
sed -i "s|-O3|$CXXFLAGS|" Makefile || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin rcracki_mt
|
||||
insinto "/usr/share/${P}"
|
||||
doins charset.txt
|
||||
}
|
||||
Loading…
Reference in a new issue