svn commit: r460860 - in head/net: . reaver

Yuri Victorovich yuri at FreeBSD.org
Sat Feb 3 23:47:37 UTC 2018


Author: yuri
Date: Sat Feb  3 23:47:36 2018
New Revision: 460860
URL: https://svnweb.freebsd.org/changeset/ports/460860

Log:
  New port: net/reaver: Reaver brute force attack against WPS (Wi-Fi Protected Setup)
  
  See details here:
  https://github.com/t6x/reaver-wps-fork-t6x
  
  PR:		225400
  Submitted by:	Martin Filla <martinfilla at post.cz>
  Approved by:	adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D14101

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Feb  3 22:51:09 2018	(r460859)
+++ head/net/Makefile	Sat Feb  3 23:47:36 2018	(r460860)
@@ -1128,6 +1128,7 @@
     SUBDIR += rdapper
     SUBDIR += rdesktop
     SUBDIR += rdist6
+    SUBDIR += reaver
     SUBDIR += recvnet
     SUBDIR += redir
     SUBDIR += relayd

Added: head/net/reaver/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/reaver/Makefile	Sat Feb  3 23:47:36 2018	(r460860)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	reaver
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.6.4
+CATEGORIES=	net
+
+MAINTAINER=	martinfilla at post.cz
+COMMENT=	Reaver brute force attack against WPS (Wi-Fi Protected Setup)
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/../docs/LICENSE
+
+USES=		gmake
+GNU_CONFIGURE=	yes
+USE_GITHUB=	yes
+GH_ACCOUNT=	t6x
+GH_PROJECT=	${PORTNAME}-wps-fork-t6x
+
+WRKSRC_SUBDIR=	src
+
+PLIST_FILES=	bin/reaver \
+		bin/wash \
+		man/man1/reaver.1.gz
+
+post-install:
+		@cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} bin/reaver bin/wash
+		@${RM} -r ${STAGEDIR}/var/lib
+		${INSTALL_MAN} ${WRKSRC}/../docs/reaver.1.gz ${STAGEDIR}${PREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/net/reaver/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/reaver/distinfo	Sat Feb  3 23:47:36 2018	(r460860)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1517179510
+SHA256 (t6x-reaver-wps-fork-t6x-v1.6.4_GH0.tar.gz) = 1fa2e70857017a5658c2d00b30b6a20a5ea1f0117b428b0ddf422444e11e86ff
+SIZE (t6x-reaver-wps-fork-t6x-v1.6.4_GH0.tar.gz) = 480048

Added: head/net/reaver/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/reaver/pkg-descr	Sat Feb  3 23:47:36 2018	(r460860)
@@ -0,0 +1,10 @@
+Reaver implements a brute force attack against WPS (Wi-Fi Protected Setup)
+in order to recover WPA/WPA2 passphrases.
+
+Reaver is intended for penetration testing only, and not for unauthorized access
+to protected computer networks. Reaver exploits the flaws of the WPS design.
+
+The implementation is based on the paper:
+https://sviehb.files.wordpress.com/2011/12/viehboeck_wps.pdf
+
+WWW: https://github.com/t6x/reaver-wps-fork-t6x/


More information about the svn-ports-head mailing list