Windows
netstat -ano | findstr "PID: <port>"
Then use taskkill
taskkill /pid <pid> /f
Unix
netstat -vanp tcp | grep <port>
Then use kill
sudo kill -9 <pid>
For further actions, you may consider blocking this person and/or reporting abuse
Mayank Kumar -
Khang Tran -
Quoc Huynh Website -
Judy -
Top comments (0)