-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: third beta version of the application (#4)
* feat: settings page and config file * feat: mac address changer * feat: github actions release deployer * fix: header bar icons are now at the left * fix: columns resizing issues * fix: improved update window * fix: channel entry filter Signed-off-by: Martin Olivier <[email protected]>
- Loading branch information
1 parent
9401e9b
commit 7704f32
Showing
34 changed files
with
723 additions
and
182 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -25,15 +25,15 @@ jobs: | |
name: conventional commits | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: webiny/[email protected] | ||
|
||
linter: | ||
name: linter | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: sudo apt update && sudo apt install -y libgtk-4-dev libglib2.0-dev | ||
|
@@ -60,7 +60,7 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: sudo apt update && sudo apt install -y libgtk-4-dev libglib2.0-dev | ||
|
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,31 @@ | ||
name: "Release" | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
release: | ||
name: "Deploy" | ||
runs-on: "ubuntu-22.04" | ||
permissions: write-all | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: sudo apt update && sudo apt install -y libgtk-4-dev libglib2.0-dev | ||
|
||
- name: Install cargo-deb | ||
run: cargo install cargo-deb | ||
|
||
- name: Build project | ||
run: cargo deb | ||
|
||
- name: Deploy release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: ./target/debian/*.deb | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,13 +1,13 @@ | ||
[package] | ||
name = "airgorah" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "MIT" | ||
description = "A WiFi auditing software that can perform deauth attacks and passwords cracking" | ||
authors = ["Martin Olivier <[email protected]>"] | ||
homepage = "https://github.com/martin-olivier/airgorah" | ||
repository = "https://github.com/martin-olivier/airgorah" | ||
documentation = "https://github.com/martin-olivier/airgorah" | ||
description = "A WiFi auditing software that can perform deauth attacks and passwords cracking" | ||
keywords = ["networking", "pentest", "aircrack-ng", "gui", "linux"] | ||
readme = "README.md" | ||
exclude = ["/.github", "/package", "/docs"] | ||
|
@@ -17,26 +17,28 @@ gtk4 = { version = "0.6.4", features = ["v4_6"] } | |
glib = "0.17.5" | ||
serde = { version = "1.0.158", features = ["derive"] } | ||
serde_json = "1.0.94" | ||
toml = "0.7.3" | ||
csv = "1.2.1" | ||
sudo = "0.6.0" | ||
ctrlc = "3.2.5" | ||
regex = "1.7.2" | ||
regex = "1.7.3" | ||
lazy_static = "1.4.0" | ||
ureq = { version = "2.6.2", features = ["json"] } | ||
which = "4.4.0" | ||
|
||
[package.metadata.deb] | ||
copyright = "2022, Martin Olivier" | ||
copyright = "2023, Martin Olivier" | ||
maintainer = "Martin Olivier <[email protected]>" | ||
license-file = [ "LICENSE" ] | ||
license-file = ["LICENSE"] | ||
extended-description = "A WiFi auditing software that can perform deauth attacks and passwords cracking" | ||
depends = "gnome-terminal, pkexec, libgtk-4-1 (>= 4.6.0), dbus-x11, wireless-tools, aircrack-ng (>= 1.6), wireshark-common" | ||
depends = "gnome-terminal, pkexec, libgtk-4-1 (>= 4.6.0), dbus-x11, net-tools, wireless-tools, aircrack-ng (>= 1.6), wireshark-common, macchanger" | ||
priority = "optional" | ||
section = "utility" | ||
assets = [ | ||
["target/release/airgorah", "/usr/bin/airgorah", "755"], | ||
["README.md", "/usr/share/doc/airgorah/README", "644"], | ||
["icons/app_icon.png", "/usr/share/app-install/icons/airgorah.png", "644"], | ||
["package/config.toml", "/etc/airgorah/config.toml", "644"], | ||
["package/.desktop", "/usr/share/applications/com.martin-olivier.airgorah.desktop", "644"], | ||
["package/.policy", "/usr/share/polkit-1/actions/org.freedesktop.policykit.airgorah.policy", "755"], | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Version=0.2.0 | ||
Version=0.3.0 | ||
Type=Application | ||
Terminal=false | ||
Exec=pkexec airgorah | ||
|
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,3 @@ | ||
mac_address = "random" | ||
display_hidden_ap = true | ||
kill_network_manager = true |
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.