Vulnerability Scan Result
IP address | 141.125.104.208 |
Country | US |
AS number | AS36351 |
Net name | Softlayer Technologies Inc |
IP address | 158.176.192.52 |
Country | DE |
AS number | AS36351 |
Net name | Softlayer Technologies Inc |
IP address | 141.125.157.19 |
Country | US |
AS number | AS36351 |
Net name | Softlayer Technologies Inc |
80/tcp | http | Youcan.Private.DC/2.0 |
443/tcp | https | Youcan.Private.DC/2.0 |
Software / Version | Category |
---|---|
Google Font API | Font scripts |
Laravel | Web frameworks |
MySQL | Databases |
PHP | Programming languages |
Redis | Databases |
Splide | JavaScript libraries |
Unpkg | CDN |
YouCan | Ecommerce |
YouCan Pay | Payment processors |
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
https://almatjars.store/ | fvurl, original-referrer, youcan_session, yvid | Set-Cookie: fvurl=eyJpdiI6IkxvaHJHRWc0QWQxajN2NFU5TzkzRHc9PSIsInZhbHVlIjoiV0I3clRyRlV0ZVBwSG9YYk9iT0p1NGp6MERjbWcxRWhucVVCd1NVY2ZpUFNXZ1pTZG1sXC9lY1VSVWQ0RkVpNjkiLCJtYWMiOiIzZmFjMzQ4NzVkODEyMmQ2MDUyN2Q0NzFjZDA0MDEyMTJlNGIzNTBkNmU3OTRiZmUzMDQ5OGUzM2IyYWU4NTE2In0%3D Set-Cookie: original-referrer=eyJpdiI6IjFoQ2tWcVwva0UzTHM4STErWDZ0QW1nPT0iLCJ2YWx1ZSI6IlNqY3JtK1lcL09ETDlKWDdDZ3lQbExrbnpEUHV6ZW45SGZyVVwvZ0FYMTZLRFdYSWl1bDZsWnl2RWNYcE9RaHE2MiIsIm1hYyI6ImM4NzA2OTE2NWY1NDkyMjQ5NTRhNGM0MzZhZWViMzg5YzRlODMyMjdlZmVlY2M4YWQxYmQxNTYxNDcyYmQyYjQifQ%3D%3D Set-Cookie: youcan_session=eyJpdiI6IlJYcGRaVWdMSjgwUElhSVNEOGtVU3c9PSIsInZhbHVlIjoiOERZT0J0YjNVcUhOR3pmQ0ZZenNla3lLYU8wRVpnbk4rZ2pabEpKNDNFcVNqOTJTeVpDSDQ1aURUZGk2NnFBTEpucmw3eUJTRklhclR2UnhQWUxsUWRhUEsrcGVIditLekZ2cHBWd1h4RTdOS1F2TTkybEdiSk9cL0Zya2c5Q0ErIiwibWFjIjoiNWMxNGMwODM2YWVlZWVjMmU2OWZhNGIxZDNlYTQ5N2Y2ODRjOGUwNDc4MmViNjg4NWFkMWFmMmJiMTRjYzU2MyJ9 Set-Cookie: yvid=eyJpdiI6IlFNZEh6OGRYeWZQZUlqT0tseGRUR1E9PSIsInZhbHVlIjoiRExvWloxNHB4N2doRnczWlByTFd5ZEVBTjZzUE9zY2hJYlozWE51aVVMWWJncG9mOEtNZER3ZFhLRFRjWHMrYTJCXC9DZzFXM1VPQWpkZnVlWEFObFQwbGJWZTc1UTFkNGtDOExcL00zSDMzST0iLCJtYWMiOiJjNDliMTFkMjExZDlkN2UyN2M0YzQxOWFlY2FkNTc3NTY2MWYwNDljM2VmNTIxYjY4YTBlYmJjNmNmMjY3Y2MwIn0%3D |
Vulnerability description
We found that a cookie has been set without the <code>Secure</code> 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.
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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
URL | Evidence |
---|---|
https://almatjars.store/ | 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 |
Evidence
URL | Evidence |
---|---|
https://almatjars.store/ | 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://almatjars.store/ | 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://almatjars.store/ | 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
Software / Version | Category |
---|---|
Google Font API | Font scripts |
Laravel | Web frameworks |
MySQL | Databases |
PHP | Programming languages |
Redis | Databases |
Splide | JavaScript libraries |
Unpkg | CDN |
YouCan | Ecommerce |
YouCan Pay | Payment processors |
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.
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.
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 |
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.
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 |
---|---|---|---|
almatjars.store | A | IPv4 address | 141.125.104.208 |
almatjars.store | A | IPv4 address | 158.176.192.52 |
almatjars.store | A | IPv4 address | 141.125.157.19 |
almatjars.store | NS | Name server | ns2.youcan.shop |
almatjars.store | NS | Name server | ns1.youcan.shop |
almatjars.store | MX | Mail server | 10 mta2.youcan.shop |
almatjars.store | MX | Mail server | 5 mta1.youcan.shop |
almatjars.store | SOA | Start of Authority | ns1.youcan.shop. ns1.youcan.shop. 2020020300 1800 3600 1209600 3600 |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "digicert.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "sectigo.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "pki.goog" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "comodoca.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "letsencrypt.org" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issue "amazon.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 iodef "mailto:support@youcan.shop" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "comodoca.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "sectigo.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "digicert.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "pki.goog" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "amazon.com" |
almatjars.store | CAA | Certificate Authority Authorization | 0 issuewild "letsencrypt.org" |
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.