Module: PWN::Plugins::Findings
- Defined in:
- lib/pwn/plugins/findings.rb
Overview
Persistent finding rows for pwn-ai (title, severity, host, evidence, PoC).
Constant Summary collapse
- FILE =
File.join(Dir.home, '.pwn', 'findings.jsonl')
Class Method Summary collapse
- .authors ⇒ Object
- .chain(opts = {}) ⇒ Object
-
.chain_impact(opts = {}) ⇒ Object
Combine findings only when a combined-impact evidence file names every id.
- .chain_score(opts = {}) ⇒ Object
- .evidence_verify(opts = {}) ⇒ Object
- .help ⇒ Object
-
.issue_work_gaps(opts = {}) ⇒ Object
Gaps that keep issue work unfinished: unreproduced rows, unchained pairs.
- .query(opts = {}) ⇒ Object
- .record(opts = {}) ⇒ Object
-
.record_structured(opts = {}) ⇒ Object
Strict P10 boundary.
- .render(opts = {}) ⇒ Object
- .report(opts = {}) ⇒ Object
- .required_bins ⇒ Object
-
.retest(opts = {}) ⇒ Object
Re-run the same PoC path after a fix.
-
.verify(opts = {}) ⇒ Object
Attest a working PoC from request/response or script output.
Class Method Details
.authors ⇒ Object
385 386 387 |
# File 'lib/pwn/plugins/findings.rb', line 385 public_class_method def self. "AUTHOR(S):\n 0day Inc. <[email protected]>\n" end |
.chain(opts = {}) ⇒ Object
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/pwn/plugins/findings.rb', line 186 public_class_method def self.chain(opts = {}) parent_id = opts[:parent_id].to_s raise 'ERROR: parent_id is required' if parent_id.empty? child = record( opts.merge( chain_parent_id: parent_id, evidence: (opts[:evidence].to_s.length >= 40 ? opts[:evidence] : 'Chained finding reuses parent PoC evidence and raises composite impact.') ) ) ranks = { 'info' => 0, 'low' => 1, 'medium' => 2, 'high' => 3, 'critical' => 4 } parent = report.find { |r| r[:id].to_s == parent_id } sev = [parent&.[](:severity), child[:severity]].compact.max_by { |s| ranks[s.to_s] || 0 } child.merge(composite_severity: sev) end |
.chain_impact(opts = {}) ⇒ Object
Combine findings only when a combined-impact evidence file names every id.
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/pwn/plugins/findings.rb', line 227 public_class_method def self.chain_impact(opts = {}) opts = opts.transform_keys(&:to_sym) ids = Array(opts[:ids]).map(&:to_s) raise ArgumentError, 'ids must name at least two findings' if ids.length < 2 rows = report chosen = ids.map { |id| rows.find { |row| row[:id].to_s == id } } raise ArgumentError, 'ids must name existing findings' if chosen.any?(&:nil?) path = opts[:combined_impact_path].to_s raise ArgumentError, 'combined_impact_path must be an existing readable absolute file' unless path.start_with?('/') && File.file?(path) && File.readable?(path) text = File.read(path) raise ArgumentError, 'combined_impact_path must be at least 40 characters and name every finding id' unless text.length >= 40 && ids.all? { |id| text.include?(id) } score = chain_score(ids: ids) ranks = { 'info' => 0, 'low' => 1, 'medium' => 2, 'high' => 3, 'critical' => 4 } combined = score[:combined_severity] if opts[:escalate] wanted = opts[:combined_severity].to_s raise ArgumentError, 'combined_severity is required when escalate is true' if wanted.empty? || !ranks.key?(wanted) combined = wanted end patch = { combined_impact: path, combined_severity: combined, attack_chain_refs: (Array(chosen.last[:attack_chain_refs]) + ids[0..-2]).uniq } updated = rewrite_row(id: ids.last, patch: patch) evidence_anchor(row: updated, arts: [path]) { finding_ids: ids, combined_severity: combined, combined_impact_path: path, rationale: opts[:escalate] ? 'independently evidenced combined impact' : score[:rationale], finding: updated } end |
.chain_score(opts = {}) ⇒ Object
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/pwn/plugins/findings.rb', line 202 public_class_method def self.chain_score(opts = {}) ids = Array(opts[:ids] || opts[:chain_refs]).map(&:to_s) rows = report.select { |r| ids.include?(r[:id].to_s) || ids.include?(r[:chain_parent_id].to_s) } rows = report if rows.empty? && ids.empty? ranks = { 'info' => 0, 'low' => 1, 'medium' => 2, 'high' => 3, 'critical' => 4, 'unproven' => 0 } peak = rows.map { |r| ranks[r[:severity].to_s] || 0 }.max || 0 sev = %w[info low medium high critical][peak] || 'info' { chain_refs: rows.map { |r| r[:id] }, score: sev, combined_severity: sev, n: rows.length, rationale: 'Maximum recorded constituent severity. No automatic escalation; linking is not proof of combined exploitability.' } end |
.evidence_verify(opts = {}) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/pwn/plugins/findings.rb', line 147 public_class_method def self.evidence_verify(opts = {}) eng = (opts[:engagement_id] || opts[:name] || 'default').to_s path = File.join(Dir.home, '.pwn', 'engagements', eng, 'evidence.jsonl') return { ok: true, rows: 0 } unless File.file?(path) mismatches = [] n = 0 File.readlines(path).each do |ln| row = JSON.parse(ln, symbolize_names: true) n += 1 unless File.file?(row[:path].to_s) mismatches << row[:path] next end sha = Digest::SHA256.file(row[:path]).hexdigest mismatches << row[:path] unless sha == row[:sha256].to_s end { ok: mismatches.empty?, rows: n, mismatches: mismatches } end |
.help ⇒ Object
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
# File 'lib/pwn/plugins/findings.rb', line 389 public_class_method def self.help puts "USAGE: # List host binaries this module expects to be installed. #{self}.required_bins # Strict structured finding boundary; accepted input is not execution proof. #{self}.record_structured( title: 'required - finding title', cwe: 'required - CWE identifier', cvss_vector: 'required - complete CVSS 3.0/3.1 base vector', cvss_score: 'required - numeric score matching vector', affected_asset: 'required - recon asset ID or asset identifier', evidence_paths: 'required - existing readable absolute paths', poc: 'required - command or code string', attack_chain_refs: 'required - Array of existing same-engagement finding IDs', remediation: 'required - remediation instructions', confidence: 'required - numeric 0..1', engagement_id: 'optional - simple engagement identifier', session_id: 'optional - session identifier' ) # Append a legacy finding row to ~/.pwn/findings.jsonl. #{self}.record( title: 'required - short finding title', severity: 'optional - info|low|medium|high|critical (defaults to info)', host: 'optional - affected host or URL', evidence: 'optional - proof text or path', poc: 'optional - filesystem path of a PoC or Hash with type/path/reproduction_steps', poc_artifacts: 'required - Array of artifact paths proving the issue', cvss: 'optional - CVSS vector or score string', cvss_vector: 'optional - CVSS 3.1 vector string (defaults to cvss)', affected_asset: 'optional - host or URL the finding applies to (defaults to host)', reproduction_steps: 'optional - how to replay the PoC', chain_refs: 'optional - Array of related finding ids', status: 'optional - open|closed (defaults to open)', engagement_id: 'optional - engagement identifier', session_id: 'optional - pwn-ai session id', chain_parent_id: 'optional - id of a parent finding this issue chains from' ) # Alias of report for querying stored findings. #{self}.query( host: 'optional - affected host or URL' ) # Record a child finding chained to a parent and return composite severity. #{self}.chain( parent_id: 'required - id of the parent finding', title: 'required - short finding title', severity: 'optional - info|low|medium|high|critical (defaults to info)', poc_artifacts: 'required - Array of artifact paths proving the issue', host: 'optional - affected host or URL', session_id: 'optional - pwn-ai session id' ) # List recorded findings, optionally filtered by host. #{self}.report( host: 'optional - only rows whose host matches this string' ) # Render findings as markdown, html, json, and SARIF reports. #{self}.render( dir_path: 'optional - output directory (defaults to ~/.pwn/exports)', report_name: 'optional - basename without extension (defaults to findings)' ) # Re-hash evidence files and report tampering. #{self}.evidence_verify( engagement_id: 'optional - engagement name (defaults to default)', name: 'optional - alias for engagement_id' ) # Recompute combined severity for chained findings. #{self}.chain_score( ids: 'optional - Array of finding ids to score together', chain_refs: 'optional - alias for ids' ) # Attest a working PoC from HTTP or script evidence; hashes are not execution. #{self}.verify( id: 'required - finding id', kind: 'required - http or script', impact: 'required - marker that must appear in the evidence', request_path: 'optional - absolute HTTP request file when kind is http', response_path: 'optional - absolute HTTP response file when kind is http', execution_log: 'optional - absolute script output file when kind is script' ) # Re-run the same PoC path after a fix (still_open or fixed). #{self}.retest( id: 'required - finding id', kind: 'required - http or script', impact: 'required - marker that must appear in the evidence', request_path: 'optional - absolute HTTP request file when kind is http', response_path: 'optional - absolute HTTP response file when kind is http', execution_log: 'optional - absolute script output file when kind is script' ) # Escalate combined severity only with an evidence file that names every id. #{self}.chain_impact( ids: 'required - Array of at least two finding ids', combined_impact_path: 'required - absolute evidence file', escalate: 'optional - true to set combined_severity from evidence', combined_severity: 'optional - info|low|medium|high|critical when escalate is true' ) # List unreproduced findings and whether two-plus reproduced rows lack a chain. #{self}.issue_work_gaps( engagement_id: 'optional - engagement identifier', session_id: 'optional - pwn-ai session id' ) # Print the AUTHOR(S) string for this module. #{self}.authors " constants.sort end |
.issue_work_gaps(opts = {}) ⇒ Object
Gaps that keep issue work unfinished: unreproduced rows, unchained pairs.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/pwn/plugins/findings.rb', line 265 public_class_method def self.issue_work_gaps(opts = {}) opts = opts.transform_keys(&:to_sym) rows = report eng = opts[:engagement_id].to_s sid = opts[:session_id].to_s rows = rows.select { |row| row[:engagement_id].to_s == eng } unless eng.empty? rows = rows.select { |row| row[:session_id].to_s == sid } unless sid.empty? structured = rows.select { |row| row[:cwe].to_s.start_with?('CWE-') || row.key?(:verification_status) } reproduced = structured.select { |row| row[:verification_status].to_s == 'reproduced' } unverified = structured.select { |row| row[:verification_status].to_s == 'not_executed' } unchained = reproduced.length >= 2 && reproduced.none? { |row| Array(row[:attack_chain_refs]).any? || row[:combined_impact].to_s.strip != '' } { recorded: structured.map { |row| row[:id] }, unverified: unverified.map { |row| row[:id] }, reproduced: reproduced.map { |row| row[:id] }, unchained: unchained } end |
.query(opts = {}) ⇒ Object
182 183 184 |
# File 'lib/pwn/plugins/findings.rb', line 182 public_class_method def self.query(opts = {}) report(opts) end |
.record(opts = {}) ⇒ Object
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/pwn/plugins/findings.rb', line 100 public_class_method def self.record(opts = {}) title = opts[:title].to_s raise 'ERROR: title is required' if title.empty? arts = Array(opts[:poc_artifacts]).map(&:to_s).reject(&:empty?) if opts[:poc].is_a?(Hash) arts << opts[:poc][:path].to_s unless opts[:poc][:path].to_s.empty? else arts << opts[:poc].to_s unless opts[:poc].to_s.empty? end raise 'ERROR: poc_artifacts are required' if arts.empty? ev = opts[:evidence] ev_list = Array(ev).map(&:to_s) ev_text = ev_list.join(' ') raise 'ERROR: evidence must be at least 40 characters citing the PoC' if ev_text.length < 40 sha_ev = arts.filter_map do |p| next unless File.file?(p) Digest::SHA256.file(p).hexdigest end proven = sha_ev.any? row = { id: SecureRandom.hex(6), title: title, severity: proven ? (opts[:severity] || 'info').to_s : 'unproven', cvss_vector: (opts[:cvss_vector] || opts[:cvss]).to_s, affected_asset: (opts[:affected_asset] || opts[:host]).to_s, host: opts[:host].to_s, evidence: sha_ev.any? ? sha_ev : ev_list, poc: opts[:poc].is_a?(Hash) ? opts[:poc] : { type: 'file', path: arts.first, reproduction_steps: opts[:reproduction_steps].to_s }, poc_artifacts: arts, chain_refs: Array(opts[:chain_refs] || opts[:chain_parent_id]).map(&:to_s).reject(&:empty?), cvss: opts[:cvss].to_s, status: proven ? (opts[:status] || 'open').to_s : 'unproven', engagement_id: opts[:engagement_id].to_s, chain_parent_id: opts[:chain_parent_id].to_s, session_id: opts[:session_id].to_s, at: Time.now.utc.iso8601 } FileUtils.mkdir_p(File.dirname(FILE)) File.open(FILE, 'a') { |f| f.puts(JSON.generate(row)) } evidence_anchor(row: row, arts: arts) row end |
.record_structured(opts = {}) ⇒ Object
Strict P10 boundary. Legacy record remains available for older callers.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/pwn/plugins/findings.rb', line 20 public_class_method def self.record_structured(opts = {}) opts = opts.transform_keys(&:to_sym) i[title cwe cvss_vector affected_asset poc remediation].each do |key| raise ArgumentError, "#{key} must be a non-empty string" unless opts[key].is_a?(String) && !opts[key].strip.empty? end raise ArgumentError, 'cwe must be CWE-<positive integer>' unless opts[:cwe].match?(/\ACWE-[1-9]\d*\z/) engagement = opts[:engagement_id].to_s raise ArgumentError, 'engagement_id must be a simple identifier' unless engagement.empty? || engagement.match?(/\A[a-zA-Z0-9_-]+\z/) validate_cvss(opts) confidence = opts[:confidence] raise ArgumentError, 'confidence must be numeric in 0..1' unless confidence.is_a?(Numeric) && confidence.finite? && confidence.between?(0, 1) paths = opts[:evidence_paths] raise ArgumentError, 'evidence_paths must contain existing readable absolute file paths' unless paths.is_a?(Array) && !paths.empty? && paths.all? { |path| path.is_a?(String) && path.start_with?('/') && File.file?(path) && File.readable?(path) } refs = opts[:attack_chain_refs] rows = report(engagement_id: opts[:engagement_id].to_s) raise ArgumentError, 'attack_chain_refs must reference existing findings in this engagement' unless refs.is_a?(Array) && refs.all? { |id| id.is_a?(String) && rows.any? { |row| row[:id] == id } } score = opts[:cvss_score] severity = if score.zero? 'info' elsif score < 4 'low' elsif score < 7 'medium' elsif score < 9 'high' else 'critical' end row = opts.slice(:title, :cwe, :cvss_vector, :cvss_score, :affected_asset, :evidence_paths, :poc, :attack_chain_refs, :remediation, :confidence, :engagement_id, :session_id) row = row.merge(id: SecureRandom.hex(6), severity: severity, status: 'open', verification_status: 'not_executed', chain_refs: refs, host: opts[:affected_asset], evidence: paths.map { |path| Digest::SHA256.file(path).hexdigest }, poc_artifacts: [], at: Time.now.utc.iso8601) FileUtils.mkdir_p(File.dirname(FILE)) File.open(FILE, 'a') do |file| file.flock(File::LOCK_EX) file.puts(JSON.generate(row)) end evidence_anchor(row: row, arts: paths) row end |
.render(opts = {}) ⇒ Object
280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/pwn/plugins/findings.rb', line 280 public_class_method def self.render(opts = {}) dir = opts[:dir_path].to_s dir = File.join(Dir.home, '.pwn', 'exports') if dir.empty? name = opts[:report_name].to_s name = 'findings' if name.empty? payload = { title: 'Findings', findings: report(opts) } { markdown: PWN::Reports::Markdown.generate(results_hash: payload, dir_path: dir, report_name: name), html: PWN::Reports::HTML.generate(results_hash: payload, dir_path: dir, report_name: name), json: PWN::Reports::JSON.generate(results_hash: payload, dir_path: dir, report_name: name), sarif: PWN::Reports::SARIF.generate(results_hash: payload, dir_path: dir, report_name: name) } end |
.report(opts = {}) ⇒ Object
168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/pwn/plugins/findings.rb', line 168 public_class_method def self.report(opts = {}) return [] unless File.file?(FILE) rows = File.readlines(FILE).filter_map do |ln| JSON.parse(ln, symbolize_names: true) rescue JSON::ParserError nil end host = opts[:host].to_s rows = rows.select { |r| r[:host].to_s == host } unless host.empty? rows = rows.select { |r| r[:engagement_id].to_s == opts[:engagement_id].to_s } if opts.key?(:engagement_id) rows end |
.required_bins ⇒ Object
15 16 17 |
# File 'lib/pwn/plugins/findings.rb', line 15 public_class_method def self.required_bins [] end |
.retest(opts = {}) ⇒ Object
Re-run the same PoC path after a fix. Impact present => still_open; absent => fixed.
221 222 223 |
# File 'lib/pwn/plugins/findings.rb', line 221 public_class_method def self.retest(opts = {}) attest(opts.merge(mode: 'retest')) end |
.verify(opts = {}) ⇒ Object
Attest a working PoC from request/response or script output. File hashes are not execution.
215 216 217 |
# File 'lib/pwn/plugins/findings.rb', line 215 public_class_method def self.verify(opts = {}) attest(opts.merge(mode: 'verify')) end |