Bug 177575 - new port: security/rcracki_mt
Summary: new port: security/rcracki_mt
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Antoine Brodin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-02 09:30 UTC by olivier
Modified: 2013-05-03 21:54 UTC (History)
0 users

See Also:


Attachments
file.shar (1.78 KB, text/plain)
2013-04-02 09:30 UTC, olivier
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description olivier 2013-04-02 09:30:00 UTC
security/rcracki_mt is the tool to be used with the (hybrid and indexed) rainbowtables freely available here: http://www.freerainbowtables.com/

Fix: Patch attached with submission follows:
Comment 1 Antoine Brodin freebsd_committer freebsd_triage 2013-04-30 19:58:37 UTC
Responsible Changed
From-To: freebsd-ports-bugs->antoine

Take.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-05-03 21:43:04 UTC
Author: antoine
Date: Fri May  3 20:42:50 2013
New Revision: 317245
URL: http://svnweb.freebsd.org/changeset/ports/317245

Log:
  New port: rcracki_mt
  Rainbow table based crack tool
  WWW: http://www.freerainbowtables.com
  
  PR:		ports/177575
  Submitted by:	Olivier Cochard-Labbe
  Approved by:	eadler (mentor)

Added:
  head/security/rcracki_mt/
  head/security/rcracki_mt/Makefile   (contents, props changed)
  head/security/rcracki_mt/distinfo   (contents, props changed)
  head/security/rcracki_mt/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri May  3 20:42:46 2013	(r317244)
+++ head/security/Makefile	Fri May  3 20:42:50 2013	(r317245)
@@ -826,6 +826,7 @@
     SUBDIR += razorback-syslogNugget
     SUBDIR += razorback-virusTotal
     SUBDIR += razorback-yaraNugget
+    SUBDIR += rcracki_mt
     SUBDIR += rdigest
     SUBDIR += regripper
     SUBDIR += regripperplugins

Added: head/security/rcracki_mt/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/Makefile	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,41 @@
+# $FreeBSD$
+
+PORTNAME=	rcracki_mt
+PORTVERSION=	0.7.0
+CATEGORIES=	security
+MASTER_SITES=	SF/rcracki/rcracki_mt/rcracki_mt_${PORTVERSION}
+DISTNAME=	${PORTNAME}_${PORTVERSION}_src
+EXTRACT_SUFX=	.7z
+
+MAINTAINER=	olivier@cochard.me
+COMMENT=	Rainbow table based crack tool
+
+LICENSE=	GPLv2
+
+EXTRACT_DEPENDS=7z:${PORTSDIR}/archivers/p7zip
+
+WRKSRC=		${WRKDIR}/${DISTNAME}/${PORTNAME}
+
+USE_GMAKE=	yes
+EXTRACT_CMD=	${LOCALBASE}/bin/7z
+EXTRACT_BEFORE_ARGS=x -o${WRKDIR}
+EXTRACT_AFTER_ARGS=
+
+PLIST_FILES=	bin/${PORTNAME}
+PORTDOCS=	ChangeLog.txt README.txt
+
+post-patch:
+	@${REINPLACE_CMD} -e 's,CC = g++,CXX ?= g++, ; s,CFLAGS =,CXXFLAGS +=, ; \
+		s,-lpthread,${PTHREAD_LIBS}, ; s,CC,CXX, ; s,CFLAGS,CXXFLAGS,' \
+		${WRKSRC}/Makefile
+
+.include <bsd.port.options.mk>
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/security/rcracki_mt/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/distinfo	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,2 @@
+SHA256 (rcracki_mt_0.7.0_src.7z) = 904c73d040fa91b0871907fc772da977b273579ee42036ab2596f3d3a644a000
+SIZE (rcracki_mt_0.7.0_src.7z) = 171634

Added: head/security/rcracki_mt/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/pkg-descr	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,4 @@
+Modified version of rcrack which supports hybrid and indexed tables.
+In addition to that, it also adds multi-core support.
+
+WWW: http://www.freerainbowtables.com
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Antoine Brodin freebsd_committer freebsd_triage 2013-05-03 21:53:04 UTC
State Changed
From-To: open->closed

New port added, thanks!