Module: PWN::AI::Agent::Extrospection::OSINTBridges

Defined in:
lib/pwn/ai/agent/extrospection/osint/bridges.rb

Overview

Marker submodule so this file satisfies PWN module conventions (def self.help / def self.authors per-file) WITHOUT clobbering PWN::AI::Agent::Extrospection.help defined in the parent file.

Class Method Summary collapse

Class Method Details

.authorsObject

Author(s)

0day Inc. support@0dayinc.com



222
223
224
# File 'lib/pwn/ai/agent/extrospection/osint/bridges.rb', line 222

public_class_method def self.authors
  "AUTHOR(S):\n0day Inc. <support@0dayinc.com>\n"
end

.helpObject

Display Usage for this Module



228
229
230
231
232
233
234
235
# File 'lib/pwn/ai/agent/extrospection/osint/bridges.rb', line 228

public_class_method def self.help
  <<~USAGE
    Local-tool OSINT bridge feeds for PWN::AI::Agent::Extrospection.osint.
    Feeds: #{BRIDGE_FEEDS.join(', ')}
    Bins probed: theHarvester, spiderfoot, amass, recon-ng (skips cleanly when absent).
    See PWN::AI::Agent::Extrospection.help / documentation/Extrospection.md.
  USAGE
end