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:
parent
81ab4375c6
commit
eee7f2e894
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41686
@ -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
19
security/mdcrack/Makefile
Normal 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>
|
1
security/mdcrack/distinfo
Normal file
1
security/mdcrack/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (mdcrack-0.9.tar.gz) = 1f94b731b49f4922ba42c282dfe2464e
|
33
security/mdcrack/files/patch-Makefile
Normal file
33
security/mdcrack/files/patch-Makefile
Normal 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"
|
||||
|
1
security/mdcrack/pkg-comment
Normal file
1
security/mdcrack/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Bruteforce password MD5 hashes
|
3
security/mdcrack/pkg-descr
Normal file
3
security/mdcrack/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
Bruteforce password MD5 hashes
|
||||
|
||||
WWW: http://mdcrack.multimania.com/
|
1
security/mdcrack/pkg-plist
Normal file
1
security/mdcrack/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
bin/mdcrack
|
Loading…
Reference in New Issue
Block a user