All ports
Port38800/TCP
sruthPort
38800
Protocol
TCP
Category
Registered
Service
sruth
What is port 38800?
Port 38800/TCP is a Registered port, registered with IANA for specific applications. It is associated with the sruth service.
Sruth is a service for the distribution of routinely- generated but arbitrary files based on a publish/subscribe distribution model and implemented using a peer-to-peer transport mechanism
Useful commands
nmapnmap -p 38800 -sV example.comnetcatnc -zv example.com 38800curlcurl -v http://example.com:38800/telnettelnet example.com 38800bash(echo > /dev/tcp/example.com/38800) 2>/dev/nullFirewall commands
UFWAllow
sudo ufw allow 38800/tcpDeny
sudo ufw deny 38800/tcpiptablesAllow
sudo iptables -A INPUT -p tcp --dport 38800 -j ACCEPTDeny
sudo iptables -D INPUT -p tcp --dport 38800 -j ACCEPTfirewalldAllow
sudo firewall-cmd --permanent --add-port=38800/tcpWindowsAllow
netsh advfirewall firewall add rule name="Open Port 38800" dir=in action=allow protocol=TCP localport=38800Security Risks
- Unauthorized access to the service
- Data exposure if the service is unauthenticated
- Outdated versions with vulnerabilities
- Incorrect service configuration
Frequently Asked Questions
What service runs on port 38800/TCP?
Port 38800/TCP is associated with the sruth service. Sruth is a service for the distribution of routinely-
generated but arbitrary files based on a publish/subscribe
distribution model and implemented using a peer-to-peer transport
mechanism
Is it safe to expose port 38800 to the Internet?
It depends on the service and configuration. Port 38800 (sruth) is a Registered port. If you need to expose it, keep the service updated, use strong authentication, and configure a firewall. It's always recommended to restrict access by IP when possible.
How do I check if port 38800 is open?
You can use nmap: `nmap -p 38800 -sV example.com`, netcat: `nc -zv example.com 38800`, or the bash command: `(echo > /dev/tcp/example.com/38800) 2>/dev/null && echo "Open" || echo "Closed"`.
How do I open or close port 38800 on my firewall?
On Linux with UFW: `sudo ufw allow 38800/tcp` (open) or `sudo ufw deny 38800/tcp` (close). With iptables: `sudo iptables -A INPUT -p tcp --dport 38800 -j ACCEPT`. On Windows: `netsh advfirewall firewall add rule name="Open Port 38800" dir=in action=allow protocol=TCP localport=38800`.
What applications and services use port 38800?
Port 38800/TCP is used by the sruth service. Specific uses depend on the software and configuration. Check our related tools section for more information.