Vulnerability Scan Result

IP address | 162.244.66.137 |
Country | US ![]() |
AS number | AS18501 |
Net name | Codero |
21/tcp | ftp | Pure-FTPd - |
22/tcp | ssh | OpenSSH 8.7 |
25/tcp | smtp | - - |
53/tcp | domain | PowerDNS Authoritative Server 4.9.2 |
80/tcp | http | Apache httpd - |
110/tcp | pop3 | Dovecot pop3d - |
143/tcp | imap | Dovecot imapd - |
443/tcp | https | Apache httpd - |
465/tcp | smtp | Exim smtpd 4.98.1 |
587/tcp | smtp | Exim smtpd 4.98.1 |
993/tcp | imaps | - - |
995/tcp | pop3s | - - |
Software / Version | Category |
---|---|
Elementor 3.21.6 | Page builders, WordPress plugins |
jQuery Migrate 3.4.1 | JavaScript libraries |
Web Font Loader | JavaScript libraries |
core-js 3.32.0 | JavaScript libraries |
Google Analytics | Analytics |
Google Font API | Font scripts |
Apache HTTP Server | Web servers |
imagesLoaded | JavaScript libraries |
Isotope | JavaScript libraries |
jQuery 3.7.1 | JavaScript libraries |
jQuery UI 1.13.3 | JavaScript libraries |
LiteSpeed | Web servers |
AOS | JavaScript libraries |
MySQL | Databases |
Open Graph | Miscellaneous |
PHP | Programming languages |
RankMath SEO | WordPress plugins, SEO |
Site Kit 1.148.0 | Analytics, WordPress plugins |
Underscore.js | JavaScript libraries |
Priority Hints | Performance |
WooCommerce | Ecommerce, WordPress plugins |
WordPress | CMS, Blogs |
Google Tag Manager | Tag managers |
LiteSpeed Cache | Caching, WordPress plugins |
Lodash 1.13.7 | JavaScript libraries |
Max Mega Menu | Widgets, WordPress plugins |
HSTS | Security |
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://www.webdmedia.com/ | ywB-MFzaHbtiGWo, oGkqNFeUdjnEScIs, jXfYHsDP, TGqibZpHJz | The server responded with Set-Cookie header(s) that does not specify the HttpOnly flag: Set-Cookie: ywB-MFzaHbtiGWo=Gh7fUSdV8 Set-Cookie: oGkqNFeUdjnEScIs=E7ejbS1OMgW_N3 Set-Cookie: jXfYHsDP=Id.sDoS Set-Cookie: TGqibZpHJz=sY%2ABVRy |
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://www.webdmedia.com/ | 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://www.webdmedia.com/ | 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
Software / Version | Category |
---|---|
Elementor 3.21.6 | Page builders, WordPress plugins |
jQuery Migrate 3.4.1 | JavaScript libraries |
Web Font Loader | JavaScript libraries |
core-js 3.32.0 | JavaScript libraries |
Google Analytics | Analytics |
Google Font API | Font scripts |
Apache HTTP Server | Web servers |
imagesLoaded | JavaScript libraries |
Isotope | JavaScript libraries |
jQuery 3.7.1 | JavaScript libraries |
jQuery UI 1.13.3 | JavaScript libraries |
LiteSpeed | Web servers |
AOS | JavaScript libraries |
MySQL | Databases |
Open Graph | Miscellaneous |
PHP | Programming languages |
RankMath SEO | WordPress plugins, SEO |
Site Kit 1.148.0 | Analytics, WordPress plugins |
Underscore.js | JavaScript libraries |
Priority Hints | Performance |
WooCommerce | Ecommerce, WordPress plugins |
WordPress | CMS, Blogs |
Google Tag Manager | Tag managers |
LiteSpeed Cache | Caching, WordPress plugins |
Lodash 1.13.7 | JavaScript libraries |
Max Mega Menu | Widgets, WordPress plugins |
HSTS | Security |
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.
Evidence
URL | Method | Parameters | Evidence |
---|---|---|---|
https://www.webdmedia.com/ | 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 | Email Address: contact@webdmedia.com alex@webdmedia.com contato@webdmedia.com |
https://www.webdmedia.com/solutions | 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 Cookies: TGqibZpHJz=sY%2ABVRy jXfYHsDP=Id.sDoS oGkqNFeUdjnEScIs=E7ejbS1OMgW_N3 ywB-MFzaHbtiGWo=Gh7fUSdV8 | Email Address: career@webdmedia.com hello@webdmedia.com |
Vulnerability description
We noticed that this web application exposes email addresses, which might be unintended. While not inherently a vulnerability, this information could be leveraged in social engineering or spam related activities.
Risk description
The risk is that exposed email addresses within the application could be accessed by unauthorized parties. This could lead to privacy violations, spam, phishing attacks, or other forms of misuse.
Recommendation
Compartmentalize the application to have 'safe' areas where trust boundaries can be unambiguously drawn. Do not allow email addresses to go outside of the trust boundary, and always be careful when interfacing with a compartment outside of the safe area.
Classification
CWE | CWE-200 |
OWASP Top 10 - 2017 | A6: Security Misconfiguration |
OWASP Top 10 - 2021 | A4: Insecure Design |
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
Risk level | CVSS | CVE | Summary |
---|---|---|---|
9.8 | CVE-2023-38408 | The PKCS#11 feature in ssh-agent in OpenSSH before 9.3p2 has an insufficiently trustworthy search path, leading to remote code execution if an agent is forwarded to an attacker-controlled system. (Code in /usr/lib is not necessarily safe for loading into ssh-agent.) NOTE: this issue exists because of an incomplete fix for CVE-2016-10009. | |
8.1 | CVE-2024-6387 | A security regression (CVE-2006-5051) was discovered in OpenSSH's server (sshd). There is a race condition which can lead sshd to handle some signals in an unsafe manner. An unauthenticated, remote attacker may be able to trigger it by failing to authenticate within a set time period. | |
6.8 | CVE-2025-26465 | A vulnerability was found in OpenSSH when the VerifyHostKeyDNS option is enabled. A machine-in-the-middle attack can be performed by a malicious machine impersonating a legit server. This issue occurs due to how OpenSSH mishandles error codes in specific conditions when verifying the host key. For an attack to be considered successful, the attacker needs to manage to exhaust the client's memory resource first, turning the attack complexity high. | |
6.5 | CVE-2023-51385 | In ssh in OpenSSH before 9.6, OS command injection might occur if a user name or host name has shell metacharacters, and this name is referenced by an expansion token in certain situations. For example, an untrusted Git repository can have a submodule with shell metacharacters in a user name or host name. | |
5.9 | CVE-2023-48795 | The SSH transport protocol with certain OpenSSH extensions, found in OpenSSH before 9.6 and other products, allows remote attackers to bypass integrity checks such that some packets are omitted (from the extension negotiation message), and a client and server may consequently end up with a connection for which some security features have been downgraded or disabled, aka a Terrapin attack. This occurs because the SSH Binary Packet Protocol (BPP), implemented by these extensions, mishandles the handshake phase and mishandles use of sequence numbers. For example, there is an effective attack against SSH's use of ChaCha20-Poly1305 (and CBC with Encrypt-then-MAC). The bypass occurs in chacha20-poly1305@openssh.com and (if CBC is used) the -etm@openssh.com MAC algorithms. This also affects Maverick Synergy Java SSH API before 3.1.0-SNAPSHOT, Dropbear through 2022.83, Ssh before 5.1.1 in Erlang/OTP, PuTTY before 0.80, AsyncSSH before 2.14.2, golang.org/x/crypto before 0.17.0, libssh before 0.10.6, libssh2 through 1.11.0, Thorn Tech SFTP Gateway before 3.4.6, Tera Term before 5.1, Paramiko before 3.4.0, jsch before 0.2.15, SFTPGo before 2.5.6, Netgate pfSense Plus through 23.09.1, Netgate pfSense CE through 2.7.2, HPN-SSH through 18.2.0, ProFTPD before 1.3.8b (and before 1.3.9rc2), ORYX CycloneSSH before 2.3.4, NetSarang XShell 7 before Build 0144, CrushFTP before 10.6.0, ConnectBot SSH library before 2.2.22, Apache MINA sshd through 2.11.0, sshj through 0.37.0, TinySSH through 20230101, trilead-ssh2 6401, LANCOM LCOS and LANconfig, FileZilla before 3.66.4, Nova before 11.8, PKIX-SSH before 14.4, SecureCRT before 9.4.3, Transmit5 before 5.10.4, Win32-OpenSSH before 9.5.0.0p1-Beta, WinSCP before 6.2.2, Bitvise SSH Server before 9.32, Bitvise SSH Client before 9.33, KiTTY through 0.76.1.13, the net-ssh gem 7.2.0 for Ruby, the mscdex ssh2 module before 1.15.0 for Node.js, the thrussh library before 0.35.1 for Rust, and the Russh crate before 0.40.2 for Rust. |
Vulnerability description
Vulnerabilities found for Openssh 8.7
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
We managed to detect a publicly accessible SSH service.
Starting Nmap ( https://nmap.org ) at 2025-05-22 08:11 EEST
Nmap scan report for webdmedia.com (162.244.66.137)
Host is up (0.13s latency).
rDNS record for 162.244.66.137: 137-66-244-162.dedicated.codero.net
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.7 (protocol 2.0)
| ssh-auth-methods:
| Supported authentication methods:
| publickey
| gssapi-keyex
| gssapi-with-mic
|_ password
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 2.66 seconds
Vulnerability description
We found that the SSH service with username/password authentication is publicly accessible. Network administrators often use remote administration protocols to control devices like switches, routers, and other essential systems. However, allowing these services to be accessible via the Internet can increase security risks, creating potential opportunities for attacks on the organization.
Risk description
Exposing this service online with username/password authentication can enable attackers to launch authentication attacks, like guessing login credentials, and potentially gaining unauthorized access. Vulnerabilities, such as unpatched software, protocol flaws, or backdoors could also be exploited. An example is the CVE-2024-3094 (XZ Utils Backdoor) vulnerability.
Recommendation
We recommend turning off SSH with username/password authentication access over the Internet and instead using a Virtual Private Network (VPN) that mandates two-factor authentication (2FA). If the SSH service is essential for business purposes, we recommend limiting access only from designated IP addresses using a firewall. Furthermore, it is advisable to utilize SSH Public Key Authentication since it employs a key pair to verify the identity of a user or process.
Evidence
We managed to detect a publicly accessible File Transfer Protocol (FTP) service.
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.
Risk description
Exposing this service online can enable attackers to execute man-in-the-middle attacks, capturing sensitive user credentials and the contents of files because FTP operates without encryption. The entirety of the communication between the client and the server remains unsecured in plaintext. This acquired information could further facilitate additional attacks within the network.
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.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
webdmedia.com | SPF | Sender Policy Framework | "v=spf1 ip4:162.244.66.137 ip4:199.241.218.145 include:_spf.google.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
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
_dmarc.webdmedia.com | TXT | Text record | "v=DMARC1;p=reject;sp=none;adkim=r;aspf=r;pct=5;fo=1;rf=afrf;ri=86400;rua=mailto:3092bc8960@rua.easydmarc.us;ruf=mailto:3092bc8960@ruf.easydmarc.us" |
Vulnerability description
We found that the DMARC record for the domain is configured with sp=none, meaning that no policy is enforced for subdomains. This allows subdomains to send emails without being subject to DMARC checks, making it easier for attackers to spoof emails from these subdomains. Subdomains are often overlooked in email security, and attackers can exploit this misconfiguration to launch phishing or spoofing attacks from seemingly legitimate subdomains of a protected domain.
Risk description
When the DMARC record is configured with sp=none, subdomains are not subject to DMARC enforcement, allowing attackers to spoof emails from subdomains without being blocked. This creates a significant risk of phishing and impersonation attacks, where malicious emails appear to originate from trusted subdomains. These spoofed emails can be used to deceive users or damage the organization's reputation, undermining the security benefits of DMARC for the primary domain.
Recommendation
To mitigate the risk, we recommend that the subdomain policy should be updated to sp=reject to ensure that any email failing DMARC checks from subdomains is automatically rejected. This will help prevent unauthorized emails from being sent from subdomains, reducing the risk of spoofing and phishing. Additionally, it's important to regularly monitor DMARC reports to track email activity from subdomains and adjust policies as needed to maintain consistent security across the entire domain.
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
default | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5d9fHnAK3/QDKoJVadRi9YveMmhBD18+LoEP3Gg2CJNMT20HDSlORbxzShSGL7RYi3vqKOw0+NoNhhDLZB5jKbtPkElcle/vbNqQkhQINOlCNkWVcaL2mpI6c4ew/mlYemeyMsWGELi4xFr2173fnGuodu/rIrDuQ2lcx8ro3N3Go3pURdeDNA8rQS7mq3LuU" "s9Z11XG6zyq48BdhcmPNfUcJT9cvX7cgpR/fPLHhd8nIWZdzbsnHhijZPp+LeNO7EAw55smbuVNomkaIBe6gTLl1xQFy+yXKMSU8shg6yTBu24qcqRsLKUvzY7Fde+IZujdKryhmnh7Z4EapQaRFQIDAQAB;" |
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.
Risk description
Using a common DKIM selector makes it easier for attackers to predict and exploit email authentication weaknesses. Attackers may attempt to find corresponding DKIM keys or improperly managed records associated with common selectors. If a common selector is coupled with a weak key length or poor key management practices, it significantly increases the likelihood of email spoofing and phishing attacks.
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 |
---|---|---|---|
webdmedia.com | A | IPv4 address | 162.244.66.137 |
webdmedia.com | NS | Name server | dns2.webdmedia.com |
webdmedia.com | NS | Name server | dns1.webdmedia.com |
webdmedia.com | NS | Name server | dns3.webdmedia.com |
webdmedia.com | NS | Name server | dns4.webdmedia.com |
webdmedia.com | MX | Mail server | 10 alt4.aspmx.l.google.com |
webdmedia.com | MX | Mail server | 1 aspmx.l.google.com |
webdmedia.com | MX | Mail server | 5 alt1.aspmx.l.google.com |
webdmedia.com | MX | Mail server | 5 alt2.aspmx.l.google.com |
webdmedia.com | MX | Mail server | 10 alt3.aspmx.l.google.com |
webdmedia.com | SOA | Start of Authority | dns1.webdmedia.com. root.host.webdmedia.com. 2025052001 3600 1800 1209600 86400 |
webdmedia.com | TXT | Text record | "atlassian-domain-verification=NNb5ODQ1U31COpvwHcAmc4k/XrhWY0mPBNEkJAGro2EGxkhx4F0trQ+LYX1bn0f6" |
webdmedia.com | TXT | Text record | "facebook-domain-verification=da4dasw8xk0w42mz5o0gsjbjatay5q" |
webdmedia.com | TXT | Text record | "google-site-verification=X82uKPYXWPfrTGFyzCPeH6QhdDI4w1KJGjg5Fg8M3rI" |
webdmedia.com | TXT | Text record | "apple-domain-verification=J5npIADqG620cBKJFfD9ciw12Hd7P7M5rL0ojXEA3xI" |
webdmedia.com | SPF | Sender Policy Framework | "v=spf1 ip4:162.244.66.137 ip4:199.241.218.145 include:_spf.google.com ~all" |
_dmarc.webdmedia.com | TXT | Text record | "v=DMARC1;p=reject;sp=none;adkim=r;aspf=r;pct=5;fo=1;rf=afrf;ri=86400;rua=mailto:3092bc8960@rua.easydmarc.us;ruf=mailto:3092bc8960@ruf.easydmarc.us" |
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
Operating System | Accuracy |
---|---|
Linux 2.6.32 | 94% |
Vulnerability description
OS Detection
Evidence
We managed to detect the redirect using the following Request / Response chain.
Recommendation
Vulnerability checks are skipped for ports that redirect to another port. We recommend scanning the redirected port directly.
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
default | rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5d9fHnAK3/QDKoJVadRi9YveMmhBD18+LoEP3Gg2CJNMT20HDSlORbxzShSGL7RYi3vqKOw0+NoNhhDLZB5jKbtPkElcle/vbNqQkhQINOlCNkWVcaL2mpI6c4ew/mlYemeyMsWGELi4xFr2173fnGuodu/rIrDuQ2lcx8ro3N3Go3pURdeDNA8rQS7mq3LuU" "s9Z11XG6zyq48BdhcmPNfUcJT9cvX7cgpR/fPLHhd8nIWZdzbsnHhijZPp+LeNO7EAw55smbuVNomkaIBe6gTLl1xQFy+yXKMSU8shg6yTBu24qcqRsLKUvzY7Fde+IZujdKryhmnh7Z4EapQaRFQIDAQAB;" |
rsa | 1422 | "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhxKJoLRDhLtwQrY2RKYxhvomtqePioqITNw9RU4hJ+uFGCBo79El0omEEdoNO3UMNasTzEXxjDZAnfosgXQM0elOG6JJN5OHmPiYYvoirdB2szM7GdNsQthxyfP+W0lg725ucQh1+puYwlKrmsjVydSQCFq03s+4Rzie0wsALJL/3vCGQe9q+eY/ehL4tc8vN" "j8BZ9+mZ2oxbX/SC1FWokhPKtLFmCuj1y7YkhotcwwU/WtaSgjlPolnmQtsQL2oex36unrm4+jm3H+qkQRnHQVBOE1unZZDJMSISVmzXv1j1lYk2dhOk7tKfCz78ApZ1zZOv9lkT/Uj1U8z0PbEAQIDAQAB" |
Evidence
Software / Version | Category |
---|---|
WordPress | CMS, Blogs |
MySQL | Databases |
PHP | Programming languages |
LiteSpeed | Web servers |
RankMath SEO | WordPress plugins, SEO |
Apache HTTP Server | Web servers |
WooCommerce | Ecommerce, WordPress plugins |
LiteSpeed Cache | Caching, WordPress plugins |
Elementor 3.21.6 | Page builders, WordPress plugins |
Site Kit 1.148.0 | Analytics, WordPress plugins |
Max Mega Menu | Widgets, WordPress plugins |
Web Font Loader | JavaScript libraries |
jQuery | JavaScript libraries |
Google Tag Manager | Tag managers |
Google Analytics | Analytics |
HSTS | Security |
Google Font API | Font scripts |
Open Graph | 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.