Sha256: d71ef95ec03c92a523cf1e318e5334f71ef3957248925866049880f0166ab963
Contents?: true
Size: 897 Bytes
Versions: 52
Compression:
Stored size: 897 Bytes
Contents
# frozen_string_literal: true require 'pwn/version' # Thank you for choosing the Continuous Security Integrtion Framework! # Your Source for Source Code Analysis, Vulnerability Scanning, Exploitation, # & General Security Testing in a Continuous Integration Environment module PWN $stdout.sync = true # < Ensure that all print statements output progress in realtime $stdout.flush # < Ensure that all print statements output progress in realtime # TODO: Determine best balance for namespace naming conventions autoload :AWS, 'pwn/aws' autoload :Banner, 'pwn/banner' autoload :FFI, 'pwn/ffi' autoload :Plugins, 'pwn/plugins' autoload :Reports, 'pwn/reports' autoload :SAST, 'pwn/sast' autoload :WWW, 'pwn/www' # Display a List of Every PWN Module public_class_method def self.help constants.sort end rescue StandardError => e puts e.backtrace raise e end
Version data entries
52 entries across 52 versions & 1 rubygems