timing_attack 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3fd67bcf5ff8a36acd3bbaeada7e307985a07b3b
4
- data.tar.gz: b9f7fdce31779f1e273adaa8d471af631b25d54f
3
+ metadata.gz: c03b6d3c418b88a56d480124ad7cc201280c4845
4
+ data.tar.gz: 38cc46fc07438daff5eeedce5db06a7b07db8ee7
5
5
  SHA512:
6
- metadata.gz: 4d44502e88a51e759503ac98b9ab318330cdfa27cd2d163789c83c5f062b430688c80b7f0d0fcb72fe0499cf01f76ce606d522b6d3ff6dfc01fb6c10ba0f2b09
7
- data.tar.gz: 2fb6deeb33595604a0447efa4d95818638ccaefab25fdc58d241ca9708015c976299333e08c46d4a4ac78033629250d0f566126f3f46a376a69e6825d77ebd39
6
+ metadata.gz: cd53145b7194b568c13bb782c44a34c24eed39260b73e06238b9826a1d74b009a17e453ba85a4cbfe02d3d074a49662899b0d5d325a1509d2022730a5389eda5
7
+ data.tar.gz: 4689d34477a84f463768275508b65cd20da557b9ec34732c9bfa3c7a62617865aab9f2f40f9a50a240ae875cceb64e6b97f559857a391d36251642699b726aac
data/README.md CHANGED
@@ -24,8 +24,8 @@ timing_attack [options] -u <target> <inputs>
24
24
  -p, --post Use POST, not GET
25
25
  -q, --quiet Quiet mode (don't display progress bars)
26
26
  -b, --brute-force Brute force mode
27
- --parameters STR JSON hash of parameters. 'INPUT' will be replaced with the attack string
28
- --body STR JSON of body paramets to be sent to Typhoeus. 'INPUT' will be replaced with the attack string
27
+ --parameters STR JSON hash of URL parameters. 'INPUT' will be replaced with the attack string
28
+ --body STR JSON hash of parameters to be included in the request body. 'INPUT' will be replaced with the attack string
29
29
  --http-username STR HTTP basic authentication username. 'INPUT' will be replaced with the attack string
30
30
  --http-password STR HTTP basic authentication password. 'INPUT' will be replaced with the attack string
31
31
  --percentile NUM Use NUMth percentile for calculations (default: 3)
data/exe/timing_attack CHANGED
@@ -34,10 +34,10 @@ class TimingAttackCli
34
34
  opts.on("-p", "--post", "Use POST, not GET") { |bool| options[:method] = bool ? :post : :get }
35
35
  opts.on("-q", "--quiet", "Quiet mode (don't display progress bars)") { |bool| options[:verbose] = !bool }
36
36
  opts.on("-b", "--brute-force", "Brute force mode") { |bool| options[:brute_force] = bool }
37
- opts.on("--parameters STR", "JSON hash of parameters. 'INPUT' will be replaced with the attack string") do |str|
37
+ opts.on("--parameters STR", "JSON hash of URL parameters. 'INPUT' will be replaced with the attack string") do |str|
38
38
  options[:params] = JSON.parse(str)
39
39
  end
40
- opts.on("--body STR", "JSON of body paramets to be sent to Typhoeus. 'INPUT' will be replaced with the attack string") do |str|
40
+ opts.on("--body STR", "JSON hash of parameters to be included in the request body. 'INPUT' will be replaced with the attack string") do |str|
41
41
  options[:body] = JSON.parse(str)
42
42
  end
43
43
  opts.on("--http-username STR", "HTTP basic authentication username. 'INPUT' will be replaced with the attack string") do |str|
@@ -1,3 +1,3 @@
1
1
  module TimingAttack
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timing_attack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Forrest Fleming
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-02-06 00:00:00.000000000 Z
11
+ date: 2017-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-progressbar