From owner-svn-ports-all@freebsd.org Sun May 26 22:00:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 515CD15B2091; Sun, 26 May 2019 22:00:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E4AD0703FE; Sun, 26 May 2019 21:59:59 +0000 (UTC) (envelope-from swills@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BD73C219C2; Sun, 26 May 2019 21:59:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4QLxxf8078538; Sun, 26 May 2019 21:59:59 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4QLxwlJ078533; Sun, 26 May 2019 21:59:58 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201905262159.x4QLxwlJ078533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 26 May 2019 21:59:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502752 - in head/security: . ismtp ismtp/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/security: . ismtp ismtp/files X-SVN-Commit-Revision: 502752 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E4AD0703FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 26 May 2019 22:00:00 -0000 Author: swills Date: Sun May 26 21:59:58 2019 New Revision: 502752 URL: https://svnweb.freebsd.org/changeset/ports/502752 Log: security/ismtp: create port SMTP user enumeration (RCPT TO and VRFY), internal spoofing, and open relay. A tool that tested for all three and with great flexibility. iSMTP does just that, making it much easier to knock that process out of the way. WWW: https://github.com/altjx/ipwn/tree/master/iSMTP PR: 231920 Submitted by: Rihaz Jerrin Added: head/security/ismtp/ head/security/ismtp/Makefile (contents, props changed) head/security/ismtp/distinfo (contents, props changed) head/security/ismtp/files/ head/security/ismtp/files/patch-iSMTP.py (contents, props changed) head/security/ismtp/pkg-descr (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun May 26 21:59:03 2019 (r502751) +++ head/security/Makefile Sun May 26 21:59:58 2019 (r502752) @@ -237,6 +237,7 @@ SUBDIR += ipsec-tools SUBDIR += ipv6toolkit SUBDIR += isakmpd + SUBDIR += ismtp SUBDIR += isnprober SUBDIR += jbrofuzz SUBDIR += john Added: head/security/ismtp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ismtp/Makefile Sun May 26 21:59:58 2019 (r502752) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= ismtp +DISTVERSION= g20180824 +CATEGORIES= security +MASTER_SITES= GH + +MAINTAINER= rihaz.jerrin@gmail.com +COMMENT= Test for SMTP user enumeration,internal spoofing, and relay + +LICENSE= MIT + +USES= python:2.7 shebangfix + +USE_GITHUB= yes +GH_ACCOUNT= altjx +GH_PROJECT= ipwn +GH_TAGNAME= 32bbc05 +GH_SUBDIR= iSMTP + +NO_BUILD= yes + +SHEBANG_FILES= ${WRKSRC}/${GH_SUBDIR}/iSMTP.py + +PLIST_FILES= bin/ismtp + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/iSMTP.py ${STAGEDIR}${PREFIX}/bin/ismtp + +.include Added: head/security/ismtp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ismtp/distinfo Sun May 26 21:59:58 2019 (r502752) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540519577 +SHA256 (altjx-ipwn-g20180824-32bbc05_GH0.tar.gz) = e45307700c9061222c83200f87757eb0977a2f4d28473b35cbbc432a0d7f4092 +SIZE (altjx-ipwn-g20180824-32bbc05_GH0.tar.gz) = 38221 Added: head/security/ismtp/files/patch-iSMTP.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ismtp/files/patch-iSMTP.py Sun May 26 21:59:58 2019 (r502752) @@ -0,0 +1,11 @@ +--- iSMTP.py.orig 2018-10-26 04:04:28 UTC ++++ iSMTP.py +@@ -35,7 +35,7 @@ split_target = "\n " + colors.white + "=" * 23 + " sta + + def help(): + print banner +- print " Usage: ./iSMTP.py \n" ++ print " Usage: ismtp \n" + print colors.red + " Required:\n" + colors.normal + print "\t-f \tImports a list of SMTP servers for testing.\n\t\t\t\t(Cannot use with '-h'.)" + print "\t-h \t\tThe target IP and port (IP:port).\n\t\t\t\t(Cannot use with '-f'.)" Added: head/security/ismtp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/ismtp/pkg-descr Sun May 26 21:59:58 2019 (r502752) @@ -0,0 +1,5 @@ +SMTP user enumeration (RCPT TO and VRFY), internal spoofing, and open relay. A +tool that tested for all three and with great flexibility. iSMTP does just +that, making it much easier to knock that process out of the way. + +WWW: https://github.com/altjx/ipwn/tree/master/iSMTP