Sha256: f8e86787cc7c8af27fc71b42d74ec0302e14d53a544bb81ba30aec08fcdd30e1

Contents?: true

Size: 1.63 KB

Versions: 48

Compression:

Stored size: 1.63 KB

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require 'pwn'
require 'optparse'

opts = {}
OptionParser.new do |options|
  options.banner = "USAGE:
    #{File.basename($PROGRAM_NAME)} [opts]
  "

  # Nexpose Flags
  options.on('-CIP', '--console_ip=IP', '<Required - Nexpose Console IP>') { |c| opts[:console_ip] = c }
  options.on('-UCUSER', '--console_username=CUSER', '<Required - Nexpose Console Username>') { |cu| opts[:console_username] = cu }
  options.on('-PCPASS', '--console_password=CPASS', '<Required - Nexpose Console Password>') { |cp| opts[:console_password] = cp }
  options.on('-SSITE', '--site_name=SITE', '<Required - Nexpose Site Name>') { |s| opts[:site_name] = s }
  options.on('-RREPORTS', '--report_names=REPORTS', '<Required - Comma Delimited String of Report Names>') { |r| opts[:report_names] = r }
end.parse!

if opts.empty?
  puts `#{File.basename($PROGRAM_NAME)} --help`
  exit 1
end

# Nexpose
console_ip = opts[:console_ip].to_s.scrub
console_username = opts[:console_username].to_s.scrub
console_password = opts[:console_password] # Prompt if console_password.nil? (For Demos)
site_name = opts[:site_name].to_s.scrub
report_names = opts[:report_names].to_s.scrub

#-----------------
# Login to Nexpose
site_id = nil
nsc_obj = PWN::Plugins::NexposeVulnScan.login(
  console_ip: console_ip,
  username: console_username,
  password: console_password
)

nsc_obj = PWN::Plugins::NexposeVulnScan.scan_site_by_name(
  nsc_obj: nsc_obj,
  site_name: site_name
)

nsc_obj = PWN::Plugins::NexposeVulnScan.download_recurring_report(
  nsc_obj: nsc_obj,
  report_names: report_names
)

PWN::Plugins::NexposeVulnScan.logout(nsc_obj: nsc_obj)

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
pwn-0.5.214 bin/pwn_nexpose
pwn-0.5.213 bin/pwn_nexpose
pwn-0.5.212 bin/pwn_nexpose
pwn-0.5.211 bin/pwn_nexpose
pwn-0.5.210 bin/pwn_nexpose
pwn-0.5.209 bin/pwn_nexpose
pwn-0.5.207 bin/pwn_nexpose
pwn-0.5.206 bin/pwn_nexpose
pwn-0.5.205 bin/pwn_nexpose
pwn-0.5.204 bin/pwn_nexpose
pwn-0.5.203 bin/pwn_nexpose
pwn-0.5.202 bin/pwn_nexpose
pwn-0.5.201 bin/pwn_nexpose
pwn-0.5.200 bin/pwn_nexpose
pwn-0.5.199 bin/pwn_nexpose
pwn-0.5.198 bin/pwn_nexpose
pwn-0.5.197 bin/pwn_nexpose
pwn-0.5.196 bin/pwn_nexpose
pwn-0.5.195 bin/pwn_nexpose
pwn-0.5.194 bin/pwn_nexpose