Vulnerability Scan Result

ip_address | 104.21.64.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.96.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.48.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.16.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.112.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.32.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
ip_address | 104.21.80.1 |
country | - |
network_name | Cloudflare Inc |
asn | AS13335 |
80/tcp | http | Cloudflare http proxy - |
443/tcp | https | cloudflare - |
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 | http | cloudflare - |
No technologies could be detected.
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://burrely.com/discord | __cfruid | Set-Cookie: .discord.com |
Vulnerability description
We found that the target application sets cookies with a domain scope that is too broad. Specifically, cookies intended for use within a particular application are configured in such a way that they can be accessed by multiple subdomains of the same primary domain.
Risk description
The risk is that a cookie set for example.com may be sent along with the requests sent to dev.example.com, calendar.example.com, hostedsite.example.com. Potentially risky websites under your main domain may access those cookies and use the victim session from the main site.
Recommendation
The `Domain` attribute should be set to the origin host to limit the scope to that particular server. For example if the application resides on server app.mysite.com, then it should be set to `Domain=app.mysite.com`
Classification
CWE | CWE-614 |
OWASP Top 10 - 2017 | |
OWASP Top 10 - 2021 |
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://burrely.com/twitch | twitch.lohp.countryCode | Set-Cookie: twitch.lohp.countryCode=IT |
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 | Cookie Name | Evidence |
---|---|---|
https://burrely.com/twitch | unique_id, twitch.lohp.countryCode | The server responded with Set-Cookie header(s) that does not specify the HttpOnly flag: Set-Cookie: unique_id=NpbK3MpHV9WUlFyQ60tHexRBDW9KUmt1 Set-Cookie: twitch.lohp.countryCode=IT |
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 | Evidence |
---|---|
https://burrely.com/ | 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 | Evidence |
---|---|
https://burrely.com/ | 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 | |
OWASP Top 10 - 2021 |
Evidence
URL | Evidence |
---|---|
https://burrely.com/discord | 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
URL | Evidence |
---|---|
https://burrely.com/discord | 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://burrely.com/jinxxy | 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 |
Evidence
Vulnerability description
Website is accessible.
Infrastructure Vulnerabilities
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
burrely.com | SPF | Sender Policy Framework | "v=spf1 include:spf.mailjet.com include:_spf.mx.cloudflare.net ~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
We didn't find any TXT records associated with the target.
Vulnerability description
We found that the target server has no DMARC policy configured. A missing DMARC (Domain-based Message Authentication, Reporting, and Conformance) policy means that the domain is not enforcing any DMARC policies to protect against email spoofing and phishing attacks. Without DMARC, even if SPF (Sender Policy Framework) or DKIM (DomainKeys Identified Mail) are configured, there is no mechanism to tell receiving email servers how to handle messages that fail authentication. This leaves the domain vulnerable to abuse, such as email spoofing and impersonation.
Risk description
Without a DMARC policy, your domain is highly vulnerable to email spoofing, allowing attackers to impersonate your brand and send fraudulent emails that appear legitimate. This can lead to phishing attacks targeting your customers, employees, or partners, potentially resulting in stolen credentials, financial loss, or unauthorized access to sensitive systems. Additionally, repeated spoofing attempts can severely damage your brand's reputation, as recipients may lose trust in communications from your domain, associating your brand with malicious activity. The absence of DMARC also prevents you from monitoring and mitigating email-based attacks, leaving your domain exposed to ongoing abuse.
Recommendation
We recommend implementing a DMARC policy for your domain. Start by configuring a DMARC record with a policy of p=none, which will allow you to monitor email flows without impacting legitimate emails. This initial setup helps identify how emails from your domain are being processed by recipient servers. Once you’ve verified that legitimate emails are passing SPF and DKIM checks, you can gradually enforce stricter policies like p=quarantine or p=reject to protect against spoofing and phishing attacks. Additionally, include rua and ruf email addresses in the DMARC record to receive aggregate and forensic reports. These reports will provide valuable insights into authentication failures and help you detect any spoofing attempts.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
burrely.com | A | IPv4 address | 104.21.64.1 |
burrely.com | A | IPv4 address | 104.21.48.1 |
burrely.com | A | IPv4 address | 104.21.80.1 |
burrely.com | A | IPv4 address | 104.21.96.1 |
burrely.com | A | IPv4 address | 104.21.32.1 |
burrely.com | A | IPv4 address | 104.21.16.1 |
burrely.com | A | IPv4 address | 104.21.112.1 |
burrely.com | NS | Name server | dana.ns.cloudflare.com |
burrely.com | NS | Name server | phil.ns.cloudflare.com |
burrely.com | MX | Mail server | 82 route2.mx.cloudflare.net |
burrely.com | MX | Mail server | 90 route1.mx.cloudflare.net |
burrely.com | MX | Mail server | 94 route3.mx.cloudflare.net |
burrely.com | SOA | Start of Authority | dana.ns.cloudflare.com. dns.cloudflare.com. 2376089614 10000 2400 604800 1800 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:1001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:3001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:4001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:5001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:2001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:6001 |
burrely.com | AAAA | IPv6 address | 2606:4700:3030::6815:7001 |
burrely.com | SPF | Sender Policy Framework | "v=spf1 include:spf.mailjet.com include:_spf.mx.cloudflare.net ~all" |
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 |
---|---|
FreeBSD 11.1-STABLE | 91% |
Vulnerability description
OS Detection
Evidence
DKIM selector | Key type | Key size | Value |
---|---|---|---|
mailjet | rsa | 1476 | "k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyU0rlvYm/qgkMTnkwf44D8HvOXwWiSUSAcjuT3ah3iYSFzh9MEvAvZA1q7U29rufZlOu7QIJgchhbpprvX2CT8h6gtXdVSBWrg6kEEcPdM3a8ujPP5hwt92l42cLVTIR0sRj9xGOyMlrmRN85DDW40rpDaktlFhgbdK8aOyJPwVqZsVkZwPgZnNZnqQ7pxqza79A+jvTao" "6gXMEJGjYZB6IfLdk43AbiNGV/g7qrhcnAaAbTKHv9qh9R3cUXG266yhw3a5ZrupSgX+vzM3rSjdj1RFunWlQKQVCax6yGnk00u1YzWdclfUdFKG1GU6aC9KuknWDVWbVj4LQEYhQnxwIDAQAB" |