Vulnerability Scan Result

ip_address | 208.113.206.249 |
country | US ![]() |
network_name | New Dream Network LLC |
asn | AS26347 |
22/tcp | ssh | OpenSSH 8.2p1 Ubuntu 4ubuntu0.13 |
25/tcp | smtp | Postfix smtpd - |
80/tcp | http | Apache httpd - |
443/tcp | https | Apache httpd - |
587/tcp | smtp | Postfix smtpd - |
3306/tcp | mysql | MySQL - |
Software / Version | Category |
---|---|
Google Analytics UA | Analytics |
Google Font API | Font scripts |
Apache HTTP Server | Web servers |
Open Graph | Miscellaneous |
Ruby | Programming languages |
Ruby on Rails | Web frameworks |
Web Application Vulnerabilities
Evidence
URL | Cookie Name | Evidence |
---|---|---|
http://hourlynewsapp.com/ | _hourly_news_session | Set-Cookie: _hourly_news_session=WTN6LzZsOW13ZWIwbWNYS3FLZ2RRQm0zTXppMHBnbXpDYlpnRmhQTDB2Sk02dXZtQ2dVM29GSTB2RUhKTkdrcmdoTVV1cGNPSE5jdlArMkp0Qm1HalBMRFBkOXpqOWZqOEN2TE5JZlE3WkFnNUFnUm5rT2g2TGxkZDFOWm1DZG80ZWhpOXhDRENwZExEbFMzR1IvYWRxaDNISjlsRVNCR0pqTmE5WGhXVXM3eXZiVEU3QlFQRzAva0VYYkhBeGwvLS1FeTJvRmFYdS9oNWJUeUZNckRkRmhRPT0%3D--9bec4c5d2f1bdca97a1a4ff4f32cc2634a10a431 |
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 | Response URL | Evidence |
---|---|---|
http://hourlynewsapp.com/ | http://hourlynewsapp.com/ | Communication is made over unsecure, unencrypted HTTP. |
Vulnerability description
We noticed that the communication between the web browser and the server is done using the HTTP protocol, which transmits data unencrypted over the network.
Risk description
The risk is that an attacker who manages to intercept the communication at the network level can read and modify the data transmitted (including passwords, secret tokens, credit card information and other sensitive data).
Recommendation
We recommend you to reconfigure the web server to use HTTPS - which encrypts the communication between the web browser and the server.
Classification
CWE | CWE-311 |
OWASP Top 10 - 2017 | |
OWASP Top 10 - 2021 |
Evidence
URL | Evidence |
---|---|
http://hourlynewsapp.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
Software / Version | Category |
---|---|
Google Analytics UA | Analytics |
Google Font API | Font scripts |
Apache HTTP Server | Web servers |
Open Graph | Miscellaneous |
Ruby | Programming languages |
Ruby on Rails | Web frameworks |
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
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
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 managed to detect a publicly accessible SSH service.
Starting Nmap ( https://nmap.org ) at 2025-06-13 08:28 EEST
Nmap scan report for hourlynewsapp.com (208.113.206.249)
Host is up (0.093s latency).
rDNS record for 208.113.206.249: ds14293.dreamservers.com
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.2p1 Ubuntu 4ubuntu0.13 (Ubuntu Linux; protocol 2.0)
| ssh-auth-methods:
| Supported authentication methods:
| publickey
|_ password
Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 2.04 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 MySQL service.
PORT STATE SERVICE VERSION
3306/tcp open mysql MySQL
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.
Risk description
The risk exists that an attacker exploits this issue by launching a password-based attack on the MySQL service. Furthermore, they could exploit zero-day vulnerabilities to obtain remote access to the MySQL database server, thereby gaining complete control over its operating system and associated services. Such an attack could lead to the exposure of confidential or sensitive information.
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.
Evidence
Domain Queried | DNS Record Type | Description | Value |
---|---|---|---|
hourlynewsapp.com | A | IPv4 address | 208.113.206.249 |
hourlynewsapp.com | NS | Name server | ns1.dreamhost.com |
hourlynewsapp.com | NS | Name server | ns3.dreamhost.com |
hourlynewsapp.com | NS | Name server | ns2.dreamhost.com |
hourlynewsapp.com | SOA | Start of Authority | ns1.dreamhost.com. hostmaster.dreamhost.com. 2024062205 16441 600 1814400 300 |
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 |
---|---|
Android 5.0.1 | 94% |
Vulnerability description
OS Detection
Evidence
Software / Version | Category |
---|---|
Ruby | Programming languages |
Ruby on Rails | Web frameworks |
Apache HTTP Server | Web servers |
Google Analytics UA | Analytics |
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 |
---|---|
Ruby | Programming languages |
Ruby on Rails | Web frameworks |
Apache HTTP Server | Web servers |
Google Analytics UA | Analytics |
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.