Skip to content

Commit

Permalink
Fixed Docker routing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s1t0r1sh3r3 committed Jan 22, 2024
1 parent 07d045e commit d18e6c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Add WPS version to network selection menu for WPS networks
- Reordered networks on network selection menus (standard and WPS), now networks with the strongest received signal will be placed last to avoid scrolling
- Fixed small bug on Evil Twin captive portal attack for passwords containing more than one space char
- Fixed Docker routing problem

### 11.21
- Chinese language translation added (Thank you to "zcbxx")
Expand Down
6 changes: 4 additions & 2 deletions airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14472,9 +14472,11 @@ function iptables_nftables_detection() {
fi

if [ "${iptables_nftables}" -eq 0 ]; then
if hash iptables-legacy 2> /dev/null; then
if hash iptables-legacy 2> /dev/null && ! hash iptables 2> /dev/null; then
iptables_cmd="iptables-legacy"
else
elif hash iptables 2> /dev/null && ! hash iptables-legacy 2> /dev/null; then
iptables_cmd="iptables"
elif hash iptables 2> /dev/null && hash iptables-legacy 2> /dev/null; then
iptables_cmd="iptables"
fi
else
Expand Down

0 comments on commit d18e6c0

Please sign in to comment.