Skip to content

Commit ba1c522

Browse files
increment rustyhogs to v1.0.5
1 parent 57765a1 commit ba1c522

14 files changed

+19
-19
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty_hogs"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
authors = ["Scott Cutler <scutler@newrelic.com>"]
55
edition = "2018"
66
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."

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Download and unzip the [latest ZIP](https://github.com/newrelic/rusty-hog/releas
4444
on the releases tab. Then, run each binary with `-h` to see the usage.
4545

4646
```shell script
47-
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.4/rustyhogs-musl_darwin_1.0.4.zip
48-
unzip rustyhogs-musl_darwin_1.0.4.zip
47+
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.5/rustyhogs-musl_darwin_1.0.5.zip
48+
unzip rustyhogs-musl_darwin_1.0.5.zip
4949
darwin_releases/choctaw_hog -h
5050
```
5151

scripts/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ EC2 instance on a nightly basis. You can install it using the following commands
1515
```shell script
1616
cd ~
1717
mkdir rusty-hog
18-
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.4/rustyhogs-musl_darwin_1.0.4.zip
19-
unzip rustyhogs-musl_darwin_1.0.4.zip -d rusty_hog_1.0.4
20-
cd rusty_hog_1.0.4
18+
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.5/rustyhogs-musl_darwin_1.0.5.zip
19+
unzip rustyhogs-musl_darwin_1.0.5.zip -d rusty_hog_1.0.5
20+
cd rusty_hog_1.0.5
2121
sudo cp ghe_secret_monitor.service /etc/systemd/system
2222
sudo vi ghe_secret_monitor.timer # modify each <redacted for git> field
2323
sudo cp ghe_secret_monitor.timer /etc/systemd/system

scripts/ghe_secret_monitor.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# ```shell script
88
# cd ~
99
# mkdir rusty-hog
10-
# wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.4/rustyhogs-musl_darwin_1.0.4.zip
11-
# unzip rustyhogs-musl_darwin_1.0.4.zip -d rusty_hog_1.0.4
12-
# cd rusty_hog_1.0.4
10+
# wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.5/rustyhogs-musl_darwin_1.0.5.zip
11+
# unzip rustyhogs-musl_darwin_1.0.5.zip -d rusty_hog_1.0.5
12+
# cd rusty_hog_1.0.5
1313
# sudo cp ghe_secret_monitor.service /etc/systemd/system
1414
# sudo vi ghe_secret_monitor.timer # modify each <redacted for git> field
1515
# sudo cp ghe_secret_monitor.timer /etc/systemd/system

scripts/ghe_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=ghe_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python scripts/ghe_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

scripts/htmldirlisting_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=htmldirlisting_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python scripts/htmldirlisting_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

scripts/jira_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=jira_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python jira_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

scripts/pypi_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=pypi_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python scripts/pypi_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

scripts/rubygem_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=rubygem_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python scripts/rubygem_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

scripts/s3weblisting_secret_monitor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wants=s3weblisting_secret_monitor.timer
55
[Service]
66
Type=oneshot
77
ExecStart=/home/ec2-user/anaconda3/bin/python scripts/s3weblisting_secret_monitor.py
8-
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.4
8+
WorkingDirectory=/home/ec2-user/rusty_hog_1.0.5
99
User=ec2-user
1010
Group=ec2-user
1111
Environment='PATH=/root/anaconda3/bin:/root/anaconda3/condabin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/root/.local/bin:/root/bin:/root/.local/bin:/root/bin'

src/bin/ankamali_hog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
4444
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4545
fn main() {
4646
let matches = clap_app!(ankamali_hog =>
47-
(version: "1.0.4")
47+
(version: "1.0.5")
4848
(author: "Scott Cutler <scutler@newrelic.com>")
4949
(about: "Google Drive secret scanner in Rust.")
5050
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/berkshire_hog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use std::iter::FromIterator;
4545
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4646
fn main() {
4747
let matches = clap_app!(berkshire_hog =>
48-
(version: "1.0.4")
48+
(version: "1.0.5")
4949
(author: "Scott Cutler <scutler@newrelic.com>")
5050
(about: "S3 secret hunter in Rust. Avoid bandwidth costs, run this within a VPC!")
5151
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/choctaw_hog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
5252
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
5353
fn main() {
5454
let matches = clap_app!(choctaw_hog =>
55-
(version: "1.0.4")
55+
(version: "1.0.5")
5656
(author: "Scott Cutler <scutler@newrelic.com>")
5757
(about: "Git secret scanner in Rust")
5858
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")

src/bin/duroc_hog.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const GZEXTENSIONS: &[&str] = &["gz", "tgz"];
6666
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
6767
fn main() {
6868
let matches = clap_app!(duroc_hog =>
69-
(version: "1.0.4")
69+
(version: "1.0.5")
7070
(author: "Scott Cutler <scutler@newrelic.com>")
7171
(about: "File system secret scanner in Rust")
7272
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")

0 commit comments

Comments
 (0)