Skip to content

Commit

Permalink
Merge pull request #26 from Ragnt/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Ragnt authored Feb 26, 2024
2 parents edae2a7 + 556bdf7 commit bf41479
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["libs/libwifi", "libs/libwifi_macros", "libs/pcap-file"]

[workspace.package]
version = "0.8.6"
version = "0.8.7"
authors = ["Ryan Butler"]
description = "80211 Attack Tool"
license = "GPL"
Expand Down
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ struct Arguments {
#[arg(short, long, name = "2 | 5 | 6 | 60")]
/// Optional - Entire band to scan - will include all channels interface can support.
band: Vec<u8>,
#[arg(short, help_heading = "Targeting", name = "MAC Address or SSID")]
#[arg(short, help_heading = "Targeting", name = "Target MAC/SSID")]
/// Optional - Target (MAC or SSID) to attack - will attack everything if none specified.
target_entry: Option<Vec<String>>,
#[arg(short, help_heading = "Targeting", name = "MAC Address or SSID")]
#[arg(short, help_heading = "Targeting", name = "WhiteList MAC/SSID")]
/// Optional - Whitelist (MAC or SSID) to NOT attack.
whitelist_entry: Option<Vec<String>>,
#[arg(long, help_heading = "Targeting", name = "Targets File")]
Expand Down Expand Up @@ -2995,7 +2995,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
});

writeln!(file, "{}", hashline).unwrap_or_else(|_| {
panic!("Could write to hashfile. ({file_name}).")
panic!("Couldn't write to hashfile. ({file_name}).")
});

if !oxide.file_data.output_files.contains(&file_name) {
Expand Down

0 comments on commit bf41479

Please sign in to comment.