From a2352dd51dc3742cac675a1a35aa76a07bf3b251 Mon Sep 17 00:00:00 2001 From: Alexander Mironov Date: Sun, 23 Jan 2022 15:52:09 +0300 Subject: [PATCH] v3.1.0 -> v3.2.0 --- Cargo.toml | 4 ++-- README.md | 4 +++- src/args.rs | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 28ed7e1..3cc8a70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x8" -version = "3.1.0" +version = "3.2.0" authors = ["Alexander Mironov "] edition = "2018" license = "GPL-3.0-or-later" @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] tokio = { version = "1", features = ["full"] } futures = "0.3.15" -reqwest = { version = "0.11.2", features = ["socks", "json", "cookies", "rustls-tls", "trust-dns", "gzip"] } +reqwest = { version = "0.11", features = ["socks", "json", "cookies", "rustls-tls", "trust-dns", "gzip"] } regex = "1.3.7" percent-encoding = "2.1.0" lazy_static = "1.4.0" diff --git a/README.md b/README.md index d2d4d46..a762858 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,7 @@ USAGE: x8 [FLAGS] [OPTIONS] FLAGS: + --append Append to the output file instead of overwriting it. --as-body Send parameters via body. Built in body types that can be detected automatically: json, urlencode --disable-cachebuster @@ -152,6 +153,7 @@ FLAGS: keyword - specify this argument for a more accurate search --keep-newlines --body 'a\r\nb' -> --body 'a{{new_line}}b'. Works with body and parameter templates only. + --reflected-only Disable page comparison and search for reflected parameters only. --replay-once If replay proxy is specified, send all found parameters within one request. --test Prints request and response -V, --version Prints version information @@ -193,7 +195,7 @@ OPTIONS: --save-responses Save matched responses to a directory -u, --url You can add a custom injection point with %s. --value-size - Custom value size. Affects {{random}} variables as well (default is 5) + Custom value size. Affects {{random}} variables as well (default is 7) -v, --verbose Verbose level 0/1/2 (default is 1) -w, --wordlist The file with parameters diff --git a/src/args.rs b/src/args.rs index c1d5173..77a5fd2 100644 --- a/src/args.rs +++ b/src/args.rs @@ -90,7 +90,7 @@ pub fn get_config() -> (Config, usize) { .arg( Arg::with_name("append") .long("append") - .help("Append to the output file instead of overwriting it") + .help("Append to the output file instead of overwriting it.") ) .arg( Arg::with_name("method")