most common way people interact with processes is through a network socket (DNS, HTTP, SMB, etc.).
we can find a service running only for localhost
netstat -ano
look for entries listening on loopback addresses (127.0.0.1 and ::1)
The reason for this is network sockets on localhost are often insecure due to the thought that "they aren't accessible to the network."
The one that sticks out immediately will be port 14147, which is used for FileZilla's administrative interface. By connecting to this port, it may be possible to extract FTP passwords in addition to creating an FTP Share at c:\ as the FileZilla Server user (potentially Administrator).