-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: display of unlinked clients when no ap is selected * feat: use of xterm as decryption terminal * feat: popover menu when right-clicking on aps and clients list to copy rows * fix: keep original first time seen values * fix: error management * fix: buttons sensitivity management Signed-off-by: Martin Olivier <[email protected]>
- Loading branch information
1 parent
d7b4698
commit f9ba508
Showing
21 changed files
with
642 additions
and
397 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,7 @@ | ||
-s dir ./target/release/airgorah ./icons/app_icon.png package README.md LICENSE | ||
--name airgorah | ||
--license MIT | ||
--version 0.7.1 | ||
--version 0.7.2 | ||
--description "A WiFi auditing software that can perform deauth attacks and passwords cracking" | ||
--url "https://github.com/martin-olivier/airgorah" | ||
--maintainer "Martin Olivier <[email protected]>" | ||
|
@@ -10,6 +10,7 @@ | |
--conflicts airgorah | ||
|
||
--depends bash | ||
--depends xterm | ||
--depends iw | ||
--depends macchanger | ||
--depends aircrack-ng | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,9 +1,9 @@ | ||
[package] | ||
name = "airgorah" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2021" | ||
license = "MIT" | ||
description = "A WiFi auditing software that can perform deauth attacks and passwords cracking" | ||
description = "A WiFi security auditing software mainly based on aircrack-ng tools suite" | ||
authors = ["Martin Olivier <[email protected]>"] | ||
homepage = "https://github.com/martin-olivier/airgorah" | ||
repository = "https://github.com/martin-olivier/airgorah" | ||
|
@@ -29,6 +29,7 @@ nix = { version = "0.28", features = ["signal"] } | |
ureq = { version = "2.9", features = ["json"] } | ||
log = "0.4" | ||
env_logger = "0.11" | ||
thiserror = "1" | ||
|
||
[build-dependencies] | ||
serde = { version = "1", features = ["derive"] } | ||
|
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
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
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
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
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
Oops, something went wrong.