Vulnerability Scan Result

IP address | 172.65.169.129 |
Country | - |
AS number | AS13335 |
Net name | Cloudflare Inc |
7/tcp | tcpwrapped | - - |
9/tcp | tcpwrapped | - - |
13/tcp | tcpwrapped | - - |
21/tcp | tcpwrapped | - - |
22/tcp | ssh | FortiSSH - |
23/tcp | tcpwrapped | - - |
25/tcp | tcpwrapped | - - |
26/tcp | tcpwrapped | - - |
37/tcp | tcpwrapped | - - |
53/tcp | tcpwrapped | - - |
79/tcp | tcpwrapped | - - |
80/tcp | http | Cloudflare http proxy - |
81/tcp | tcpwrapped | - - |
88/tcp | tcpwrapped | - - |
106/tcp | tcpwrapped | - - |
110/tcp | tcpwrapped | - - |
111/tcp | tcpwrapped | - - |
113/tcp | tcpwrapped | - - |
119/tcp | tcpwrapped | - - |
135/tcp | tcpwrapped | - - |
139/tcp | tcpwrapped | - - |
143/tcp | tcpwrapped | - - |
144/tcp | tcpwrapped | - - |
179/tcp | tcpwrapped | - - |
199/tcp | tcpwrapped | - - |
389/tcp | tcpwrapped | - - |
427/tcp | tcpwrapped | - - |
443/tcp | https | cloudflare - |
444/tcp | tcpwrapped | - - |
445/tcp | tcpwrapped | - - |
465/tcp | tcpwrapped | - - |
513/tcp | tcpwrapped | - - |
514/tcp | tcpwrapped | - - |
515/tcp | tcpwrapped | - - |
543/tcp | tcpwrapped | - - |
544/tcp | tcpwrapped | - - |
548/tcp | tcpwrapped | - - |
554/tcp | tcpwrapped | - - |
587/tcp | tcpwrapped | - - |
631/tcp | tcpwrapped | - - |
646/tcp | tcpwrapped | - - |
873/tcp | tcpwrapped | - - |
990/tcp | ftp | - - |
993/tcp | tcpwrapped | - - |
995/tcp | tcpwrapped | - - |
1025/tcp | tcpwrapped | - - |
1026/tcp | tcpwrapped | - - |
1027/tcp | tcpwrapped | - - |
1028/tcp | tcpwrapped | - - |
1029/tcp | tcpwrapped | - - |
1110/tcp | tcpwrapped | - - |
1433/tcp | tcpwrapped | - - |
1720/tcp | tcpwrapped | - - |
1723/tcp | tcpwrapped | - - |
1755/tcp | tcpwrapped | - - |
1900/tcp | tcpwrapped | - - |
2000/tcp | tcpwrapped | - - |
2001/tcp | tcpwrapped | - - |
2049/tcp | tcpwrapped | - - |
2121/tcp | tcpwrapped | - - |
2717/tcp | tcpwrapped | - - |
3000/tcp | tcpwrapped | - - |
3128/tcp | tcpwrapped | - - |
3306/tcp | tcpwrapped | - - |
3389/tcp | tcpwrapped | - - |
3986/tcp | tcpwrapped | - - |
4444/tcp | tcpwrapped | - - |
4899/tcp | tcpwrapped | - - |
5000/tcp | tcpwrapped | - - |
5009/tcp | tcpwrapped | - - |
5051/tcp | tcpwrapped | - - |
5060/tcp | tcpwrapped | - - |
5101/tcp | tcpwrapped | - - |
5190/tcp | tcpwrapped | - - |
5357/tcp | tcpwrapped | - - |
5432/tcp | tcpwrapped | - - |
5631/tcp | tcpwrapped | - - |
5666/tcp | tcpwrapped | - - |
5800/tcp | tcpwrapped | - - |
5900/tcp | tcpwrapped | - - |
5985/tcp | tcpwrapped | - - |
5986/tcp | tcpwrapped | - - |
6000/tcp | tcpwrapped | - - |
6001/tcp | tcpwrapped | - - |
6646/tcp | tcpwrapped | - - |
7070/tcp | tcpwrapped | - - |
8000/tcp | tcpwrapped | - - |
8008/tcp | tcpwrapped | - - |
8009/tcp | tcpwrapped | - - |
8080/tcp | tcpwrapped | - - |
8081/tcp | tcpwrapped | - - |
8443/tcp | tcpwrapped | - - |
8888/tcp | tcpwrapped | - - |
9100/tcp | jetdirect | - - |
9999/tcp | tcpwrapped | - - |
10000/tcp | tcpwrapped | - - |
32768/tcp | tcpwrapped | - - |
49152/tcp | tcpwrapped | - - |
49153/tcp | tcpwrapped | - - |
49154/tcp | tcpwrapped | - - |
49155/tcp | tcpwrapped | - - |
49156/tcp | tcpwrapped | - - |
49157/tcp | tcpwrapped | - - |
Software / Version | Category |
---|---|
Cloudflare | CDN |
HSTS | Security |
Web Application Vulnerabilities
Evidence
URL | Response URL | Evidence |
---|---|---|
http://sftp.us.savvymoney.io/ | http://sftp.us.savvymoney.io/ | 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 | A3 - Sensitive Data Exposure |
OWASP Top 10 - 2021 | A4 - Insecure Design |
Evidence
URL | Evidence |
---|---|
http://sftp.us.savvymoney.io/ | 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 | A6 - Security Misconfiguration |
OWASP Top 10 - 2021 | A5 - Security Misconfiguration |
Evidence
Software / Version | Category |
---|---|
Cloudflare | CDN |
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
Website is accessible.
Infrastructure Vulnerabilities
Evidence
We managed to detect a publicly accessible SSH service.
Starting Nmap ( https://nmap.org ) at 2025-04-15 00:58 EEST
Nmap scan report for sftp.us.savvymoney.io (172.65.169.129)
Host is up (0.00082s latency).
PORT STATE SERVICE VERSION
22/tcp open ssh FortiSSH (protocol 2.0)
| ssh-auth-methods:
| Supported authentication methods:
| password
| publickey
|_ keyboard-interactive
Service Info: CPE: cpe:/o:fortinet:fortios
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 1.57 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
990/tcp open ftp
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 |
---|---|---|---|
sftp.us.savvymoney.io | A | IPv4 address | 172.65.169.129 |
sftp.us.savvymoney.io | CNAME | Canonical name | 9074971507804294963a38a95fd5acde.pacloudflare.com |
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
Vulnerability description
OS detection couldn't determine the operating system.
Evidence
Software / Version | Category |
---|---|
Cloudflare | CDN |
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 |
---|---|
HSTS | Security |
Cloudflare | CDN |
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.