Skip to content

Commit

Permalink
last version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cutler-scott-newrelic committed Apr 16, 2021
1 parent aa80421 commit fbb6c88
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Download and unzip the [latest ZIP](https://github.com/newrelic/rusty-hog/releas
on the releases tab. Then, run each binary with `-h` to see the usage.

```shell script
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.8/rustyhogs-musl_darwin_1.0.8.zip
unzip rustyhogs-musl_darwin_1.0.8.zip
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.9/rustyhogs-musl_darwin_1.0.9.zip
unzip rustyhogs-musl_darwin_1.0.9.zip
darwin_releases/choctaw_hog -h
```

Expand All @@ -59,8 +59,8 @@ Rusty Hog Docker images can be found at the authors personal DockerHub page [her
A Docker Image is built for each Hog and for each release. So to use choctaw_hog you would run the following commands:

```shell script
docker pull wetfeet2000/choctaw_hog:1.0.8
docker run -it --rm wetfeet2000/choctaw_hog:1.0.8 --help
docker pull wetfeet2000/choctaw_hog:1.0.9
docker run -it --rm wetfeet2000/choctaw_hog:1.0.9 --help
```

## How to build
Expand Down
2 changes: 1 addition & 1 deletion src/bin/ankamali_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,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.8")
(version: "1.0.9")
(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::collections::HashSet;
/// 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.8")
(version: "1.0.9")
(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/essex_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub struct ConfluencePage {
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
fn main() {
let matches = clap_app!(gottingen_hog =>
(version: "1.0.8")
(version: "1.0.9")
(author: "Emily Cain <[email protected]>, Scott Cutler")
(about: "Confluence 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/gottingen_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub struct JiraFinding {
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
fn main() {
let matches = clap_app!(gottingen_hog =>
(version: "1.0.8")
(version: "1.0.9")
(author: "Emily Cain <[email protected]>")
(about: "Jira secret scanner in Rust.")
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")
Expand Down

0 comments on commit fbb6c88

Please sign in to comment.