-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathRakefile
39 lines (30 loc) · 816 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# encoding: utf-8
require 'rubygems'
begin
require 'bundler/setup'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler"
exit -1
end
require 'rake'
require 'rake/clean'
CLEAN.include('spec/*.xml')
require 'rubygems/tasks'
Gem::Tasks.new
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :spec => 'spec/fixtures/scan.xml'
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new
task :doc => :yard
file 'spec/fixtures/scan.xml' do |t|
puts ">>> Scanning scanme.nmap.org ..."
sh "sudo nmap -v -sS -sU -A -O --script ssh2-enum-algos,ssh-hostkey -oX #{t.name} scanme.nmap.org"
end
file 'spec/fixtures/down_host_scan.xml' do |t|
puts ">>> Scanning 225.0.0.1 ..."
sh "sudo nmap -v -sS -oX #{t.name} 225.0.0.1"
end