svn commit: r307974 - in head/security: . regripper

Pawel Pekala pawel at FreeBSD.org
Thu Nov 29 19:30:26 UTC 2012


Author: pawel
Date: Thu Nov 29 19:30:25 2012
New Revision: 307974
URL: http://svnweb.freebsd.org/changeset/ports/307974

Log:
  RegRipper is an open source tool, written in Perl, for extracting/parsing
  information (keys, values, data) from the Registry and presenting it for
  analysis.
  
  WWW: http://code.google.com/p/regripper/
  
  PR:		ports/172899
  Submitted by:	antoine at FreeBSD.org
  Feature safe:	yes

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu Nov 29 18:49:27 2012	(r307973)
+++ head/security/Makefile	Thu Nov 29 19:30:25 2012	(r307974)
@@ -807,6 +807,7 @@
     SUBDIR += razorback-virusTotal
     SUBDIR += razorback-yaraNugget
     SUBDIR += rdigest
+    SUBDIR += regripper
     SUBDIR += retranslator
     SUBDIR += revelation
     SUBDIR += rkhunter

Added: head/security/regripper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/regripper/Makefile	Thu Nov 29 19:30:25 2012	(r307974)
@@ -0,0 +1,33 @@
+# Created by: antoine at FreeBSD.org
+# $FreeBSD$
+
+PORTNAME=	regripper
+DISTVERSION=	2.5
+CATEGORIES=	security
+MASTER_SITES=	GOOGLE_CODE
+DISTNAME=	rrv${DISTVERSION}
+
+MAINTAINER=	antoine at FreeBSD.org
+COMMENT=	Tool for registry analysis in forensics examinations
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/license.txt
+
+RUN_DEPEND=	p5-Parse-Win32Registry>=0:${PORTSDIR}/devel/p5-Parse-Win32Registry
+
+USE_ZIP=	yes
+NO_WRKSUBDIR=	yes
+USE_DOS2UNIX=	yes
+NO_BUILD=	yes
+USE_PERL5_RUN=	yes
+PLIST_FILES=	bin/rip.pl
+
+post-patch:
+	${REINPLACE_CMD} -e 's|#! c:\\perl\\bin\\perl.exe|#!${PERL}| ; \
+		s|plugindir = $$str|plugindir = "${DATADIR}"| ; \
+		s|require "plugins\\\\|require "${DATADIR}plugins/|' ${WRKSRC}/rip.pl
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/rip.pl ${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/security/regripper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/regripper/distinfo	Thu Nov 29 19:30:25 2012	(r307974)
@@ -0,0 +1,2 @@
+SHA256 (rrv2.5.zip) = f279137439a6c3777eeb6bdd63c4eb7ca4ba1ab25568c05f9d5dd009d03721a4
+SIZE (rrv2.5.zip) = 3004592

Added: head/security/regripper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/regripper/pkg-descr	Thu Nov 29 19:30:25 2012	(r307974)
@@ -0,0 +1,5 @@
+RegRipper is an open source tool, written in Perl, for extracting/parsing
+information (keys, values, data) from the Registry and presenting it for
+analysis. 
+
+WWW: http://code.google.com/p/regripper/


More information about the svn-ports-all mailing list