CMD commands are often useful to discover if our PC is infected or not.
1.
to view if there are problems during the communication with an host.
2.
this command is important to view if someone has used our router ARP table (so if someone hacked our network).
3.
this will list all files (also which are hidden) and this will be useful to view suspicious files.
Thank you
1.
Code:
tracert -d
2.
Code:
arp -a
3.
Code:
dir C: attrib -s -h /s /d *.*
Thank you