Sha256: 6e155f6dd57774145d401ebac4684cc0a93d1669687333de35852273fc6b4d7d
Contents?: true
Size: 1.47 KB
Versions: 4
Compression:
Stored size: 1.47 KB
Contents
require 'spec_helper' require 'nmap/xml/os' require 'cgi' describe Nmap::XML::OS do subject { @xml.hosts.first.os } describe "#classes" do subject { super().classes } it { is_expected.not_to be_empty } it "should return OSClass objects" do expect(subject).to all(be_kind_of(Nmap::XML::OSClass)) end end describe "#matches" do subject { super().matches.first } it "should parse the name" do expect(subject.name).to eq('Linux 3.0') end it "should parse the accuracy" do expect(subject.accuracy).to be_between(0,100) end end describe "#ports_used" do subject { super().ports_used } it { expect(subject).not_to be_empty } it { expect(subject).to all(be_between(0,65535)) } end describe "#fingerprint" do it "should parse the OS fingerprints" do pending "scan.xml does not currently have an osfingerprint" expect(subject.fingerprint).to eq(CGI.unescapeHTML("SCAN(V=4.68%D=8/16%OT=443%CT=21%CU=%PV=Y%DS=1%G=N%M=001D7E%TM=48A77607%P=i686-pc-linux-gnu)
SEQ(SP=19%GCD=FA00%ISR=9E%TI=I%TS=1)
OPS(O1=M5B4NW0NNT11%O2=M5B4NW0NNT11%O3=M5B4NW0NNT11%O4=M5B4NW0NNT11%O5=M5B4NW0NNT11%O6=M5B4NNT11)
WIN(W1=2000%W2=2000%W3=2000%W4=2000%W5=2000%W6=2000)
ECN(R=Y%DF=N%TG=40%W=2000%O=M5B4NW0%CC=N%Q=)
T1(R=Y%DF=N%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=Y%DF=N%TG=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
")) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ruby-nmap-1.0.3 | spec/xml/os_spec.rb |
ruby-nmap-1.0.2 | spec/xml/os_spec.rb |
ruby-nmap-1.0.1 | spec/xml/os_spec.rb |
ruby-nmap-1.0.0 | spec/xml/os_spec.rb |