mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
14 lines
251 B
Ruby
Executable File
14 lines
251 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
|
require 'rex/parser/winscp'
|
|
|
|
exit unless ARGV.count == 1
|
|
|
|
include Rex::Parser::WinSCP
|
|
|
|
puts ARGV.first
|
|
read_and_parse_ini(ARGV.first).each do |res|
|
|
puts res.inspect
|
|
end
|