Skip to content

Commit

Permalink
v3.1.0 -> v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh1Yo committed Jan 23, 2022
1 parent f8fbc7f commit a2352dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "x8"
version = "3.1.0"
version = "3.2.0"
authors = ["Alexander Mironov <sh1yo@tuta.io>"]
edition = "2018"
license = "GPL-3.0-or-later"
Expand All @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -193,7 +195,7 @@ OPTIONS:
--save-responses <save-responses> Save matched responses to a directory
-u, --url <url> You can add a custom injection point with %s.
--value-size <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> Verbose level 0/1/2 (default is 1)
-w, --wordlist <wordlist> The file with parameters
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a2352dd

Please sign in to comment.