Bug 183786 - [new ports] security/masscan: very fast port scanner
Summary: [new ports] security/masscan: very fast port scanner
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Antoine Brodin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-08 12:40 UTC by Chie Taguchi
Modified: 2013-11-16 12:21 UTC (History)
0 users

See Also:


Attachments
patch.txt (2.36 KB, text/plain)
2013-11-08 12:45 UTC, Chie Taguchi
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Chie Taguchi 2013-11-08 12:40:00 UTC
masscan is a very fast port scanner.

Using masscan, you can get results similar to nmap.
And masscan is not only faster than other scanners,
also more flexible setting for address and port ranges.
Comment 1 Chie Taguchi 2013-11-08 12:45:36 UTC
shar file is missing.
I attach it again.


On Fri, 8 Nov 2013 12:40:00 GMT
FreeBSD-gnats-submit@FreeBSD.org wrote:

> Thank you very much for your problem report.
> It has the internal identification `ports/183786'.
> The individual assigned to look at your
> report is: freebsd-ports-bugs. 
> 
> You can access the state of your problem report at any time
> via this link:
> 
> http://www.freebsd.org/cgi/query-pr.cgi?pr=183786
> 
> >Category:       ports
> >Responsible:    freebsd-ports-bugs
> >Synopsis:       [new ports] security/masscan: very fast port scanner
> >Arrival-Date:   Fri Nov 08 12:40:00 UTC 2013


-- 
Chie Taguchi <taguchi.ch@gmail.com>
Comment 2 Antoine Brodin freebsd_committer freebsd_triage 2013-11-15 18:56:29 UTC
Responsible Changed
From-To: freebsd-ports-bugs->antoine

Take
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-11-16 12:11:35 UTC
Author: antoine
Date: Sat Nov 16 12:11:27 2013
New Revision: 333987
URL: http://svnweb.freebsd.org/changeset/ports/333987

Log:
  New port: security/masscan
  masscan is a very fast port scanner
  
  PR:		ports/183786
  Submitted by:	Chie Taguchi

Added:
  head/security/masscan/
  head/security/masscan/Makefile   (contents, props changed)
  head/security/masscan/distinfo   (contents, props changed)
  head/security/masscan/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Nov 16 11:50:04 2013	(r333986)
+++ head/security/Makefile	Sat Nov 16 12:11:27 2013	(r333987)
@@ -307,6 +307,7 @@
     SUBDIR += mailzu
     SUBDIR += makepasswd
     SUBDIR += manipulate_data
+    SUBDIR += masscan
     SUBDIR += massh
     SUBDIR += matrixssl
     SUBDIR += mcrypt

Added: head/security/masscan/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/masscan/Makefile	Sat Nov 16 12:11:27 2013	(r333987)
@@ -0,0 +1,28 @@
+# Created by: Chie Taguchi <taguchi.ch@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	masscan
+PORTVERSION=	1.0
+CATEGORIES=	security
+MASTER_SITES=	http://github.com/robertdavidgraham/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/
+
+MAINTAINER=	taguchi.ch@gmail.com
+COMMENT=	Very fast port scanner
+
+LICENSE=	GPLv3
+
+FETCH_ARGS=	-Fpr
+USES=		gmake
+CFLAGS+=	-I. -Wno-format
+MAKE_ARGS=	SYS=freebsd CC=${CC} CFLAGS="${CFLAGS}" LIBS="-lpcap -lm ${PTHREAD_LIBS}"
+
+PLIST_FILES=	bin/masscan man/man8/masscan.8.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/masscan ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/doc/masscan.8 ${STAGEDIR}${MANPREFIX}/man/man8
+
+regression-test: build
+	${WRKSRC}/bin/masscan --selftest
+
+.include <bsd.port.mk>

Added: head/security/masscan/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/masscan/distinfo	Sat Nov 16 12:11:27 2013	(r333987)
@@ -0,0 +1,2 @@
+SHA256 (masscan-1.0.tar.gz) = 703f5b61246dd70f71c4145e254a0b9306ffd302b466a2b615ea9aae1db34d43
+SIZE (masscan-1.0.tar.gz) = 241907

Added: head/security/masscan/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/masscan/pkg-descr	Sat Nov 16 12:11:27 2013	(r333987)
@@ -0,0 +1,7 @@
+masscan is a very fast port scanner.
+
+Using masscan, you can get results similar to nmap.
+And masscan is not only faster than other scanners,
+also more flexible setting for address and port ranges.
+
+WWW: https://github.com/robertdavidgraham/masscan
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Antoine Brodin freebsd_committer freebsd_triage 2013-11-16 12:20:37 UTC
State Changed
From-To: open->closed

New port added, thanks!