Skip to content

Commit

Permalink
fixing vuln in http 0.1.19, updating to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cutler-scott-newrelic committed Jan 15, 2020
1 parent 4d7e84c commit c951a6c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_hogs"
version = "1.0.0"
version = "1.0.1"
authors = ["Scott Cutler <[email protected]>"]
edition = "2018"
description = "This project provides a set of scanners that will use regular expressions to try and detect the presence of sensitive information such as API keys, passwords, and personal information. It includes a set of regular expressions by default, but will also accept a JSON object containing your custom regular expressions."
Expand Down
2 changes: 1 addition & 1 deletion src/aws_scanning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ impl Default for S3Scanner {
fn default() -> Self {
Self::new()
}
}
}
2 changes: 1 addition & 1 deletion src/bin/ankamali_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
fn main() {
let matches = clap_app!(ankamali_hog =>
(version: "1.0.0")
(version: "1.0.1")
(author: "Scott Cutler <[email protected]>")
(about: "Google Drive secret scanner in Rust.")
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")
Expand Down
2 changes: 1 addition & 1 deletion src/bin/berkshire_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use std::iter::FromIterator;
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
fn main() {
let matches = clap_app!(berkshire_hog =>
(version: "1.0.0")
(version: "1.0.1")
(author: "Scott Cutler <[email protected]>")
(about: "S3 secret hunter in Rust. Avoid bandwidth costs, run this within a VPC!")
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")
Expand Down
2 changes: 1 addition & 1 deletion src/bin/choctaw_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
fn main() {
let matches = clap_app!(choctaw_hog =>
(version: "1.0.0")
(version: "1.0.1")
(author: "Scott Cutler <[email protected]>")
(about: "Git secret scanner in Rust")
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")
Expand Down
2 changes: 1 addition & 1 deletion src/git_scanning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,4 +545,4 @@ impl Default for GitScanner {
fn default() -> Self {
Self::new()
}
}
}
2 changes: 1 addition & 1 deletion src/google_scanning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,4 +309,4 @@ impl Default for GDriveScanner {
fn default() -> Self {
Self::new()
}
}
}
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,4 +600,4 @@ impl Default for SecretScannerBuilder {
fn default() -> Self {
Self::new()
}
}
}

0 comments on commit c951a6c

Please sign in to comment.