Skip to content

Commit

Permalink
Added buildspec for AWS codebuild and badge for output
Browse files Browse the repository at this point in the history
  • Loading branch information
singe committed Mar 5, 2018
1 parent 11a9687 commit 5e934f1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
hostapd MANA
================
hostapd mana
============
by Dominic White (singe) & Ian de Villiers @ sensepost ([email protected])

<a href="https://s3.amazonaws.com/sensepost-hostapd-mana/binaries/hostapd-mana-ELF-x86-64"><image src="https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiVTZhaGZ1elVRUkozQkpHMDJFQm83VkNtTVBOK3FaTzZtYjJGM3dUM20razNrVjMxS1hlZEFCQjNxRmIycHdRNWZsQTJVeFJnUVJyc25JRU85NStNcUY0PSIsIml2UGFyYW1ldGVyU3BlYyI6Ik15cGlYdUtZQys2SkFzYVkiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=hostapd-2.6" alt="AWS CodeBuild Status" /></a>

Overview
--------
A access point (evilAP) first presented at Defcon 22.
Expand Down
22 changes: 22 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5e934f1

Please sign in to comment.