mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
rcracki_mt: bumped to 0.6.5.2
This commit is contained in:
parent
349711b01e
commit
70f368cf8f
6 changed files with 15 additions and 94 deletions
|
|
@ -1,10 +0,0 @@
|
|||
# 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
|
||||
|
||||
|
|
@ -1,6 +1,3 @@
|
|||
AUX rcracki_mt-remove-md2.patch 2087 RMD160 720a8bceec0ac90c85efbab31473b3c72cf18cf1 SHA1 9a1c6255cac48a0bb179a832b7d955df77984ee4 SHA256 17d1f9a21702172933254eb9dbe06cbf29a36d30e6d9eed41f899d262a354cad
|
||||
AUX rcracki_mt-share.patch 438 RMD160 2dd008c7968ea783eebd07c62dbec2bd49a368a4 SHA1 1d5c04691bb985b1ae38a5b56cd3508937d3475a SHA256 5aaaec2cf18edcf4d31ea3ebe277a5654b8b5b57faed19f0163b40fe6fdfffe8
|
||||
DIST rcracki_mt_0.6.4_src.tar.gz 66206 RMD160 83aed86737abeb91e606bfc79b1c24a6ec1454c0 SHA1 696d1227e83974d8ad5a78ca1b5a59dd18283929 SHA256 dc7bbf0b61ac7a4f675a93073e009884aa6bdb28cfcdfd5daffd0307a87275f0
|
||||
EBUILD rcracki_mt-0.6.4.ebuild 900 RMD160 c735e32b987afd0703832278fde2cd00bc3b658d SHA1 cff36f422a766f75c942d035a4e60fd248f1a38b SHA256 a966548a8038a2466be52763f57df94d23ef9ed5d867d38dc8db80617b54c0d2
|
||||
MISC ChangeLog 262 RMD160 1dced324f6182742434e81783ff6356788d8fa1e SHA1 d544429423d9b8544d51af604470efe37c7f97bb SHA256 05a667250dd782311787605ca4ec6345e614306d1c5ec0bc0bd4681c7cb5d8f3
|
||||
MISC metadata.xml 508 RMD160 c3c7649235effe556d25de3ad8702d350894bf23 SHA1 2fa8a5e470adea782c44c2d83e6d7af81bd11e51 SHA256 92ff0e771e92f2f8e59ba2708a277e5083e4a040886725be2d5dc8d7fafd91cf
|
||||
AUX rcracki_mt-share.patch 557 RMD160 bfc3e24b8f28743b166ebcaad056cd43a26efce5 SHA1 e7bf43db068ca87e08331ca8e2594562e42a016d SHA256 f4da093c9906fc5b07924ed262ea4afa4089ff60c095f35e1f424dad02c5a393
|
||||
DIST rcracki_mt_0.6.5.2_src.tar.gz 70192 RMD160 9e4518316d2dd166b1dc2c2b94ee83abce0655a4 SHA1 06a8f4ac1739f87e294278e9f055bb53f15f482b SHA256 4f0a6eaafee36604b4340db05f08da4d8d5da8c1cd31ede5d05722b5e25ce47b
|
||||
EBUILD rcracki_mt-0.6.5.2.ebuild 855 RMD160 b4708704c1afb8efe9d5c606a4b5771462b2959e SHA1 9638eec123d50109293188e6d3b58be6287bc8a0 SHA256 9a6a2d1baad299ae538550b5d8365c0bbc84b69b39d901c0bc6ea55b7eae971b
|
||||
|
|
|
|||
|
|
@ -1,50 +0,0 @@
|
|||
diff -Nru rcracki_mt_0.6.4_src.bak/HashAlgorithm.cpp rcracki_mt_0.6.4_src/HashAlgorithm.cpp
|
||||
--- rcracki_mt_0.6.4_src.bak/HashAlgorithm.cpp 2010-09-28 20:26:07.459283693 +0200
|
||||
+++ rcracki_mt_0.6.4_src/HashAlgorithm.cpp 2010-09-28 20:26:41.567517317 +0200
|
||||
@@ -33,7 +33,6 @@
|
||||
#include "Public.h"
|
||||
|
||||
#include <openssl/des.h>
|
||||
-#include <openssl/md2.h>
|
||||
#include <openssl/md4.h>
|
||||
//#include <openssl/md5.h>
|
||||
#include <openssl/sha.h>
|
||||
@@ -228,16 +227,6 @@
|
||||
MD4_NEW(UnicodePlain, nPlainLen * 2, pHash);
|
||||
}
|
||||
|
||||
-void HashMD2(unsigned char* pPlain, int nPlainLen, unsigned char* pHash)
|
||||
-{
|
||||
- MD2_CTX ctx;
|
||||
- MD2_Init(&ctx);
|
||||
- MD2_Update(&ctx, pPlain, nPlainLen);
|
||||
- MD2_Final(pHash, &ctx);
|
||||
-
|
||||
- //MD2(pPlain, nPlainLen, pHash);
|
||||
-}
|
||||
-
|
||||
void HashMD4(unsigned char* pPlain, int nPlainLen, unsigned char* pHash)
|
||||
{
|
||||
/*MD4_CTX ctx;
|
||||
diff -Nru rcracki_mt_0.6.4_src.bak/HashAlgorithm.h rcracki_mt_0.6.4_src/HashAlgorithm.h
|
||||
--- rcracki_mt_0.6.4_src.bak/HashAlgorithm.h 2010-09-28 20:26:07.458267211 +0200
|
||||
+++ rcracki_mt_0.6.4_src/HashAlgorithm.h 2010-09-28 20:26:57.290284810 +0200
|
||||
@@ -31,7 +31,6 @@
|
||||
|
||||
void HashLM(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
void HashNTLM(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
-void HashMD2(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
void HashMD4(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
void HashMD5(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
void HashDoubleMD5(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
|
||||
diff -Nru rcracki_mt_0.6.4_src.bak/HashRoutine.cpp rcracki_mt_0.6.4_src/HashRoutine.cpp
|
||||
--- rcracki_mt_0.6.4_src.bak/HashRoutine.cpp 2010-09-28 20:26:07.458267211 +0200
|
||||
+++ rcracki_mt_0.6.4_src/HashRoutine.cpp 2010-09-28 20:27:12.069258760 +0200
|
||||
@@ -42,7 +42,6 @@
|
||||
|
||||
AddHashRoutine("lm", HashLM, 8);
|
||||
AddHashRoutine("ntlm", HashNTLM, 16);
|
||||
- AddHashRoutine("md2", HashMD2, 16);
|
||||
AddHashRoutine("md4", HashMD4, 16);
|
||||
AddHashRoutine("md5", HashMD5, 16);
|
||||
AddHashRoutine("doublemd5", HashDoubleMD5, 16);
|
||||
|
|
@ -1,12 +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;
|
||||
diff -Nru rcracki_mt_0.6.5.2_src.orig/ChainWalkContext.cpp rcracki_mt_0.6.5.2_src/ChainWalkContext.cpp
|
||||
--- rcracki_mt_0.6.5.2_src.orig/ChainWalkContext.cpp 2010-11-13 11:46:28.786198146 +0100
|
||||
+++ rcracki_mt_0.6.5.2_src/ChainWalkContext.cpp 2010-11-13 11:49:11.765027286 +0100
|
||||
@@ -91,6 +91,8 @@
|
||||
readCharset = true;
|
||||
else if ( ReadLinesFromFile(GetApplicationPath() + "charset.txt", vLine) )
|
||||
readCharset = true;
|
||||
+ else if ( ReadLinesFromFile("@@SHARE@@/charset.txt", vLine ) )
|
||||
+ readCharset = true;
|
||||
#endif
|
||||
|
||||
if ( readCharset )
|
||||
|
|
|
|||
|
|
@ -1,15 +0,0 @@
|
|||
<?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>
|
||||
|
||||
|
|
@ -22,7 +22,6 @@ S="${WORKDIR}/${PN}_${PV}_src"
|
|||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-share.patch"
|
||||
epatch "${FILESDIR}/${PN}-remove-md2.patch"
|
||||
sed -i "s#@@SHARE@@#/usr/share/${P}#g" ChainWalkContext.cpp || die
|
||||
sed -i "s|-O3|$CXXFLAGS|" Makefile || die
|
||||
sed -i "s|\$(LFLAGS)|$LDFLAGS|" Makefile || die
|
||||
Loading…
Reference in a new issue