|
|
|
|
|
by themafia
82 days ago
|
|
> Windows: netstat -n -a | findstr "https" (//note the double quotes) netstat works perfectly fine on linux as well. If you're looking for https connections it's certainly far more efficient than 'lsof'. also if you use '-n' then you're not going to get service names translated, so that probably should be: netstat -n -a | find "443" |
|