6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/checks/pulse_secure.rb', line 6
def generate_checks(url)
[
{
:type => "application",
:vendor =>"Pulse Secure",
:product =>"Junos VPN",
:match_details => "page title",
:match_type => :content_body,
:references => [],
:match_content => /<title>Junos Pulse Secure Access Service/,
:version => nil,
:examples => ["https://193.240.34.79:443"],
:verify => ["aWJtI0ludHJpZ3VlOjpFbnRpdHk6OlVyaSNodHRwczovLzE5My4yNDAuMzQuNzk6NDQz"],
:paths => ["#{url}"]
},
]
end
|