Vulnerability Scan Result

IP address | 141.193.213.20 |
Country | US ![]() |
AS number | AS209242 |
Net name | Cloudflare London LLC |
IP address | 141.193.213.21 |
Country | US ![]() |
AS number | AS209242 |
Net name | Cloudflare London LLC |
80/tcp | http | Cloudflare http proxy - |
443/tcp | https | Cloudflare http proxy - |
8080/tcp | http | Cloudflare http proxy - |
8443/tcp | https | Cloudflare http proxy - |
Software / Version | Category |
---|---|
Linkedin Ads | Advertising |
Linkedin Insight Tag | Analytics |
Disqus | Comment systems |
Elementor | Page builders, WordPress plugins |
Facebook Pixel 2.9.198 | Analytics |
ZURB Foundation 5.5.0 | UI frameworks |
jQuery Migrate | JavaScript libraries |
core-js 3.32.2 | JavaScript libraries |
Google Analytics GA4 | Analytics |
Google Font API | Font scripts |
HTTP/3 | Miscellaneous |
jQuery | JavaScript libraries |
Modernizr | JavaScript libraries |
MySQL | Databases |
Open Graph | Miscellaneous |
PHP | Programming languages |
ProfilePress 4.7.0 | WordPress plugins |
Select2 | JavaScript libraries |
Twitter Emoji (Twemoji) | Font scripts |
WordPress | CMS, Blogs |
WP Rocket | Caching, WordPress plugins |
WP Engine | PaaS, Hosting |
Cloudflare | CDN |
Google Tag Manager | Tag managers |
Hotjar | Analytics |
HubSpot | Marketing automation |
HubSpot Analytics | Analytics |
Quantcast Measure | Analytics |
RSS | Miscellaneous |
theTradeDesk | Advertising |
Zoominfo | Analytics |
Yoast SEO 22.3 | SEO, WordPress plugins |
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://insurancenewsnet.com/oarticle/plaintiffs-accuse-insurers-over-unsettled-claims-following-roof-collapse | pvc_visits[0] | The server responded with Set-Cookie header(s) that does not specify the HttpOnly flag: Set-Cookie: pvc_visits[0]=1745029440b8301809 |
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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://insurancenewsnet.com/oarticle/plaintiffs-accuse-insurers-over-unsettled-claims-following-roof-collapse | 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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://insurancenewsnet.com/oarticle/plaintiffs-accuse-insurers-over-unsettled-claims-following-roof-collapse | Response headers include the HTTP Content-Security-Policy security header with the following security issues: |
Vulnerability description
We noticed that the Content-Security-Policy (CSP) header configured for the web application includes unsafe directives. The CSP header activates a protection mechanism implemented in web browsers which prevents exploitation of Cross-Site Scripting vulnerabilities (XSS) by restricting the sources from which content can be loaded or executed.
Risk description
For example, if the unsafe-inline directive is present in the CSP header, the execution of inline scripts and event handlers is allowed. This can be exploited by an attacker to execute arbitrary JavaScript code in the context of the vulnerable application.
Recommendation
Remove the unsafe values from the directives, adopt nonces or hashes for safer inclusion of inline scripts if they are needed, and explicitly define the sources from which scripts, styles, images or other resources can be loaded.
Classification
CWE | CWE-693 |
OWASP Top 10 - 2017 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://insurancenewsnet.com/oarticle/plaintiffs-accuse-insurers-over-unsettled-claims-following-roof-collapse | 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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://insurancenewsnet.com/oarticle/plaintiffs-accuse-insurers-over-unsettled-claims-following-roof-collapse | Response headers do not include the HTTP Strict-Transport-Security header |
Vulnerability description
We noticed that the target application lacks the HTTP Strict-Transport-Security header in its responses. This security header is crucial as it instructs browsers to only establish secure (HTTPS) connections with the web server and reject any HTTP connections.
Risk description
The risk is that lack of this header permits an attacker to force a victim user to initiate a clear-text HTTP connection to the server, thus opening the possibility to eavesdrop on the network traffic and extract sensitive information (e.g. session cookies).
Recommendation
The Strict-Transport-Security HTTP header should be sent with each HTTPS response. The syntax is as follows: `Strict-Transport-Security: max-age=<seconds>[; includeSubDomains]` The parameter `max-age` gives the time frame for requirement of HTTPS in seconds and should be chosen quite high, e.g. several months. A value below 7776000 is considered as too low by this scanner check. The flag `includeSubDomains` defines that the policy applies also for sub domains of the sender of the response.
Classification
CWE | CWE-693 |
OWASP Top 10 - 2017 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
Software / Version | Category |
---|---|
Linkedin Ads | Advertising |
Linkedin Insight Tag | Analytics |
Disqus | Comment systems |
Elementor | Page builders, WordPress plugins |
Facebook Pixel 2.9.198 | Analytics |
ZURB Foundation 5.5.0 | UI frameworks |
jQuery Migrate | JavaScript libraries |
core-js 3.32.2 | JavaScript libraries |
Google Analytics GA4 | Analytics |
Google Font API | Font scripts |
HTTP/3 | Miscellaneous |
jQuery | JavaScript libraries |
Modernizr | JavaScript libraries |
MySQL | Databases |
Open Graph | Miscellaneous |
PHP | Programming languages |
ProfilePress 4.7.0 | WordPress plugins |
Select2 | JavaScript libraries |
Twitter Emoji (Twemoji) | Font scripts |
WordPress | CMS, Blogs |
WP Rocket | Caching, WordPress plugins |
WP Engine | PaaS, Hosting |
Cloudflare | CDN |
Google Tag Manager | Tag managers |
Hotjar | Analytics |
HubSpot | Marketing automation |
HubSpot Analytics | Analytics |
Quantcast Measure | Analytics |
RSS | Miscellaneous |
theTradeDesk | Advertising |
Zoominfo | Analytics |
Yoast SEO 22.3 | SEO, WordPress plugins |
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.
Classification
OWASP Top 10 - 2017 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
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).
Classification
OWASP Top 10 - 2017 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
Vulnerability description
Website is accessible.
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.
Classification
OWASP Top 10 - 2017 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Infrastructure Vulnerabilities
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
insurancenewsnet.com | SPF | Sender Policy Framework | "v=spf1 ip4:167.89.81.186 include:1904291.spf08.hubspotemail.net include:amazonses.com include:esp1.co include:transmail.net include:zcsend.net include:us._netblocks.mimecast.com include:servers.mcsv.net include:spf.mandrillapp.com ~all" |
Vulnerability description
We found that the Sender Policy Framework (SPF) record for the domain is configured with ~all (soft fail), which indicates that emails from unauthorized IP addresses are not explicitly denied. Instead, the recipient mail server is instructed to treat these messages with suspicion but may still accept them. This configuration may not provide enough protection against email spoofing and unauthorized email delivery, leaving the domain more vulnerable to impersonation attempts.
Risk description
The ~all directive in an SPF record allows unauthorized emails to pass through some email servers, even though they fail SPF verification. While such emails may be marked as suspicious or placed into a spam folder, not all mail servers handle soft fail conditions consistently. This creates a risk that malicious actors can spoof the domain to send phishing emails or other fraudulent communications, potentially causing damage to the organization's reputation and leading to successful social engineering attacks.
Recommendation
We recommend changing the SPF record's ~all (soft fail) directive to -all (hard fail). The -all setting tells recipient mail servers to reject emails from any IP addresses not listed in the SPF record, providing stronger protection against email spoofing. Ensure that all legitimate IP addresses and services that send emails on behalf of your domain are properly included in the SPF record before implementing this change.
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
k2 | rsa | 1008 | "k=rsa;p=MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhANsXoOtNAFv6enuucSOzQaqXUN4FKc42Yr9D4oRkhzE7+gJ3KhxqQXEcv8WiM4kubwI6eHxYEKsUG7O16/XRlVno/yunuCJygAf+0jrMBs5wwCTgrK589km25xULklNkawIDAQAB" |
Vulnerability description
We found that the DKIM key length is under 1024-bit. When a DKIM (DomainKeys Identified Mail) key length is under 1024-bit, it is considered weak by modern cryptographic standards. Shorter key lengths, such as 512 or 768 bits, are vulnerable to brute-force attacks, where an attacker could potentially forge a valid DKIM signature for a domain. This undermines the entire purpose of DKIM, which is to authenticate email messages and prevent email spoofing by verifying that the message headers have not been tampered with. A DKIM key under 1024 bits significantly reduces the difficulty for attackers to break the signature.
Risk description
The primary risk of using a DKIM key with fewer than 1024 bits is that it weakens the domain's email authentication security, making it more susceptible to brute-force attacks. If an attacker successfully forges a DKIM signature, they can impersonate legitimate senders and send fraudulent or phishing emails that appear authentic to the recipient. This can lead to financial losses, reputational damage, and an increased risk of targeted attacks, as recipients are more likely to trust emails that pass DKIM verification.
Recommendation
We recommend using a DKIM key with a length of at least 1024 bits. Ideally, 2048-bit keys should be used, as they provide a higher level of security and are more resistant to brute-force attacks. Organizations should regularly audit their DKIM configurations and rotate cryptographic keys periodically to maintain security. In addition, any DKIM keys that are less than 1024 bits should be immediately replaced with stronger keys to prevent exploitation.
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
k1 | rsa | 1008 | "v=DKIM1;k=rsa;p=MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhANsXoOtNAFv6enuucSOzQaqXUN4FKc42Yr9D4oRkhzE7+gJ3KhxqQXEcv8WiM4kubwI6eHxYEKsUG7O16/XRlVno/yunuCJygAf+0jrMBs5wwCTgrK589km25xULklNkawIDAQAB" |
Vulnerability description
We found that the DKIM key length is under 1024-bit. When a DKIM (DomainKeys Identified Mail) key length is under 1024-bit, it is considered weak by modern cryptographic standards. Shorter key lengths, such as 512 or 768 bits, are vulnerable to brute-force attacks, where an attacker could potentially forge a valid DKIM signature for a domain. This undermines the entire purpose of DKIM, which is to authenticate email messages and prevent email spoofing by verifying that the message headers have not been tampered with. A DKIM key under 1024 bits significantly reduces the difficulty for attackers to break the signature.
Risk description
The primary risk of using a DKIM key with fewer than 1024 bits is that it weakens the domain's email authentication security, making it more susceptible to brute-force attacks. If an attacker successfully forges a DKIM signature, they can impersonate legitimate senders and send fraudulent or phishing emails that appear authentic to the recipient. This can lead to financial losses, reputational damage, and an increased risk of targeted attacks, as recipients are more likely to trust emails that pass DKIM verification.
Recommendation
We recommend using a DKIM key with a length of at least 1024 bits. Ideally, 2048-bit keys should be used, as they provide a higher level of security and are more resistant to brute-force attacks. Organizations should regularly audit their DKIM configurations and rotate cryptographic keys periodically to maintain security. In addition, any DKIM keys that are less than 1024 bits should be immediately replaced with stronger keys to prevent exploitation.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
insurancenewsnet.com | A | IPv4 address | 141.193.213.20 |
insurancenewsnet.com | A | IPv4 address | 141.193.213.21 |
insurancenewsnet.com | NS | Name server | algin.ns.cloudflare.com |
insurancenewsnet.com | NS | Name server | mimi.ns.cloudflare.com |
insurancenewsnet.com | MX | Mail server | 10 us-smtp-inbound-1.mimecast.com |
insurancenewsnet.com | MX | Mail server | 10 us-smtp-inbound-2.mimecast.com |
insurancenewsnet.com | SOA | Start of Authority | algin.ns.cloudflare.com. dns.cloudflare.com. 2370416599 10000 2400 604800 1800 |
insurancenewsnet.com | TXT | Text record | "MS=31EF9C457C2C2AE60101FE074C17025AA5821CA9" |
insurancenewsnet.com | TXT | Text record | "_gllx3f62w0gh8r4ok9knhy791aa7t8a" |
insurancenewsnet.com | TXT | Text record | "google-site-verification=XyL10UYuUe_bBwn34aqkpX4bEqQXKDKFariPDAdvzMM" |
insurancenewsnet.com | TXT | Text record | "google-site-verification=Z0al9vA2iyUKv21OVUYoDBa8gDlIyIBZTUvKRJwzanU" |
insurancenewsnet.com | SPF | Sender Policy Framework | "v=spf1 ip4:167.89.81.186 include:1904291.spf08.hubspotemail.net include:amazonses.com include:esp1.co include:transmail.net include:zcsend.net include:us._netblocks.mimecast.com include:servers.mcsv.net include:spf.mandrillapp.com ~all" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issue "comodoca.com" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issue "digicert.com; cansignhttpexchanges=yes" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issue "letsencrypt.org" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issue "pki.goog; cansignhttpexchanges=yes" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issue "ssl.com" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issuewild "comodoca.com" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issuewild "digicert.com; cansignhttpexchanges=yes" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issuewild "letsencrypt.org" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issuewild "pki.goog; cansignhttpexchanges=yes" |
insurancenewsnet.com | CAA | Certificate Authority Authorization | 0 issuewild "ssl.com" |
_dmarc.insurancenewsnet.com | TXT | Text record | "v=DMARC1;p=reject;sp=reject;pct=100;adkim=s;aspf=s;fo=1;rua=mailto:5ea5a110@mxtoolbox.dmarc-report.com;ruf=mailto:5ea5a110@forensics.dmarc-report.com" |
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.
Evidence
Vulnerability description
OS detection couldn't determine the operating system.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
_dmarc.insurancenewsnet.com | TXT | Text record | "v=DMARC1;p=reject;sp=reject;pct=100;adkim=s;aspf=s;fo=1;rua=mailto:5ea5a110@mxtoolbox.dmarc-report.com;ruf=mailto:5ea5a110@forensics.dmarc-report.com" |
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
k10 | rsa | 1296 | "k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDKKJZBckTzJ3UvigD5eK7F3d4nJtSw/p/TWrYYqlEFPBdJpjvDNF+RZBL0jiB6NjC3URKrXi9pj8PuWYDj/XfxRyD9+oE6yE2/MInQmhyLOPKm7o7NCum0GYiAJok21GZ7pMIIotTRq7BuDWxJN+KX3nwfDowsbT2jtIALY74rXQIDAQAB" |
k2 | rsa | 1008 | "k=rsa;p=MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhANsXoOtNAFv6enuucSOzQaqXUN4FKc42Yr9D4oRkhzE7+gJ3KhxqQXEcv8WiM4kubwI6eHxYEKsUG7O16/XRlVno/yunuCJygAf+0jrMBs5wwCTgrK589km25xULklNkawIDAQAB" |
key | rsa | 1434 | "v=DKIM1;k=rsa;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5rxVi4AYncBaYcu+hshr7IOobilsFewNfEW7ujHet56uU87+VyVMFycUl9xXU1JTRF0V4zoTClKa2Jjz4U4Sfyd2YtO+WpsznA10b5MvINqz5etDkSzOKADvclavtRoM4L4mwKhSY6k5Y4AINkneGIDPFvyK932eR4pzWY7uKv9uW7I1zzN9jhEaNHdf+QWOUJ3" "KDe8PkGBRt3ufsCMAEeyV4XHoWQrZs17SG9rVWZi4N/+0tiCzBlu2toRMMuUtPmG0JQy+rw4TjOLSlpRv5G8Sss7XPu8LCNFpL+YDthQ/CGFsLXSFXGyIIIDodxAzPLPvmR1ZxG0z5F/jcU1vEwIDAQAB" |
k1 | rsa | 1008 | "v=DKIM1;k=rsa;p=MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhANsXoOtNAFv6enuucSOzQaqXUN4FKc42Yr9D4oRkhzE7+gJ3KhxqQXEcv8WiM4kubwI6eHxYEKsUG7O16/XRlVno/yunuCJygAf+0jrMBs5wwCTgrK589km25xULklNkawIDAQAB" |
key1 | rsa | 1296 | "v=DKIM1; k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC64zLwSGTQ1Pphy1C3wlTdtkDoWMTVsA96WTW207oWplgoih8FgQnLDdePkCQaYTaTHnnAq7l3EVM3/BEYD/gOFNrgEMfTtJ6uLyiYxHey296Zqlk+m+wgMImCXAlC8Vglu3aA+rJzPAX/P4TXQYHriTBAdRekoR2STTXv0DzFywIDAQAB" |
m1 | rsa | 1296 | "k=rsa; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC4CvMOSVFOQDIJ+HkjdfAmKuBkkiqTwV982PCFBocVGHY07N2uvkleqT+XrySENYYzFrdnk2U1I7HUYkA0tpEZNzU7G67l7u1qWcd5QMBzVDsAg2vJf4fAkAWmdQCyWboeVXCoMnswz5LZK/t0+Z37smv9k2nDK3XNdsYTVu8D8wIDAQAB" |
mx | rsa | 1296 | "k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCygXYaqtPfysbcBOjht6xxPsRbGUDVB/55SrkQUB4hnafjS/4WTP0YP4X8g62Kauakz9mujrutECOQu9UkahgTNAJI6fZ6Xav68DKrGN4C8bbpLH04TTVnYyUc6U2/X7mR8kTp5K4Ul8U+Q2dNjm9pp8q6QoynDH/oM6Mf4wMZewIDAQAB" |
mandrill | rsa | 1296 | "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrLHiExVd55zd/IQ/J/mRwSRMAocV/hMB3jXwaHH36d9NaVynQFYV8NaWi69c1veUtRzGt7yAioXqLj7Z4TeEUoOLgrKsn8YnckGs9i3B3tVFB+Ch/4mPhXWiNfNdynHWBcPcbJ8kjEQ2U8y78dHZj1YeRXXVvWob2OaKynO8/lQIDAQAB;" |
selector1 | rsa | 1296 | "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC/pu4/uPC30w1igVw+OdQdDf4k53H/PtO721WQuH12Z68nSeBSsEZ67abITmIqCszC9M+ulX/5Bf6OK8jdmB9xQnFSZa77MicJjqAto03yAWqJuRSv0BvxEQ29Ymm2bf9yNv+/Rg53BVSkY8R9q8IbIRVoPnKuVtrnbyf/r0jkFwIDAQAB;" |
smtpapi | rsa | 1296 | "k=rsa; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPtW5iwpXVPiH5FzJ7Nrl8USzuY9zqqzjE0D1r04xDN6qwziDnmgcFNNfMewVKN2D1O+2J9N14hRprzByFwfQW76yojh54Xu3uSbQ3JP0A7k8o8GutRF8zbFUA8n0ZH2y0cIEjMliXY4W4LwPA7m4q0ObmvSjhd63O9d8z1XkUBwIDAQAB" |
Evidence
Software / Version | Category |
---|---|
Cloudflare | CDN |
HTTP/3 | 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
Software / Version | Category |
---|---|
Cloudflare | CDN |
HTTP/3 | 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
Software / Version | Category |
---|---|
Cloudflare | CDN |
HTTP/3 | 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
Software / Version | Category |
---|---|
Cloudflare | CDN |
HTTP/3 | 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.