-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
121 additions
and
48 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,6 +1,6 @@ | ||
[package] | ||
name = "rusty_hogs" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
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." | ||
|
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
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 |
---|---|---|
|
@@ -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.1") | ||
(version: "1.0.2") | ||
(author: "Scott Cutler <[email protected]>") | ||
(about: "Google Drive secret scanner in Rust.") | ||
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file") | ||
|
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 |
---|---|---|
|
@@ -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.1") | ||
(version: "1.0.2") | ||
(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") | ||
|
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 |
---|---|---|
|
@@ -49,7 +49,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.1") | ||
(version: "1.0.2") | ||
(author: "Scott Cutler <[email protected]>") | ||
(about: "Git secret scanner in Rust") | ||
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file") | ||
|
Oops, something went wrong.