diff options
author | pawel <pawel@FreeBSD.org> | 2012-11-30 03:30:25 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2012-11-30 03:30:25 +0800 |
commit | 6c3698b38dd28fea990de7bda3294eba862ef957 (patch) | |
tree | ce1e9ffaed08c16caf0a03f617b4c61818a2e7d8 /security/regripper | |
parent | 1df89eda9be7d3f3d57fbe45dd66148a36cc1f68 (diff) | |
download | freebsd-ports-gnome-6c3698b38dd28fea990de7bda3294eba862ef957.tar.gz freebsd-ports-gnome-6c3698b38dd28fea990de7bda3294eba862ef957.tar.zst freebsd-ports-gnome-6c3698b38dd28fea990de7bda3294eba862ef957.zip |
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@FreeBSD.org
Feature safe: yes
Diffstat (limited to 'security/regripper')
-rw-r--r-- | security/regripper/Makefile | 33 | ||||
-rw-r--r-- | security/regripper/distinfo | 2 | ||||
-rw-r--r-- | security/regripper/pkg-descr | 5 |
3 files changed, 40 insertions, 0 deletions
diff --git a/security/regripper/Makefile b/security/regripper/Makefile new file mode 100644 index 000000000000..e38db92d2f08 --- /dev/null +++ b/security/regripper/Makefile @@ -0,0 +1,33 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= regripper +DISTVERSION= 2.5 +CATEGORIES= security +MASTER_SITES= GOOGLE_CODE +DISTNAME= rrv${DISTVERSION} + +MAINTAINER= antoine@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> diff --git a/security/regripper/distinfo b/security/regripper/distinfo new file mode 100644 index 000000000000..1212932a06a8 --- /dev/null +++ b/security/regripper/distinfo @@ -0,0 +1,2 @@ +SHA256 (rrv2.5.zip) = f279137439a6c3777eeb6bdd63c4eb7ca4ba1ab25568c05f9d5dd009d03721a4 +SIZE (rrv2.5.zip) = 3004592 diff --git a/security/regripper/pkg-descr b/security/regripper/pkg-descr new file mode 100644 index 000000000000..5247b9ed20cf --- /dev/null +++ b/security/regripper/pkg-descr @@ -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/ |