Skip to content

Commit 68e4a2b

Browse files
committed
Final polish for v1.0.0
1 parent c444030 commit 68e4a2b

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "doppel"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["Jake Abendroth"]
66
description = "Automated BOLA/IDOR vulnerability scanner for APIs"
77

88
[dependencies]
9-
clap = { version = "4.0", features = ["derive"] }
9+
clap = { version = "4.0", features = ["derive", "cargo"] }
1010
reqwest = { version = "0.11", features = ["json", "cookies", "blocking", "rustls-tls"] }
1111
tokio = { version = "1.0", features = ["full"] }
1212
serde = { version = "1.0", features = ["derive"] }

SECURITY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Security Policy
2+
3+
## Reporting a Vulnerability
4+
5+
If you discover a security vulnerability within Doppel, please do not open a public issue.
6+
Instead, please email **contact@jakea.net**.
7+
8+
We will prioritize fixing the issue and will release a patch as soon as possible.

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ mod tests {
6969
#[tokio::main]
7070
async fn main() {
7171
let matches = Command::new("doppel")
72-
.version("0.1.0")
72+
.version(clap::crate_version!())
7373
.author("Jake Abendroth")
7474
.about("Automated BOLA/IDOR vulnerability scanner for APIs")
7575
.after_help("EXAMPLES:\n doppel --input my.postman.json --base-url http://localhost:3000 --attacker-token TOKEN --victim-id 123\n doppel -i bruno/ -b http://api/ -a TOKEN -v 456 --no-mutational-fuzzing --enable-pii-analysis\n\nOPTIONS:\n --no-mutational-fuzzing Disable mutational fuzzing\n --enable-pii-analysis Enable Ollama PII analysis (default: off, sends data to localhost:11434)\n --no-soft-fail-analysis Disable soft fail response analysis\n --csv-report Output CSV report (default: on)\n --markdown-report Output Markdown report (default: on)\n --pdf-report Output PDF report (default: off)")

0 commit comments

Comments
 (0)