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
|
# File 'lib/checks/adobe.rb', line 6
def generate_checks(url)
[
{
:type => "application",
:vendor => "Adobe",
:product => "Coldfusion",
:version => nil,
:match_type => :content_cookies,
:match_content => /CFTOKEN=/,
:match_details => "Adobe Coldfusion Cookie Match",
:hide => false,
:examples => ["https://209.235.70.106:443"],
:paths => ["#{url}"]
},
{
:type => "application",
:vendor => "Adobe",
:product => "Experience Manager",
:version => nil,
:match_type => :content_body,
:match_content => /AEM/,
:match_details => "Adobe Experience Manager",
:hide => false,
:examples => ["https://www.ford.com/content/dam/login/core/content/login"],
:paths => ["#{url}/libs/granite/core/content/login.html"]
}
]
end
|