Skip to content

Commit

Permalink
Merge pull request #87 from intrigueio/multi_match_and_cleanup
Browse files Browse the repository at this point in the history
Multi-Matchers (and a lot of syntax cleanup)
  • Loading branch information
jcran authored Feb 27, 2021
2 parents 8ecae4d + 8443b67 commit 7a61708
Show file tree
Hide file tree
Showing 396 changed files with 10,991 additions and 11,110 deletions.
23 changes: 11 additions & 12 deletions checks/dns/base.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
module Intrigue
module Ident
module DnsCheck
class Base

def self.inherited(base)
Intrigue::Ident::Dns::CheckFactory.register(base)
end
module Ident
module DnsCheck
class Base

end
end
end
end

def self.inherited(base)
Intrigue::Ident::Dns::CheckFactory.register(base)
end

end
end
end
end
18 changes: 9 additions & 9 deletions checks/dns/google.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ class Google < Intrigue::Ident::DnsCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "operating_system",
:tags => ["DNSServer"],
:vendor => "Google",
:product => "Eero",
:website => "https://eero.com/",
:references => [],
:match_type => :hostname,
:match_content => /^eero$/i,
type: "fingerprint",
category: "operating_system",
tags: ["DNSServer"],
vendor: "Google",
product: "Eero",
website: "https://eero.com/",
references: [],
match_type: :hostname,
match_content: /^eero$/i,
}
]
end
Expand Down
18 changes: 9 additions & 9 deletions checks/dns/liquidnet_ltd_hosting.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ class LiquidnetLtdHosting < Intrigue::Ident::DnsCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "service",
:tags => ["DNSServer"],
:vendor => "LiquidNet Ltd Hosting",
:product => "LiquidNet DNS",
:website => "https://www.liquidnetlimited.com/services.html",
:references => [],
:match_type => :version,
:match_content => /^LiquidNet DNS$/i,
type: "fingerprint",
category: "service",
tags: ["DNSServer"],
vendor: "LiquidNet Ltd Hosting",
product: "LiquidNet DNS",
website: "https://www.liquidnetlimited.com/services.html",
references: [],
match_type: :version,
match_content: /^LiquidNet DNS$/i,
}
]
end
Expand Down
16 changes: 8 additions & 8 deletions checks/dns/microsoft.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ class Microsoft < Intrigue::Ident::DnsCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["DNSServer"],
:vendor => "Microsoft",
:product => "DNS Server",
:references => [],
:match_type => :version,
:match_content => /Microsoft/i,
type: "fingerprint",
category: "application",
tags: ["DNSServer"],
vendor: "Microsoft",
product: "DNS Server",
references: [],
match_type: :version,
match_content: /Microsoft/i,
}
]
end
Expand Down
24 changes: 12 additions & 12 deletions checks/ftp/acronis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ class Acronis < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "Acronis",
:product => "MassTransit",
:references => [""],
:website => "https://www.acronis.com/",
:match_type => :content_banner,
:match_content => /220 MassTransit FTP server \(version [\d\.]+\) ready.\r\n/i,
:dynamic_version => lambda { |x| _first_banner_capture(x, /220 MassTransit FTP server \(version ([\d\.]+)\) ready.\r\n/i)},
:match_details => "banner",
:inference => true
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "Acronis",
product: "MassTransit",
references: [""],
website: "https://www.acronis.com/",
match_type: :content_banner,
match_content: /220 MassTransit FTP server \(version [\d\.]+\) ready.\r\n/i,
dynamic_version: lambda { |x| _first_banner_capture(x, /220 MassTransit FTP server \(version ([\d\.]+)\) ready.\r\n/i)},
description: "banner",
inference: true
}
]
end
Expand Down
26 changes: 13 additions & 13 deletions checks/ftp/filezilla.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ class Filezilla < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "Filezilla",
:product => "Server",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /FileZilla Server/i,
:dynamic_version => lambda { |x| _first_banner_capture(x, /FileZilla Server version ([\d\.]+)/i)},
:match_details => "banner",
:hide => false,
:inference => true
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "Filezilla",
product: "Server",
references: [],
version: nil,
match_type: :content_banner,
match_content: /FileZilla Server/i,
dynamic_version: lambda { |x| _first_banner_capture(x, /FileZilla Server version ([\d\.]+)/i)},
description: "banner",
hide: false,
inference: true
}
]
end
Expand Down
24 changes: 12 additions & 12 deletions checks/ftp/generic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ class Generic < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "Generic",
:product => "FTP",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /FTP/i,
:match_details => "banner",
:hide => false,
:inference => true
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "Generic",
product: "FTP",
references: [],
version: nil,
match_type: :content_banner,
match_content: /FTP/i,
description: "banner",
hide: false,
inference: true
}
]
end
Expand Down
24 changes: 12 additions & 12 deletions checks/ftp/microsoft.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ class Microsoft < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "Microsoft",
:product => "FTP Service",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /Microsoft FTP Service/i,
:match_details => "banner",
:hide => false,
:inference => false
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "Microsoft",
product: "FTP Service",
references: [],
version: nil,
match_type: :content_banner,
match_content: /Microsoft FTP Service/i,
description: "banner",
hide: false,
inference: false
}
]
end
Expand Down
50 changes: 25 additions & 25 deletions checks/ftp/proftp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ class ProFtp < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "ProFTP",
:product => "ProFTPd",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /ProFTPD [\d\w\.]+ Server/i,
:dynamic_version => lambda { |x| _first_banner_capture(x, /ProFTPD ([\d\w\.]+) Server/i)},
:match_details => "banner",
:hide => false,
:inference => true
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "ProFTP",
product: "ProFTPd",
references: [],
version: nil,
match_type: :content_banner,
match_content: /ProFTPD [\d\w\.]+ Server/i,
dynamic_version: lambda { |x| _first_banner_capture(x, /ProFTPD ([\d\w\.]+) Server/i)},
description: "banner",
hide: false,
inference: true
},
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "ProFTP",
:product => "ProFTPd",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /ProFTPD Server/i,
:match_details => "banner, no version",
:hide => false,
:inference => false
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "ProFTP",
product: "ProFTPd",
references: [],
version: nil,
match_type: :content_banner,
match_content: /ProFTPD Server/i,
description: "banner, no version",
hide: false,
inference: false
}
]
end
Expand Down
24 changes: 12 additions & 12 deletions checks/ftp/pureftpd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ class PureFtpd < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "PureFtpd",
:product => "PureFtpd",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /Welcome to Pure-FTPd/i,
:match_details => "banner",
:hide => false,
:inference => false
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "PureFtpd",
product: "PureFtpd",
references: [],
version: nil,
match_type: :content_banner,
match_content: /Welcome to Pure-FTPd/i,
description: "banner",
hide: false,
inference: false
}
]
end
Expand Down
26 changes: 13 additions & 13 deletions checks/ftp/vsftp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ class Vsftp < Intrigue::Ident::FtpCheck::Base
def generate_checks
[
{
:type => "fingerprint",
:category => "application",
:tags => ["FTPServer"],
:vendor => "vsFTPd",
:product => "vsFTPd",
:references => [],
:version => nil,
:match_type => :content_banner,
:match_content => /\(vsFTPd\s[\d\.]+\)/i,
:dynamic_version => lambda { |x| _first_banner_capture(x, /\(vsFTPd\s([\d\.]+)\)/i)},
:match_details => "banner",
:hide => false,
:inference => true
type: "fingerprint",
category: "application",
tags: ["FTPServer"],
vendor: "vsFTPd",
product: "vsFTPd",
references: [],
version: nil,
match_type: :content_banner,
match_content: /\(vsFTPd\s[\d\.]+\)/i,
dynamic_version: lambda { |x| _first_banner_capture(x, /\(vsFTPd\s([\d\.]+)\)/i)},
description: "banner",
hide: false,
inference: true
}
]
end
Expand Down
31 changes: 18 additions & 13 deletions checks/http/123reg.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@ class OneTwoThreeReg < Intrigue::Ident::Check::Base
def generate_checks(url)
[
{
:type => "fingerprint",
:category => "service",
:tags => ["Parked"],
:vendor => "123Reg",
:product => "123Reg",
:website => "https://www.123-reg.co.uk/",
:references => [],
:match_type => :content_title,
:match_content => /Want your own website\? \| 123 Reg/i,
:match_details => "Want your own website\? \| 123 Reg",
:hide => false,
:paths => [ { :path => "#{url}", :follow_redirects => true } ],
:inference => false
type: "fingerprint",
category: "service",
tags: ["Parked"],
vendor: "123Reg",
product: "123Reg",
website: "https://www.123-reg.co.uk/",
references: [],
match_logic: :all,
matches: [
{
match_type: :content_title,
match_content: /Want your own website\? \| 123 Reg/i
}
],
description: "Want your own website\? \| 123 Reg",
hide: false,
paths: [ { path: "#{url}", follow_redirects: true } ],
inference: false
}
]
end
Expand Down
Loading

0 comments on commit 7a61708

Please sign in to comment.