exploiting the low or non-existing entropy of some APs (pixie dust attack). It is meant for educational purposes only. All credits for the research go to Dominique Bongard. WWW: https://github.com/wiire/pixiewps PR: 204030 Submitted by: Franz Bettag <franz@bett.ag>
28 lines
483 B
Makefile
28 lines
483 B
Makefile
# Created by: Franz Bettag <franz@bett.ag>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pixiewps
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://github.com/wiire/pixiewps/
|
|
|
|
MAINTAINER= franz@bett.ag
|
|
COMMENT= Offline WPS bruteforce utility
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= wiire
|
|
GH_TAGNAME= 08a78c3c
|
|
|
|
USE_OPENSSL= yes
|
|
|
|
USES= gmake
|
|
WRKSRC_SUBDIR= src/
|
|
|
|
PLIST_FILES= bin/pixiewps
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|