2015-09-23 13:19:48 +00:00
|
|
|
# encoding: utf-8
|
2015-10-06 16:55:44 +00:00
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
2015-09-23 13:19:48 +00:00
|
|
|
|
|
|
|
require 'helper'
|
2015-10-26 03:04:18 +00:00
|
|
|
require 'inspec/resource'
|
2015-09-23 13:19:48 +00:00
|
|
|
|
2015-10-26 03:04:18 +00:00
|
|
|
describe 'Inspec::Resources::Port' do
|
2015-09-23 13:19:48 +00:00
|
|
|
it 'verify port on Ubuntu 14.04' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
2015-12-08 12:46:20 +00:00
|
|
|
_(resource.protocols).must_equal %w{ tcp tcp6 }
|
|
|
|
_(resource.pids).must_equal [1]
|
|
|
|
_(resource.processes).must_equal ['sshd']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0", "::"]
|
2015-09-23 13:19:48 +00:00
|
|
|
end
|
|
|
|
|
2016-05-31 01:08:59 +00:00
|
|
|
it 'lists all ports' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port')
|
2017-03-03 16:10:41 +00:00
|
|
|
_(resource.entries.length).must_equal 5
|
2016-05-31 01:08:59 +00:00
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal %w{ tcp tcp6 udp }
|
2017-03-03 16:10:41 +00:00
|
|
|
_(resource.pids).must_equal [1, 2043, 545, 1234]
|
|
|
|
_(resource.processes).must_equal ['sshd', 'pidgin', 'rpcbind', 'java']
|
|
|
|
_(resource.addresses).must_equal ['0.0.0.0', '2601:1:ad80:1445::', '::', '192.168.1.123']
|
2016-05-31 01:08:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'filter ports by conditions' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port').where { protocol =~ /udp/i }
|
|
|
|
_(resource.entries.length).must_equal 1
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal ['udp']
|
|
|
|
_(resource.pids).must_equal [545]
|
|
|
|
_(resource.processes).must_equal ['rpcbind']
|
|
|
|
_(resource.addresses).must_equal ['0.0.0.0']
|
|
|
|
end
|
|
|
|
|
2017-03-28 21:30:13 +00:00
|
|
|
it 'does not include an entry for a malformed IP address' do
|
|
|
|
# udp6 0 0 fe80::42:acff:fe11::123 :::* 0 54550 3335/ntpd
|
|
|
|
# the link-local IP is truncated and therefore invalid
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', 123)
|
|
|
|
_(resource.entries.length).must_equal 0
|
|
|
|
end
|
|
|
|
|
2016-01-14 21:05:22 +00:00
|
|
|
it 'verify UDP port on Ubuntu 14.04' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', 111)
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal %w{ udp }
|
|
|
|
_(resource.pids).must_equal [545]
|
|
|
|
_(resource.processes).must_equal ['rpcbind']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0"]
|
2016-08-05 11:35:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts the port as a string' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', '111')
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal %w{ udp }
|
|
|
|
_(resource.pids).must_equal [545]
|
|
|
|
_(resource.processes).must_equal ['rpcbind']
|
|
|
|
_(resource.addresses).must_equal ["0.0.0.0"]
|
2016-01-14 21:05:22 +00:00
|
|
|
end
|
|
|
|
|
2017-03-03 16:10:41 +00:00
|
|
|
it 'properly handles a IPv4 address in a v6 listing' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', 8005)
|
|
|
|
_(resource.protocols).must_equal %w{ tcp6 }
|
|
|
|
_(resource.addresses).must_equal ['192.168.1.123']
|
|
|
|
end
|
|
|
|
|
2015-09-23 13:21:25 +00:00
|
|
|
it 'verify port on MacOs x' do
|
|
|
|
resource = MockLoader.new(:osx104).load_resource('port', 2022)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.pids).must_equal [6835]
|
2015-12-08 12:46:20 +00:00
|
|
|
_(resource.protocols).must_equal ['tcp']
|
|
|
|
_(resource.processes).must_equal ['VBoxHeadl']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["127.0.0.1"]
|
2015-09-23 13:21:25 +00:00
|
|
|
end
|
|
|
|
|
2016-08-12 13:18:43 +00:00
|
|
|
it 'verify port on Windows 2012r2' do
|
2015-09-23 13:22:31 +00:00
|
|
|
resource = MockLoader.new(:windows).load_resource('port', 135)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.pids).must_equal [564]
|
2015-12-08 12:46:20 +00:00
|
|
|
_(resource.protocols).must_equal ['tcp']
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.processes).must_equal ['RpcSs']
|
|
|
|
_(resource.addresses).must_equal ['0.0.0.0', '::']
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify SSL port on Windows 2012r2' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('port', 443)
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.pids).must_equal [4]
|
|
|
|
_(resource.protocols).must_equal ['tcp']
|
|
|
|
_(resource.processes).must_equal ['System']
|
|
|
|
_(resource.addresses).must_equal ['0.0.0.0', '::']
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify syslog port on Windows 2012r2' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('port', 514)
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.pids).must_equal [1120]
|
|
|
|
_(resource.protocols).must_equal ['udp']
|
|
|
|
_(resource.processes).must_equal ['Syslogd_Service.exe']
|
|
|
|
_(resource.addresses).must_equal ['0.0.0.0']
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify not listening port on Windows' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('port', 666)
|
|
|
|
_(resource.listening?).must_equal false
|
|
|
|
_(resource.addresses).must_equal []
|
|
|
|
_(resource.protocols).must_equal []
|
2016-05-11 21:21:22 +00:00
|
|
|
_(resource.processes).must_equal []
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.addresses).must_equal []
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify all ports on Windows 2012r2' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('port')
|
|
|
|
resource.entries.length.must_equal 49
|
|
|
|
resource.protocols('tcp').entries.length.must_equal 34
|
|
|
|
resource.protocols('udp').entries.length.must_equal 15
|
2015-09-23 13:22:31 +00:00
|
|
|
end
|
|
|
|
|
2016-07-21 12:16:34 +00:00
|
|
|
it 'verify port on Windows 2008 (unpriviledged)' do
|
|
|
|
ml = MockLoader.new(:windows)
|
|
|
|
# kill windows 2012 shell commands
|
|
|
|
ml.backend.backend.commands
|
|
|
|
.select { |k, _| k.start_with? 'Get-NetTCPConnection' }
|
|
|
|
.values.each { |r| r.stdout = '' }
|
|
|
|
|
|
|
|
resource = ml.load_resource('port', 135)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.pids).must_equal [564]
|
2016-07-21 12:16:34 +00:00
|
|
|
_(resource.protocols).must_equal ['tcp']
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.processes).must_equal ['RpcSs']
|
2016-07-21 12:16:34 +00:00
|
|
|
_(resource.addresses).must_equal %w{0.0.0.0 ::}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify port list on Windows 2008 (unpriviledged)' do
|
|
|
|
ml = MockLoader.new(:windows)
|
|
|
|
# kill windows 2012 shell commands
|
|
|
|
ml.backend.backend.commands
|
|
|
|
.select { |k, _| k.start_with? 'Get-NetTCPConnection' }
|
|
|
|
.values.each { |r| r.stdout = '' }
|
|
|
|
|
|
|
|
resource = ml.load_resource('port')
|
2016-08-12 13:18:43 +00:00
|
|
|
resource.entries.length.must_equal 49
|
|
|
|
resource.protocols('tcp').entries.length.must_equal 34
|
|
|
|
resource.protocols('udp').entries.length.must_equal 15
|
2016-07-21 12:16:34 +00:00
|
|
|
end
|
|
|
|
|
2015-09-23 13:24:46 +00:00
|
|
|
it 'verify port on FreeBSD' do
|
|
|
|
resource = MockLoader.new(:freebsd10).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
2015-12-08 12:46:20 +00:00
|
|
|
_(resource.protocols).must_equal %w{ tcp6 tcp }
|
|
|
|
_(resource.pids).must_equal [668]
|
|
|
|
_(resource.processes).must_equal ['sshd']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0:0:0:0:0:0:0:0", "0.0.0.0"]
|
2015-09-23 13:24:46 +00:00
|
|
|
end
|
|
|
|
|
2015-12-03 03:08:49 +00:00
|
|
|
it 'verify port on wrlinux' do
|
|
|
|
resource = MockLoader.new(:wrlinux).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-08-12 13:18:43 +00:00
|
|
|
_(resource.pids).must_equal [1]
|
2015-12-08 12:46:20 +00:00
|
|
|
_(resource.protocols).must_equal %w{ tcp tcp6 }
|
|
|
|
_(resource.processes).must_equal ['sshd']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0", "::"]
|
2015-12-03 03:08:49 +00:00
|
|
|
end
|
|
|
|
|
2015-09-23 13:19:48 +00:00
|
|
|
it 'verify running on undefined' do
|
|
|
|
resource = MockLoader.new(:undefined).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal false
|
2016-05-11 21:21:22 +00:00
|
|
|
_(resource.protocols).must_equal []
|
|
|
|
_(resource.pids).must_equal []
|
|
|
|
_(resource.processes).must_equal []
|
|
|
|
_(resource.addresses).must_equal []
|
2015-09-23 13:19:48 +00:00
|
|
|
end
|
2015-12-08 13:04:02 +00:00
|
|
|
|
|
|
|
it 'verify port and interface on Ubuntu 14.04' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', '0.0.0.0', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal %w{ tcp }
|
|
|
|
_(resource.pids).must_equal [1]
|
|
|
|
_(resource.processes).must_equal ['sshd']
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0"]
|
2015-12-08 13:04:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify not listening port on interface on Ubuntu 14.04' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('port', '127.0.0.1', 22)
|
|
|
|
_(resource.listening?).must_equal false
|
2016-05-11 21:21:22 +00:00
|
|
|
_(resource.addresses).must_equal []
|
2015-12-08 13:04:02 +00:00
|
|
|
end
|
2016-01-28 13:47:46 +00:00
|
|
|
|
|
|
|
it 'verify port on Solaris 10' do
|
|
|
|
resource = MockLoader.new(:solaris10).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0"]
|
2016-01-28 13:47:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify port on Solaris 11' do
|
|
|
|
resource = MockLoader.new(:solaris11).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
2016-03-19 10:47:41 +00:00
|
|
|
_(resource.addresses).must_equal ["0.0.0.0"]
|
2016-01-28 13:47:46 +00:00
|
|
|
end
|
2016-05-03 09:00:59 +00:00
|
|
|
|
|
|
|
it 'verify port on hpux' do
|
|
|
|
resource = MockLoader.new(:hpux).load_resource('port', 22)
|
|
|
|
_(resource.listening?).must_equal true
|
|
|
|
_(resource.protocols).must_equal %w{ tcp tcp6 }
|
|
|
|
_(resource.addresses).must_equal ["0.0.0.0", "0:0:0:0:0:0:0:0" ]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'verify not listening port on hpux' do
|
|
|
|
resource = MockLoader.new(:hpux).load_resource('port', 23)
|
|
|
|
_(resource.listening?).must_equal false
|
2016-05-11 21:21:22 +00:00
|
|
|
_(resource.protocols).must_equal []
|
|
|
|
_(resource.addresses).must_equal []
|
2016-05-03 09:00:59 +00:00
|
|
|
end
|
2015-09-23 13:19:48 +00:00
|
|
|
end
|