Port 9800 is used by various WebDAV implementations, development servers, and application-specific services. No single dominant service owns this port. When encountered, identify the specific application via service fingerprinting (nmap -sV). Apply standard HTTP security practices.
Port Number
9800
Protocol
TCP
Service
WebDAV / Application Alternate
Range
IANA Registered (1024–49151)
Fingerprint the service – identify what is actually listening on port 9800
nmap -sV -p 9800 targetCheck for HTTP response headers that reveal the server software
curl -v http://host:9800/ 2>&1 | head -20Enumerate allowed HTTP methods – look for PUT/DELETE indicating WebDAV write access
curl -X OPTIONS http://host:9800/ -inmap -sV -p 9800 target (service fingerprinting)
curl -v http://host:9800/ (test HTTP response)
curl -X PROPFIND http://host:9800/ (test WebDAV)Port 9800 has no single RFC assignment. It appears in IANA as unassigned and has been adopted by various applications including some WebDAV implementations and development frameworks. Its use is entirely convention-driven within specific software ecosystems.
What service uses port 9800?
No single dominant service. Common candidates include WebDAV servers, development/staging instances of web applications, and proprietary software. Use nmap -sV -p 9800 to fingerprint what is actually running.
Is port 9800 safe to expose?
Not without knowing what is running. Fingerprint first, then apply service-specific security controls. If it is a development server, it should never be exposed – bind to localhost only.