diff --git a/Readme.md b/Readme.md index b82fa7dc..88fb6b8b 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,9 @@ -hostapd MANA -================ +hostapd mana +============ by Dominic White (singe) & Ian de Villiers @ sensepost (research@sensepost.com) +AWS CodeBuild Status + Overview -------- A access point (evilAP) first presented at Defcon 22. diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 00000000..3233eafa --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,22 @@ +version: 0.2 +# Ubuntu for AWS CodeBuild + +phases: + install: + commands: + - echo Entering install phase + - apt-get update + - apt-get --yes install libnl-genl-3-dev libssl-dev git build-essential + pre_build: + commands: + - echo Entering prebuild phase + - git checkout hostapd-2.6 + build: + commands: + - echo Entering buid phase + - make -C hostapd +artifacts: + files: + - hostapd/hostapd + - hostapd/hostapd_cli + discard-paths: yes