Skip to content

Commit

Permalink
Merge pull request #244 from v1s1t0r1sh3r3/dev
Browse files Browse the repository at this point in the history
Dev to Master v9.10
  • Loading branch information
OscarAkaElvis authored Mar 30, 2019
2 parents 3182166 + 9814def commit 13b42c3
Show file tree
Hide file tree
Showing 44 changed files with 424 additions and 217 deletions.
3 changes: 3 additions & 0 deletions .airgeddonrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ AIRGEDDON_PRINT_HINTS=true
#Enabled true / Disabled false - Enable 5Ghz support (it has no effect if your cards are not 5Ghz compatible cards) - Default value true
AIRGEDDON_5GHZ_ENABLED=true

#Enabled true / Disabled false - Force to use iptables instead of nftables (it has no effect if nftables are not present) - Default value false
AIRGEDDON_FORCE_IPTABLES=false

#Enabled true / Disabled false - Development mode for faster development skipping intro and all initial checks - Default value false
AIRGEDDON_DEVELOPMENT_MODE=false

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 9.10
- Mdk3 replaced by Mdk4
- Fixed some minor bugs on enterprise plain text captured password process
- Fixed minor bug forcing interface mode change after smooth enterprise attack
- Tested compatibility with Wifislax 64-2.x and Kali 2019.x
- Fixed dependency problem to avoid use of xxd
- Routing rules adapted to work with nftables

### 9.01
- Improvments on options environment var system
- Minor fixes for ARM devices
Expand Down
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ ENV AIRGEDDON_URL="https://github.com/v1s1t0r1sh3r3/airgeddon.git"
ENV HASHCAT2_URL="https://github.com/v1s1t0r1sh3r3/hashcat2.0.git"
ENV BETTERCAP162_URL="https://github.com/v1s1t0r1sh3r3/bettercap1.6.2.git"
ENV DEBIAN_FRONTEND="noninteractive"
ENV KALI_REPOSITORY="http://kali.download/kali"

#Fix some problems with Kali repositories
RUN echo "deb ${KALI_REPOSITORY} kali-rolling main contrib non-free" > /etc/apt/sources.list

#Update system
RUN apt update
Expand Down Expand Up @@ -68,7 +72,7 @@ RUN \
apt -y install \
crunch \
hashcat \
mdk3 \
mdk4 \
hostapd \
lighttpd \
iptables \
Expand Down Expand Up @@ -120,6 +124,9 @@ COPY . /opt/airgeddon
#Remove auto update
RUN sed -i 's|AIRGEDDON_AUTO_UPDATE=true|AIRGEDDON_AUTO_UPDATE=false|' airgeddon/.airgeddonrc

#Force use of iptables
RUN sed -i 's|AIRGEDDON_FORCE_IPTABLES=false|AIRGEDDON_FORCE_IPTABLES=true|' airgeddon/.airgeddonrc

#Make bash script files executable
RUN chmod +x airgeddon/*.sh

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ All the needed info about how to "install | use | enjoy" `airgeddon` is present
[Hat Tip To]: https://github.com/v1s1t0r1sh3r3/airgeddon/wiki/Hat%20Tip%20To
[Inspiration]: https://github.com/v1s1t0r1sh3r3/airgeddon/wiki/Inspiration

[Version-shield]: https://img.shields.io/badge/version-9.01-blue.svg?style=flat-square&colorA=273133&colorB=0093ee "Latest version"
[Version-shield]: https://img.shields.io/badge/version-9.10-blue.svg?style=flat-square&colorA=273133&colorB=0093ee "Latest version"
[Bash4.2-shield]: https://img.shields.io/badge/bash-4.2%2B-blue.svg?style=flat-square&colorA=273133&colorB=00db00 "Bash 4.2 or later"
[License-shield]: https://img.shields.io/badge/license-GPL%20v3%2B-blue.svg?style=flat-square&colorA=273133&colorB=bd0000 "GPL v3+"
[Docker-shield]: https://img.shields.io/docker/automated/v1s1t0r1sh3r3/airgeddon.svg?style=flat-square&colorA=273133&colorB=f9ff5a "Docker rules!"
Expand Down
Loading

0 comments on commit 13b42c3

Please sign in to comment.