Skip to content

Commit

Permalink
Fix DoS pursuit mode process killing
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s1t0r1sh3r3 committed Aug 25, 2023
1 parent 460f830 commit 1b4ea07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- Chinese language translation added (Thank you to "zcbxx")
- Fixed bug parsing cracked PIN on WPS reaver Pixie Dust attack for newer reaver versions
- Fixed error on PMKID capturing due hcxdumptool different params for newer versions using bpf filters
- Fixed error on interfaces on "DoS pursuit mode"
- Fixed error on interfaces and process killing on "DoS pursuit mode"

### 11.20
- Improvements and fixes on "DoS pursuit mode"
Expand Down
4 changes: 3 additions & 1 deletion airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10718,8 +10718,9 @@ function set_et_control_script() {

cat >&7 <<-EOF
#!/usr/bin/env bash
et_heredoc_mode=${et_mode}
et_heredoc_mode="${et_mode}"
path_to_processes="${tmpdir}${et_processesfile}"
mdk_command="${mdk_command}"
EOF

cat >&7 <<-'EOF'
Expand Down Expand Up @@ -10841,6 +10842,7 @@ function set_et_control_script() {
kill_et_windows
kill "$(ps -C hostapd --no-headers -o pid | tr -d ' ')" &> /dev/null
kill "$(ps -C dhcpd --no-headers -o pid | tr -d ' ')" &> /dev/null
kill "$(ps -C "${mdk_command}" --no-headers -o pid | tr -d ' ')" &> /dev/null
kill "$(ps -C aireplay-ng --no-headers -o pid | tr -d ' ')" &> /dev/null
kill "$(ps -C dnsmasq --no-headers -o pid | tr -d ' ')" &> /dev/null
kill "$(ps -C lighttpd --no-headers -o pid | tr -d ' ')" &> /dev/null
Expand Down

0 comments on commit 1b4ea07

Please sign in to comment.