From owner-svn-ports-all@freebsd.org Sat Sep 17 12:08:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82E5FBDEACD; Sat, 17 Sep 2016 12:08:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43243AE8; Sat, 17 Sep 2016 12:08:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HC8AKs054282; Sat, 17 Sep 2016 12:08:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HC8Aux054278; Sat, 17 Sep 2016 12:08:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171208.u8HC8Aux054278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:08:10 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:08:11 -0000 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 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