1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

add mdcrack

Bruteforce password MD5 hashes
This commit is contained in:
Ying-Chieh Liao 2001-04-19 17:30:10 +00:00
parent 81ab4375c6
commit eee7f2e894
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41686
7 changed files with 59 additions and 0 deletions

View File

@ -67,6 +67,7 @@
SUBDIR += lsh
SUBDIR += lxnb
SUBDIR += mcrypt
SUBDIR += mdcrack
SUBDIR += mhash
SUBDIR += mindterm-binary
SUBDIR += nbaudit

19
security/mdcrack/Makefile Normal file
View File

@ -0,0 +1,19 @@
# ex:ts=8
# New ports collection makefile for: mdcrack
# Date created: Apr 19, 2001
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mdcrack
PORTVERSION= 0.9
CATEGORIES= security
MASTER_SITES= http://mdcrack.multimania.com/
MAINTAINER= ijliao@FreeBSD.org
WRKSRC= ${WRKDIR}/${PORTNAME}
ALL_TARGET= ${PORTNAME}
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (mdcrack-0.9.tar.gz) = 1f94b731b49f4922ba42c282dfe2464e

View File

@ -0,0 +1,33 @@
--- Makefile.orig Mon Apr 9 10:12:24 2001
+++ Makefile Fri Apr 20 01:04:09 2001
@@ -9,7 +9,6 @@
# Security, Inc. MD5 Message-Digest Algorithm
#
-CC = gcc
# Please set RESUME_FILE and choose a secure place for the resume file
# before using mdcrack as root.
@@ -45,12 +44,10 @@
BLOCK=-DBLOCKSIZE=50
-CFLAGS = -O3 -fforce-addr -funroll-loops
# static linkage will suppress a little overhead due to obj search/mountage.
# useless for big sessions.
-LDFLAGS = -static
mdcrack: md5c.o mdcrack.o stats.o errors.o
$(CC) $(LDFLAGS) -o mdcrack md5c.o mdcrack.o stats.o errors.o
@@ -80,7 +77,7 @@
rm -f *.o mdcrack
install:
- @echo -e "\nInstalling mdcrack in /usr/sbin/mdcrack\n"
- cp ./mdcrack /usr/sbin/mdcrack
+ @echo -e "\nInstalling mdcrack in ${PREFIX}/bin/mdcrack\n"
+ cp ./mdcrack ${PREFIX}/bin/mdcrack
@echo -e "\nok.\n"

View File

@ -0,0 +1 @@
Bruteforce password MD5 hashes

View File

@ -0,0 +1,3 @@
Bruteforce password MD5 hashes
WWW: http://mdcrack.multimania.com/

View File

@ -0,0 +1 @@
bin/mdcrack