Vulnerability Scan Result

Title: | Moodcast Fragrance Co. | Discover the Emotional Side of Scent! |
Description: | Moodcast Fragrance Co. crafts custom blended clean home fragrances that explore and celebrate the moods, memories and moments that define us. We focus on the emotional side of scent, transporting you there through the thoughtfully layered notes of each of our fragrances. |
ip_address | 23.227.38.32 |
country | CA ![]() |
network_name | Cloudflare Inc |
asn | AS13335 |
80/tcp | http | Cloudflare http proxy - |
443/tcp | https | Cloudflare http proxy - |
2082/tcp | http | Cloudflare http proxy - |
2083/tcp | https | nginx - |
2086/tcp | http | Cloudflare http proxy - |
2087/tcp | https | nginx - |
8080/tcp | http | Cloudflare http proxy - |
8443/tcp | https | Cloudflare http proxy - |
Software / Version | Category |
---|---|
Google Ads | Advertising |
Alpine.js | JavaScript frameworks |
Google Analytics GA4 | Analytics |
HTTP/3 | Miscellaneous |
PayPal | Payment processors |
Shopify | Ecommerce |
Google Ads Conversion Tracking | Analytics |
Cloudflare | CDN |
Google Tag Manager | Tag managers |
Klaviyo | Marketing automation |
HSTS | Security |
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://moodcast.co/ | localization, cart_currency, _shopify_y, _shopify_s, _tracking_consent | The server responded with Set-Cookie header(s) that does not specify the HttpOnly flag: Set-Cookie: localization=US Set-Cookie: cart_currency=USD Set-Cookie: _shopify_y=a5d32752-02ca-4cb0-9020-87a790eb030b Set-Cookie: _shopify_s=15689f1c-0dae-43fc-ab11-a433e2204d4a Set-Cookie: _tracking_consent=3.AMPS_GBENG_f_f_LOim5*YTRiqMXFuXi3F5fA |
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
URL | Cookie Name | Evidence |
---|---|---|
https://moodcast.co/ | localization, cart_currency, _shopify_y, _shopify_s, _tracking_consent | Set-Cookie: localization=US Set-Cookie: cart_currency=USD Set-Cookie: _shopify_y=a5d32752-02ca-4cb0-9020-87a790eb030b Set-Cookie: _shopify_s=15689f1c-0dae-43fc-ab11-a433e2204d4a Set-Cookie: _tracking_consent=3.AMPS_GBENG_f_f_LOim5*YTRiqMXFuXi3F5fA |
Vulnerability description
We found that a cookie has been set without the Secure
flag, which means the browser will send it over an unencrypted channel (plain HTTP) if such a request is made. The root cause for this usually revolves around misconfigurations in the code or server settings.
Risk description
The risk exists that an attacker will intercept the clear-text communication between the browser and the server and he will steal the cookie of the user. If this is a session cookie, the attacker could gain unauthorized access to the victim's web session.
Recommendation
Whenever a cookie contains sensitive information or is a session token, then it should always be passed using an encrypted channel. Ensure that the secure flag is set for cookies containing such sensitive information.
Classification
CWE | CWE-614 |
OWASP Top 10 - 2017 | |
OWASP Top 10 - 2021 |
Evidence
URL | Evidence |
---|---|
https://moodcast.co/ | 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
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
Software / Version | Category |
---|---|
Google Ads | Advertising |
Alpine.js | JavaScript frameworks |
Google Analytics GA4 | Analytics |
HTTP/3 | Miscellaneous |
PayPal | Payment processors |
Shopify | Ecommerce |
Google Ads Conversion Tracking | Analytics |
Cloudflare | CDN |
Google Tag Manager | Tag managers |
Klaviyo | Marketing automation |
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.
Evidence
URL | Evidence |
---|---|
https://moodcast.co/ | 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 | |
OWASP Top 10 - 2021 |
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.
Infrastructure Vulnerabilities
Evidence
We found insecure DNS cookie usage on the following nameservers: ns65.domaincontrol.com, ns66.domaincontrol.com
Vulnerability description
We found that the server does not implement DNS Cookies or uses them insecurely. DNS Cookies help prevent DNS-based attacks, such as spoofing and amplification attacks.
Risk description
The risk exists because without DNS Cookies, the server is vulnerable to DNS spoofing and amplification attacks. Attackers can manipulate responses or use the server in distributed denial-of-service (DDoS) attacks, compromising network availability and security.
Recommendation
We recommend enabling DNS Cookies to prevent spoofed DNS responses. Ensure proper cookie validation is implemented to mitigate DNS amplification attacks. Regularly update DNS servers to support the latest DNS security features.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
_dmarc.moodcast.co | TXT | Text record | "v=DMARC1;p=reject;rua=mailto:82ea61ce92@rua.easydmarc.us;ruf=mailto:82ea61ce92@ruf.easydmarc.us;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.
Risk description
Without a subdomain policy (sp directive) in the DMARC record, subdomains are not protected by the same DMARC enforcement as the main domain, leaving them vulnerable to spoofing attacks. This inconsistency can be exploited by attackers to send phishing emails from subdomains, undermining the organization’s overall email security.
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
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
moodcast.co | SPF | Sender Policy Framework | "v=spf1 include:emailsrvr.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
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 |
---|---|
Shopify | Ecommerce |
Shop Pay | Payment processors |
PayPal | Payment processors |
Alpine.js | JavaScript frameworks |
HSTS | Security |
Cloudflare | CDN |
HTTP/3 | Miscellaneous |
Google Analytics | Analytics |
Google Ads | Advertising |
Klaviyo | Marketing automation |
Google Tag Manager | Tag managers |
Google Ads Conversion Tracking | Analytics |
core-js 3.37.0 | JavaScript libraries |
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
Operating System | Accuracy |
---|---|
FreeBSD 11.0-RELEASE | 91% |
Vulnerability description
OS Detection
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
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
moodcast.co | A | IPv4 address | 23.227.38.32 |
moodcast.co | NS | Name server | ns65.domaincontrol.com |
moodcast.co | NS | Name server | ns66.domaincontrol.com |
moodcast.co | MX | Mail server | 10 mx1.emailsrvr.com |
moodcast.co | MX | Mail server | 20 mx2.emailsrvr.com |
moodcast.co | SOA | Start of Authority | ns65.domaincontrol.com. dns.jomax.net. 2025052000 28800 7200 604800 600 |
moodcast.co | TXT | Text record | "klaviyo-site-verification=NLDAfz" |
moodcast.co | TXT | Text record | "klaviyo-site-verification=RJx2js" |
moodcast.co | TXT | Text record | "ahrefs-site-verification_264acd2fa6e86d7247cba6a544a9111813e0625cfc16409639db9700845d49d1" |
moodcast.co | TXT | Text record | "google-site-verification=7umlgeW1fg_Lyv5t62h8MvUsSyWdyMHwLIeqEpP70z0" |
moodcast.co | SPF | Sender Policy Framework | "v=spf1 include:emailsrvr.com ~all" |
_dmarc.moodcast.co | TXT | Text record | "v=DMARC1;p=reject;rua=mailto:82ea61ce92@rua.easydmarc.us;ruf=mailto:82ea61ce92@ruf.easydmarc.us;fo=1;" |
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
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
DKIM selector | Key type | Key size | Value |
---|---|---|---|
k1 | rsa | 1296 | "k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDbNrX2cY/GUKIFx2G/1I00ftdAj713WP9AQ1xir85i89sA2guU0ta4UX1Xzm06XIU6iBP41VwmPwBGRNofhBVR+e6WHUoNyIR4Bn84LVcfZE20rmDeXQblIupNWBqLXM1Q+VieI/eZu/7k9/vOkLSaQQdml4Cv8lb3PcnluMVIhQIDAQAB;" |
s2 | rsa | 1296 | "k=rsa; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwfB2VMYyBL5P/a+gjvnu+iDwm88VfoNyAM179nj7JbbsP5PW06UoL+dVPDjHouu5SjoXZnfBwhm3R5E49jzSEhVZTToavwO0vt0bixTN0IYcklnTHWddwv/fH0y/j8sBupczBWz1vOl0hcWUVKFJkt1nWVoB0bXVaZouWox1wAQIDAQAB" |
s1 | rsa | 1446 | "k=rsa; t=s; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApE/KU8QXTp0Di6eZM1WjPfTigv6gX7m/xCYv/f3co5GKaNw12TtgDGJGbhlgJ+kr+M0YHXbNHhO3t5d2VKzVTNybcOhGXQoCu25GF+AUSb3hUK52dcfO+cpvjv5QtnAxV2kiJIlnDQ8RasevBffOrSRDou9krDAO69k2v0on9JOewYYhkBod4w42Vq6Gi7zlLMGyR" "kKH+NFi5pkb8aEmegAMywhqNgXRiY59gCvCeP/bDui4wc7K4nGDbDoJS1y9Afz0Yb86Bq0BpZjELkN65KIcm5Vq/GIgqOPfafIngrDIaySCvMhSFJtUcJCXGpOAa20AFEKlZD+Bj5cZNhXwpQIDAQAB" |