Date: Sat, 17 Sep 2016 12:08:10 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422314 - in head/security: . rubygem-rex-nop Message-ID: <201609171208.u8HC8Aux054278@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sat Sep 17 12:08:09 2016 New Revision: 422314 URL: https://svnweb.freebsd.org/changeset/ports/422314 Log: New port: security/rubygem-rex-nop This library contains the opty2 library for dynamic generation of x86 multi-byte NOPs. This is useful in writing exploits and encoders. It allows you to dynamic generate variable length instruction sets that are equivalent to a No Operation (NOP) without using the actual 0x90 bytecode. The original code was written by Optyx and spoonm. WWW: https://github.com/rapid7/rex-nop Added: head/security/rubygem-rex-nop/ head/security/rubygem-rex-nop/Makefile (contents, props changed) head/security/rubygem-rex-nop/distinfo (contents, props changed) head/security/rubygem-rex-nop/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 12:04:46 2016 (r422313) +++ head/security/Makefile Sat Sep 17 12:08:09 2016 (r422314) @@ -1018,6 +1018,7 @@ SUBDIR += rubygem-rex-core SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime + SUBDIR += rubygem-rex-nop SUBDIR += rubygem-rex-ole SUBDIR += rubygem-rex-powershell SUBDIR += rubygem-rex-random_identifier Added: head/security/rubygem-rex-nop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/Makefile Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= rex-nop +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) library for NOP generation + +RUN_DEPENDS= rubygem-rex-arch>=0:security/rubygem-rex-arch + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> Added: head/security/rubygem-rex-nop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/distinfo Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474026935 +SHA256 (rubygem/rex-nop-0.1.0.gem) = 5f80a4126ab722963bfa45802c7ad617f8b9b7e83cba7cda4bfe2bcaabfab1bd +SIZE (rubygem/rex-nop-0.1.0.gem) = 26624 Added: head/security/rubygem-rex-nop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/pkg-descr Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,7 @@ +This library contains the opty2 library for dynamic generation of x86 multi-byte +NOPs. This is useful in writing exploits and encoders. It allows you to dynamic +generate variable length instruction sets that are equivalent to a No Operation +(NOP) without using the actual 0x90 bytecode. The original code was written by +Optyx and spoonm. + +WWW: https://github.com/rapid7/rex-nop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609171208.u8HC8Aux054278>