-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added buildspec for AWS codebuild and badge for output
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |