nc -U </unix/socket>
quasi in qualsiasi Linux, BSD, MacOs.
Puoi usare ncat
comando dal nmap
progetto:
ncat -U /tmp/tbsocket1
Per semplificare l'accesso, puoi procedere come segue:
# forward incoming 8080/tcp to unix socket
ncat -vlk 8080 -c 'ncat -U /tmp/tbsocket1'
# make a http request via curl
curl http://localhost:8080
Puoi anche usare socat
:
# forward incoming 8080/tcp to unix socket
socat -d -d TCP-LISTEN:8080,fork UNIX:/tmp/tbsocket1