deadfinder 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfe9ec423d5fb1594174b4f84d9ad6b645c36dc5e8bf5b716de490a6b36244ab
4
- data.tar.gz: 47d2a1214304fc64b068703b5a17b5fd9f8ee0937b1ef2f25f61a882d83b9cd5
3
+ metadata.gz: 5be2871f76b38b08abbb3d736b796c0bf36643d525b768557858f7ad3c645dba
4
+ data.tar.gz: 583bb7d850c87427c0b315a88424508d92a5e8af052c36ff59535a3840503fb5
5
5
  SHA512:
6
- metadata.gz: b332b06488e8aca671a4ca4a99f7a42f384321d6b06db22f02c90749c29f38245ae35a8e0aa08ce53ac5e1ec9339339931d96b9fe4b02791a73ab34aca0b1348
7
- data.tar.gz: 4a1db88c9a8f0c534b87e4afe37d3ee9133b5c5c93180680d770ee9cb687a4501352b4037deff0495a12842b2ba2ca2e8887f55cc57728b42ff550dbc5df34c2
6
+ metadata.gz: 309ef8a97cd1ff3e40b0bc423eeecb8febe878073b7dd2ff7ba06820966cb44baf66a0a748b2a1b6ca095799f11174f891cd887dcdf662be60df1bbbf37b00bd
7
+ data.tar.gz: 9e7616d621f437af47f286f4be80f5da721135cac1d760e7203d0a405112b1a7824eee98cd60cccbd3d74d720f48f053d2551e89eea83660a7a270b912cf013e
@@ -9,6 +9,10 @@ class Logger
9
9
  @silent = true
10
10
  end
11
11
 
12
+ def self.unset_silent
13
+ @silent = false
14
+ end
15
+
12
16
  def self.silent?
13
17
  @silent
14
18
  end
@@ -1,3 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- VERSION = '1.4.2'
3
+ VERSION = '1.4.4'
data/lib/deadfinder.rb CHANGED
@@ -12,9 +12,9 @@ require 'sitemap-parser'
12
12
  require 'json'
13
13
 
14
14
  Channel = Concurrent::Channel
15
- CacheSet = Concurrent::Map.new
16
- CacheQue = Concurrent::Map.new
17
- Output = Concurrent::Map.new
15
+ CACHE_SET = Concurrent::Map.new
16
+ CACHE_QUE = Concurrent::Map.new
17
+ OUTPUT = {}
18
18
 
19
19
  class DeadFinderRunner
20
20
  def default_options
@@ -72,12 +72,12 @@ class DeadFinderRunner
72
72
 
73
73
  def worker(_id, jobs, results, target, options)
74
74
  jobs.each do |j|
75
- if CacheSet[j]
76
- Logger.found "[404 Not Found] #{j}" unless CacheQue[j]
75
+ if CACHE_SET[j]
76
+ Logger.found "[404 Not Found] #{j}" unless CACHE_QUE[j]
77
77
  else
78
- CacheSet[j] = true
78
+ CACHE_SET[j] = true
79
79
  begin
80
- CacheQue[j] = true
80
+ CACHE_QUE[j] = true
81
81
  uri = URI.parse(j)
82
82
 
83
83
  # Create HTTP request with timeout and headers
@@ -92,9 +92,9 @@ class DeadFinderRunner
92
92
 
93
93
  if status_code >= 400 || (status_code >= 300 && options['include30x'])
94
94
  Logger.found "[#{status_code} #{response.message}] #{j}"
95
- CacheQue[j] = false
96
- Output[target] ||= []
97
- Output[target] << j
95
+ CACHE_QUE[j] = false
96
+ OUTPUT[target] ||= []
97
+ OUTPUT[target] << j
98
98
  end
99
99
  rescue StandardError => e
100
100
  Logger.verbose "[#{e}] #{j}" if options['verbose']
@@ -169,7 +169,8 @@ def run_sitemap(sitemap_url, options)
169
169
  end
170
170
 
171
171
  def gen_output(options)
172
- File.write(options['output'], Output.to_json) unless options['output'].empty?
172
+ output_data = OUTPUT.to_h
173
+ File.write(options['output'], JSON.pretty_generate(output_data)) unless options['output'].empty?
173
174
  end
174
175
 
175
176
  class DeadFinder < Thor
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deadfinder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - hahwul
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-06 00:00:00.000000000 Z
11
+ date: 2024-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize