Vulnerability Scan Result
IP address | 34.90.88.177 |
Country | NL |
AS number | AS396982 |
Net name | Google LLC |
21/tcp | ftp | Pure-FTPd |
25/tcp | smtp | |
80/tcp | http | nginx |
110/tcp | pop3 | Dovecot pop3d |
143/tcp | imap | Dovecot imapd |
443/tcp | https | nginx |
465/tcp | smtp | |
587/tcp | smtp | |
993/tcp | imap | Dovecot imapd |
995/tcp | pop3 | Dovecot pop3d |
3306/tcp | mysql | MySQL 8.0.39-30 |
5432/tcp | postgresql | PostgreSQL DB 9.6.0 or later |
Web Application Vulnerabilities
Evidence
URL | Evidence |
---|---|
https://www.mesagroup.eu/en/ | 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.
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
URL | Evidence |
---|---|
https://www.mesagroup.eu/en/ | 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.
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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://www.mesagroup.eu/en/ | 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 <code>X-Content-Type-Options</code> 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.
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://www.mesagroup.eu/en/ | Response headers do not include the Referrer-Policy HTTP security header as well as the <meta> tag with name 'referrer' is not present in the response. |
Vulnerability description
We noticed that the target application's server responses lack the <code>Referrer-Policy</code> HTTP header, which controls how much referrer information the browser will send with each request originated from the current web application.
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 |
Vulnerability description
Website is accessible.
Infrastructure Vulnerabilities
PORT STATE SERVICE VERSION
3306/tcp open mysql MySQL 8.0.39-30
Vulnerability description
We identified that the MySQL service is publicly accessible. MySQL serves as a common database for numerous web applications and services for data storage, making it a potential prime target for determined attackers.
Recommendation
We recommend turning off public Internet access to MySQL and opting for a Virtual Private Network (VPN) that enforces two-factor authentication (2FA). Avoid enabling direct user authentication to the MySQL service via the Internet, as this could enable attackers to engage in password-guessing and potentially initiate attacks leading to complete control. However, if the MySQL service is required to be directly accessible over the Internet, we recommend reconfiguring it to be accessible only from known IP addresses.
PORT STATE SERVICE VERSION
5432/tcp open postgresql PostgreSQL DB 9.6.0 or later
Vulnerability description
We found that the PostgreSQL service is publicly accessible. This service often holds critical organizational data, making it a potential prime target for determined attackers.
Recommendation
We recommend ensuring that the PostgreSQL service is not publicly accessible. The PostgreSQL service should be safeguarded behind a firewall or made available only to users connected through a Virtual Private Network (VPN) server. However, if the PostgreSQL service is required to be directly accessible over the Internet, we recommend reconfiguring it such that it is accessible only from known IP addresses.
PORT STATE SERVICE VERSION
21/tcp open ftp Pure-FTPd
Vulnerability description
We found that the File Transfer Protocol (FTP) service is publicly accessible. The FTP enables client systems to connect to upload and download files. Nonetheless, FTP lacks encryption for the data exchanged between the server and the client, leaving all transferred data exposed in plaintext.
Recommendation
We recommend turning off FTP access over the Internet and instead using a Virtual Private Network (VPN) that mandates two-factor authentication (2FA). If the FTP service is essential for business purposes, we recommend limiting access only from designated IP addresses using a firewall. Furthermore, utilizing SFTP (Secure File Transfer Protocol) is recommended as this protocol employs encryption to secure data transfers.
Starting Nmap ( https://nmap.org ) at 2025-01-21 08:23 EET
Nmap scan report for mesagroup.eu (34.90.88.177)
Host is up (0.010s latency).
rDNS record for 34.90.88.177: 177.88.90.34.bc.googleusercontent.com
PORT STATE SERVICE VERSION
995/tcp open ssl/pop3 Dovecot pop3d
|_pop3-capabilities: SASL(PLAIN LOGIN) USER AUTH-RESP-CODE RESP-CODES TOP UIDL CAPA PIPELINING
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 6.78 seconds
Vulnerability description
We found that the Post Office Protocol (POP3) service is publicly accessible and doesn’t include STARTTLS capability. Email clients use the Post Office Protocol (POP) to download emails for user accounts. Some POP servers are initially set up to operate over an unsecured protocol. When email clients download email content through this plaintext protocol, it can pose a substantial risk to the organization's network, especially depending on which user account is set to receive the emails.
Recommendation
We recommend turning off POP3 access over the Internet and instead using a Virtual Private Network (VPN) that mandates two-factor authentication (2FA). If the POP3 service is essential for business purposes, we recommend limiting access only from designated IP addresses using a firewall. Furthermore, activating STARTTLS capability (switching the connection to a secure communication) or utilizing Secure POP3 (POP3S) is recommended, as this protocol employs encryption.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
_dmarc.mesagroup.eu | TXT | Text record | "v=DMARC1; p=quarantine; rua=mailto:ict.admin@mesagroup.eu; ruf=mailto:ict.admin@mesagroup.eu; fo=1" |
Vulnerability description
We found that the target uses p=quarantine in the DMARC policy. When a DMARC policy is set to p=quarantine, emails that fail DMARC validation are delivered but placed in the recipient’s spam or junk folder. Although it offers some protection, this policy is less strict than p=reject, which blocks such emails entirely.
Recommendation
We recommend considering moving to a stricter policy, such as p=reject, where emails that fail DMARC validation are completely rejected rather than delivered to spam folders. This reduces the risk of users interacting with potentially malicious emails.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
_dmarc.mesagroup.eu | TXT | Text record | "v=DMARC1; p=quarantine; rua=mailto:ict.admin@mesagroup.eu; ruf=mailto:ict.admin@mesagroup.eu; fo=1" |
Vulnerability description
We found that the DMARC record for the domain is not configured with sp policy, meaning that no policy is enforced for subdomains. When a DMARC record does not include a subdomain policy (sp directive), subdomains are not explicitly covered by the main domain's DMARC policy. This means that emails sent from subdomains (e.g., sub.example.com) may not be subject to the same DMARC enforcement as the main domain (example.com). As a result, attackers could potentially spoof emails from subdomains without being blocked or flagged, even if the main domain has a strict DMARC policy.
Recommendation
To mitigate the risk, we recommend configuring the DMARC record with a subdomain policy by adding the sp=reject or sp=quarantine directive. This will extend DMARC enforcement to all subdomains, preventing spoofing attempts and maintaining consistent security across both the main domain and its subdomains.
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
default | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv+j9uAxPv+/Vq9bF/vA7qAMNLE9tK1ZODuz0aXM0z1ldBwPhQ/+24wnaEupHDZC49mFhtGJ1CMJlyKC39XhSKietqevnlQvEFiulGKe+U2SVGCznDxb24sT9jBiW+yJDk5eZhgh05GmRwAKvC76ifRyjS/JpTqftazrRD5fOKpu3qlER+708E3zO68ACRn1iD" "H8RiHWwudcYnHIyeGeoAMA580WJIJtrQ8pelN9nTij3v10sHzTdNeyDDw66dFNhmwFkWxp99Hiwn2oGAwYZWvPKqi6NgQfOoZ/H36l5VP40nxMWMqe9PC6XhCQQbR/AaLThBwoKO2eYibuCKtDkfwIDAQAB;" |
Vulnerability description
We found that the DKIM record uses common selectors. The use of common DKIM selectors such as default, test, dkim, or mail may indicate a lack of proper customization or key management. Attackers often target domains using such selectors because they suggest that the domain is relying on default configurations, which could be less secure and easier to exploit. This can increase the risk of DKIM key exposure or misuse.
Recommendation
We recommend using unique, customized selectors for each DKIM key to make it more difficult for attackers to predict and target the domain's DKIM records. Regularly rotate selectors and associated keys to further strengthen the security of your domain's email authentication infrastructure.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
mesagroup.eu | A | IPv4 address | 34.90.88.177 |
mesagroup.eu | NS | Name server | ns2.siteground.net |
mesagroup.eu | NS | Name server | ns1.siteground.net |
mesagroup.eu | MX | Mail server | 0 mesagroup-eu.mail.protection.outlook.com |
mesagroup.eu | SOA | Start of Authority | ns1.siteground.net. dnsadmin.gnld16.siteground.eu. 2021011565 86400 7200 3600000 86400 |
mesagroup.eu | TXT | Text record | "MS=ms21023231" |
mesagroup.eu | SPF | Sender Policy Framework | "v=spf1 include:musvc.com include:spf.mailjet.com include:spf.protection.outlook.com include:mesagroup.eu.spf.auto.dnssmarthost.net -all" |
_dmarc.mesagroup.eu | TXT | Text record | "v=DMARC1; p=quarantine; rua=mailto:ict.admin@mesagroup.eu; ruf=mailto:ict.admin@mesagroup.eu; fo=1" |
Recommendation
We recommend reviewing all DNS records associated with the domain and identifying and removing unused or obsolete records.
Vulnerability description
OS detection couldn't determine the operating system.
Recommendation
Vulnerability checks are skipped for ports that redirect to another port. We recommend scanning the redirected port directly.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
mesagroup.eu | SPF | Sender Policy Framework | "v=spf1 include:musvc.com include:spf.mailjet.com include:spf.protection.outlook.com include:mesagroup.eu.spf.auto.dnssmarthost.net -all" |
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
default | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv+j9uAxPv+/Vq9bF/vA7qAMNLE9tK1ZODuz0aXM0z1ldBwPhQ/+24wnaEupHDZC49mFhtGJ1CMJlyKC39XhSKietqevnlQvEFiulGKe+U2SVGCznDxb24sT9jBiW+yJDk5eZhgh05GmRwAKvC76ifRyjS/JpTqftazrRD5fOKpu3qlER+708E3zO68ACRn1iD" "H8RiHWwudcYnHIyeGeoAMA580WJIJtrQ8pelN9nTij3v10sHzTdNeyDDw66dFNhmwFkWxp99Hiwn2oGAwYZWvPKqi6NgQfOoZ/H36l5VP40nxMWMqe9PC6XhCQQbR/AaLThBwoKO2eYibuCKtDkfwIDAQAB;" |
k2 | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2aC2KjGKLOwTweBY5A9RpjsxaBXR9r7OAU6U8/zn92ivImI75naUujWbItRI/QmL1jy5PWGqLwoUA0b90ObWaLDc+i9MtTNmGeWO009hr20fIxhGg6XBT2kjZ1DTThopSe1nAndsupmcBwlQ5Q6LJ+ZAxLcujnPIxM0ZBLmgpkv8u6RfY4eFP8OLvdAW3oSu" "B0DyLDigQX4Sj8wBO4YIdQH6AAmBeOsidsKAFNFUCpc3vCxtBDR12U+cBg724l3sBkMQ8evnz6idnqxq9QAVYh8k4kJ+RP+6cqTdy7LjIm8xY/bQNpQIpGUAuDo2DjLcCDun9DAI4Q/3z+Q0o9QuQIDAQAB;" |
k3 | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsYGiMSn7fsUqSvfSX40x9R1OlRtbNiCY80lHRIlcKx3XDIR7257aUx+q9CSIARdfTL6KCuLGNFx5g9TgVr6png4ajcieSQGtOehBgxnkDN8aAA5TX0FmFrcefJU0JoxLOF09EKgXxhSSHCk/ekVb0PXSboHXoZ9+EI404F1qhcwXXIgHXTaUthHTut2P6BBZh" "IXIgvDe/w49GchR7MRJqjNb7neEBbYHbgWuBTvvHCg7Gy6m6n9krYK+ROWq3dVvXy9plAGK3ygM+HtjIiMt7arRGMOF0WgDTz7YdN9BGpt6BvXxLnjiQcgS5T9n+cIyPZgiWzDMXNlaEEdKTEKxrwIDAQAB;" |
mailjet | rsa | 1296 | "k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCuPQE7Gd3uBWWaIfn8bpmUZVh4urL00W808jWNCeCPGVP3KEEs6q521Cc/SsYKSKceF4WXrLsssHwLNYfFK1IcLjtUeGKOu86Rd69jwsHeGYb5OU+DWzbpUk2k+Jnxr6qgfG0f9l9Op/H/QsPSfFMr7gAIQf0/iC9/qKKSUEHMGwIDAQAB" |
s1 | rsa | 1446 | "k=rsa; t=s; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzAdtxIbOsar24c/WUh1UaP79Vw4q8MV+ktfLtD3xPa6Cls0yn7vCWwmD+moAHY9sQRqOLnV2T/CdhoHTmP4WooTeeEchpOug/Z4x6pr9Yp3C8w+jRralw6wLuyS8D8wrMQD/pj0l+q+ARAv9L+JzsOLenOwgZ3hgcnKHiJv8LT1CED7WgF1mGe3JJQUCFeJpo+S8h" "VYzwajrum+sSZlZ+pFFCDqbBVYGIWVlJliPC3088hUI6wugDvJUwC7OSRLKmZoeBIkXepDAaTmtsrMzPFGWNBkJEgPFnb26NcXbKrqAehdCcPd+osmgjJAEXkajuNhr/vvUktDnIRff+BaAsQIDAQAB" |
s2 | rsa | 1296 | "k=rsa; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDHVWHT7iSwL1hQcgLfs0MC5I99tdDoY4c38+G1W2ybrHsyAh24Wy90E812KnthtMZIpEPHhXSUK+4Dv9L3Mx4JGk5emaIpfI7bgOij1/Ipy+ZiPUcvElksruePaJ0rA66fGJrkIbg6sTgzk7CwTXNAnLMM1EjpXNcdV4p8vvNUeQIDAQAB" |
selector1 | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv1Z1dEKTkWizeKF0Flwo/h3tToC4fmtwR0/WkXzmgiyhTexc4yVNuUP7lcMclRpaZmnzExuFFg78mDK43XazbnwTTtxnud/2FUtAR2BfJjnSLxwgzVnLMEeHC3x34FSKyLukg/FuV1U2Io/q25xDaaIEV4Sg23LzG0QNGtrRz83pGHorUMOb/bUF3W9ut2R/F" "KoEhpytLpq9jJnKg+ib+01f7MnIIS2mgF9ITSyag1FADA5ujW3kdUxYZVv1k0P3JMmN3CPNe7af47KteVjKFrsZK65UrOz69N6PvnUhFOrnTJf/9UWOOZ93+HMmj7hGyusZTAdrkzghIPdyPeLrVQIDAQAB;" |
Evidence
Software / Version | Category |
---|---|
Joomla | CMS |
PHP | Programming languages |
UIKit | UI frameworks |
Bootstrap | UI frameworks |
Nginx | Web servers, Reverse proxies |
MooTools | JavaScript frameworks |
parallax.js | JavaScript libraries |
Modernizr | JavaScript libraries |
jQuery Migrate | JavaScript libraries |
jQuery | JavaScript libraries |
SiteGround | PaaS, Hosting |
Vulnerability description
We noticed that server software and technology details are exposed, potentially aiding attackers in tailoring specific exploits against identified systems and versions.
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.