From owner-svn-ports-all@freebsd.org Wed Sep 28 20:27:56 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 AB848C01C14; Wed, 28 Sep 2016 20:27:56 +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 6FBE910D4; Wed, 28 Sep 2016 20:27:56 +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 u8SKRtL1024962; Wed, 28 Sep 2016 20:27:55 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8SKRtpT024957; Wed, 28 Sep 2016 20:27:55 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609282027.u8SKRtpT024957@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 28 Sep 2016 20:27:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422892 - in head/security: . rubygem-rex-encoder 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: Wed, 28 Sep 2016 20:27:56 -0000 Author: antoine Date: Wed Sep 28 20:27:55 2016 New Revision: 422892 URL: https://svnweb.freebsd.org/changeset/ports/422892 Log: New port: security/rubygem-rex-encoder This library provides the basis for all of the polymorphic encoders that Metasploit uses for payload encoding. Encoders are used to try and create a version of a payload that is free of bad characters as defined by the exploit. WWW: https://github.com/rapid7/rex-encoder Added: head/security/rubygem-rex-encoder/ head/security/rubygem-rex-encoder/Makefile (contents, props changed) head/security/rubygem-rex-encoder/distinfo (contents, props changed) head/security/rubygem-rex-encoder/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Sep 28 20:26:35 2016 (r422891) +++ head/security/Makefile Wed Sep 28 20:27:55 2016 (r422892) @@ -1019,6 +1019,7 @@ SUBDIR += rubygem-rex-arch SUBDIR += rubygem-rex-bin_tools SUBDIR += rubygem-rex-core + SUBDIR += rubygem-rex-encoder SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime SUBDIR += rubygem-rex-nop Added: head/security/rubygem-rex-encoder/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-encoder/Makefile Wed Sep 28 20:27:55 2016 (r422892) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= rex-encoder +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) library for various polymorphic encoders + +RUN_DEPENDS= rubygem-metasm>=0:devel/rubygem-metasm \ + rubygem-rex-arch>=0:security/rubygem-rex-arch \ + rubygem-rex-text>=0:security/rubygem-rex-text + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-rex-encoder/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-encoder/distinfo Wed Sep 28 20:27:55 2016 (r422892) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474655213 +SHA256 (rubygem/rex-encoder-0.1.0.gem) = 8c467b2cfc292cf2badffa8db19eafe21dfff946b1ea73598dde4ac4bc85a658 +SIZE (rubygem/rex-encoder-0.1.0.gem) = 40448 Added: head/security/rubygem-rex-encoder/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-encoder/pkg-descr Wed Sep 28 20:27:55 2016 (r422892) @@ -0,0 +1,5 @@ +This library provides the basis for all of the polymorphic encoders that +Metasploit uses for payload encoding. Encoders are used to try and create a +version of a payload that is free of bad characters as defined by the exploit. + +WWW: https://github.com/rapid7/rex-encoder