Vulnerability Scan Result

| Title: | Inside Allegri’s Milan: the fewest substitutions in Europe, a rock-solid 3-5-2, and luxury backups fighting for minutes |
| Description: | Last summer’s decision to maintain a small squad sparked much debate, but it reflects Massimiliano Allegri’s choices between a fixed starting lineup and few |
| ip_address | 84.16.86.81 |
| country | CH |
| network_name | Infomaniak Network SA |
| asn | AS29222 |
80/tcp | http | Apache - |
443/tcp | https | Apache - |
| Software / Version | Category |
|---|---|
| Contact Form 7 | WordPress plugins, Form builders |
| DataTables | JavaScript libraries |
| Funding Choices | Cookie compliance |
| jQuery Migrate 3.4.1 | JavaScript libraries |
| Google Analytics | Analytics |
| Google Font API | Font scripts |
| Gravatar | Miscellaneous |
| Apache HTTP Server | Web servers |
| imagesLoaded 5.0.0 | JavaScript libraries |
| jQuery | JavaScript libraries |
| MySQL | Databases |
| Open Graph | Miscellaneous |
| PHP | Programming languages |
| RankMath SEO | WordPress plugins, SEO |
| Priority Hints | Performance |
| WordPress 6.8.3 | CMS, Blogs |
| Polylang | WordPress plugins, Translation |
| wpBakery | Page builders, WordPress plugins |
| Cisco IOS XE | Control systems |
| Google AdSense | Advertising |
| reCAPTCHA | Security |
| Google Tag Manager | Tag managers |
| HSTS | Security |
| RSS | Miscellaneous |
| WhatsApp Business Chat | Live chat |
Web Application Vulnerabilities
Evidence
| URL | Cookie Name | Evidence |
|---|---|---|
| https://milanreports.com/2025/11/27/allegri-milan-rock-solid/ | pll_language | The server responded with Set-Cookie header(s) that does not specify the HttpOnly flag: Set-Cookie: pll_language=en |
Vulnerability description
We found that a cookie has been set without the HttpOnly flag, which means it can be accessed by potentially malicious JavaScript code running inside the web page. The root cause for this usually revolves around misconfigurations in the code or server settings.
Risk description
The risk is that an attacker who injects malicious JavaScript code on the page (e.g. by using an XSS attack) can access the cookie and can send it to another site. In case of a session cookie, this could lead to session hijacking.
Recommendation
Ensure that the HttpOnly flag is set for all cookies.
Classification
| CWE | CWE-1004 |
| OWASP Top 10 - 2017 | |
| OWASP Top 10 - 2021 |
Evidence
| Software / Version | Category |
|---|---|
| Contact Form 7 | WordPress plugins, Form builders |
| DataTables | JavaScript libraries |
| Funding Choices | Cookie compliance |
| jQuery Migrate 3.4.1 | JavaScript libraries |
| Google Analytics | Analytics |
| Google Font API | Font scripts |
| Gravatar | Miscellaneous |
| Apache HTTP Server | Web servers |
| imagesLoaded 5.0.0 | JavaScript libraries |
| jQuery | JavaScript libraries |
| MySQL | Databases |
| Open Graph | Miscellaneous |
| PHP | Programming languages |
| RankMath SEO | WordPress plugins, SEO |
| Priority Hints | Performance |
| WordPress 6.8.3 | CMS, Blogs |
| Polylang | WordPress plugins, Translation |
| wpBakery | Page builders, WordPress plugins |
| Cisco IOS XE | Control systems |
| Google AdSense | Advertising |
| reCAPTCHA | Security |
| Google Tag Manager | Tag managers |
| HSTS | Security |
| RSS | Miscellaneous |
| WhatsApp Business Chat | Live chat |
Vulnerability description
We noticed that server software and technology details are exposed, potentially aiding attackers in tailoring specific exploits against identified systems and versions.
Risk description
The risk is that an attacker could use this information to mount specific attacks against the identified software type and version.
Recommendation
We recommend you to eliminate the information which permits the identification of software platform, technology, server and operating system: HTTP server headers, HTML meta information, etc.
Evidence
Vulnerability description
We found the robots.txt on the target server. This file instructs web crawlers what URLs and endpoints of the web application they can visit and crawl. Website administrators often misuse this file while attempting to hide some web pages from the users.
Risk description
There is no particular security risk in having a robots.txt file. However, it's important to note that adding endpoints in it should not be considered a security measure, as this file can be directly accessed and read by anyone.
Recommendation
We recommend you to manually review the entries from robots.txt and remove the ones which lead to sensitive locations in the website (ex. administration panels, configuration files, etc).
Evidence
| URL | Evidence |
|---|---|
| https://milanreports.com/2025/11/27/allegri-milan-rock-solid/ | Response does not include the HTTP Content-Security-Policy security header or meta tag |
Vulnerability description
We noticed that the target application lacks the Content-Security-Policy (CSP) header in its HTTP responses. The CSP header is a security measure that instructs web browsers to enforce specific security rules, effectively preventing the exploitation of Cross-Site Scripting (XSS) vulnerabilities.
Risk description
The risk is that if the target application is vulnerable to XSS, lack of this header makes it easily exploitable by attackers.
Recommendation
Configure the Content-Security-Header to be sent with each HTTP response in order to apply the specific policies needed by the application.
Classification
| CWE | CWE-693 |
| OWASP Top 10 - 2017 | |
| OWASP Top 10 - 2021 |
Evidence
| URL | Method | Parameters | Evidence |
|---|---|---|---|
| https://milanreports.com/2025/11/27/allegri-milan-rock-solid/ | GET | Headers: User-Agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 |
|
Vulnerability description
We noticed that the target application is serving mixed content. This occurs when initial HTML is loaded over a secure HTTPS connection, but other resources (such as images, videos, stylesheets, scripts) are loaded over an insecure HTTP connection. This is called mixed content because both HTTP and HTTPS content are being loaded to display the same page, and the initial request was secure over HTTPS.
Risk description
The risk is that the insecurely loaded resources (HTTP) on an otherwise secure page (HTTPS) can be intercepted or manipulated by attackers, potentially leading to eavesdropping or content tampering.
Recommendation
Ensure that all external resources the page references are loaded using HTTPS.
Classification
| CWE | CWE-311 |
| OWASP Top 10 - 2017 | |
| OWASP Top 10 - 2021 |
Evidence
| URL | Evidence |
|---|---|
| https://milanreports.com/2025/11/27/allegri-milan-rock-solid/ | Response headers do not include the Referrer-Policy HTTP security header as well as the |
Vulnerability description
We noticed that the target application's server responses lack the Referrer-Policy HTTP header, which controls how much referrer information the browser will send with each request originated from the current web application.
Risk description
The risk is that if a user visits a web page (e.g. "http://example.com/pricing/") and clicks on a link from that page going to e.g. "https://www.google.com", the browser will send to Google the full originating URL in the `Referer` header, assuming the Referrer-Policy header is not set. The originating URL could be considered sensitive information and it could be used for user tracking.
Recommendation
The Referrer-Policy header should be configured on the server side to avoid user tracking and inadvertent information leakage. The value `no-referrer` of this header instructs the browser to omit the Referer header entirely.
Classification
| CWE | CWE-693 |
| OWASP Top 10 - 2017 | |
| OWASP Top 10 - 2021 |
Evidence
| URL | Evidence |
|---|---|
| https://milanreports.com/2025/11/27/allegri-milan-rock-solid/ | Response headers do not include the X-Content-Type-Options HTTP security header |
Vulnerability description
We noticed that the target application's server responses lack the X-Content-Type-Options header. This header is particularly important for preventing Internet Explorer from reinterpreting the content of a web page (MIME-sniffing) and thus overriding the value of the Content-Type header.
Risk description
The risk is that lack of this header could make possible attacks such as Cross-Site Scripting or phishing in Internet Explorer browsers.
Recommendation
We recommend setting the X-Content-Type-Options header such as `X-Content-Type-Options: nosniff`.
Classification
| CWE | CWE-693 |
| OWASP Top 10 - 2017 | |
| OWASP Top 10 - 2021 |
Vulnerability description
We have noticed that the server is missing the security.txt file, which is considered a good practice for web security. It provides a standardized way for security researchers and the public to report security vulnerabilities or concerns by outlining the preferred method of contact and reporting procedures.
Risk description
There is no particular risk in not having a security.txt file for your server. However, this file is important because it offers a designated channel for reporting vulnerabilities and security issues.
Recommendation
We recommend you to implement the security.txt file according to the standard, in order to allow researchers or users report any security issues they find, improving the defensive mechanisms of your server.
Infrastructure Vulnerabilities
Evidence
| CVE | CVSS | EPSS Score | EPSS Percentile | CISA KEV | Summary |
|---|---|---|---|---|---|
| CVE-2020-28458 | 7.3 | 0.00489 | 0.64821 | No | All versions of package datatables.net are vulnerable to Prototype Pollution due to an incomplete fix for https://snyk.io/vuln/SNYK-JS-DATATABLESNET-598806. |
| CVE-2021-23445 | 3.1 | 0.00144 | 0.35257 | No | This affects the package datatables.net before 1.11.3. If an array is passed to the HTML escape entities function it would not have its contents escaped. |
Vulnerability description
Vulnerabilities found for DataTables 1.10.8
Risk description
These vulnerabilities expose the affected applications to the risk of unauthorized access to confidential data and possibly to denial of service attacks. An attacker could search for an appropriate exploit (or create one) for any of these vulnerabilities and use it to attack the system. Notes: - The vulnerabilities are identified based on the server's version.; - Only the first 5 vulnerabilities with the highest risk are shown for each port.; Since the vulnerabilities were discovered using only version-based testing, the risk level for this finding will not exceed "high" severity. Critical risks will be assigned to vulnerabilities identified through accurate active testing methods.
Recommendation
We recommend you to upgrade the affected software to the latest version in order to eliminate the risks imposed by these vulnerabilities.
Evidence
| Software / Version | Category |
|---|---|
| WordPress 6.8.3 | CMS, Blogs |
| Cisco IOS XE | Control systems |
| MySQL | Databases |
| PHP | Programming languages |
| Contact Form 7 6.0.2 | WordPress plugins, Form builders |
| RankMath SEO | WordPress plugins, SEO |
| Apache HTTP Server | Web servers |
| wpBakery | Page builders, WordPress plugins |
| Polylang | WordPress plugins, Translation |
| imagesLoaded 5.0.0 | JavaScript libraries |
| Twitter Emoji (Twemoji) | Font scripts |
| LazySizes | JavaScript libraries, Performance |
| jQuery Migrate 3.4.1 | JavaScript libraries |
| jQuery 3.7.1 | JavaScript libraries |
| Google Tag Manager | Tag managers |
| Google Analytics GA4 | Analytics |
| Google AdSense | Advertising |
| Funding Choices | Cookie compliance |
| DataTables 1.10.8 | JavaScript libraries |
| HSTS | Security |
| Clipboard.js | JavaScript libraries |
| Lodash 1.13.7 | JavaScript libraries |
| Priority Hints | Performance |
| Google Font API | Font scripts |
| RSS | Miscellaneous |
| Open Graph | Miscellaneous |
| WhatsApp Business Chat | Live chat |
| reCAPTCHA | Security |
| Gravatar | Miscellaneous |
Vulnerability description
We noticed that server software and technology details are exposed, potentially aiding attackers in tailoring specific exploits against identified systems and versions.
Risk description
The risk is that an attacker could use this information to mount specific attacks against the identified software type and version.
Recommendation
We recommend you to eliminate the information which permits the identification of software platform, technology, server and operating system: HTTP server headers, HTML meta information, etc.
Evidence
| Operating System | Accuracy |
|---|---|
| Linux 3.10 - 4.11 | 100% |
Vulnerability description
OS Detection
Evidence
| Domain Queried | DNS Record Type | Description | Value |
|---|---|---|---|
| milanreports.com | A | IPv4 address | 84.16.86.81 |
| milanreports.com | NS | Name server | ns31.infomaniak.com |
| milanreports.com | NS | Name server | ns32.infomaniak.com |
| milanreports.com | SOA | Start of Authority | ns31.infomaniak.com. hostmaster.infomaniak.ch. 2024030408 10800 3600 605800 86400 |
| milanreports.com | AAAA | IPv6 address | 2001:1600:4:11::4a3 |
Risk description
An initial step for an attacker aiming to learn about an organization involves conducting searches on its domain names to uncover DNS records associated with the organization. This strategy aims to amass comprehensive insights into the target domain, enabling the attacker to outline the organization's external digital landscape. This gathered intelligence may subsequently serve as a foundation for launching attacks, including those based on social engineering techniques. DNS records pointing to services or servers that are no longer in use can provide an attacker with an easy entry point into the network.
Recommendation
We recommend reviewing all DNS records associated with the domain and identifying and removing unused or obsolete records.
