5 Command Line Tools To Detect Windows Hacks
5 Command Line Tools To Detect Windows Hacks
pens a lot. Fortunately, Microsoft has built numerous tools into Windows so
administrators and power users can analyse a machine to determine whether
it's been compromised. In this tip, which is the first of a two-part series
, I'll cover five useful command-line tools built into Windows for such ana
lysis.
To use WMIC, users must invoke it by running the WMIC command followed by
the area of the machine the user is interested in (often referred to as an
alias within the system). For example, to learn more about the processes
running on a machine, a user could run:
Output of that command will likely look pretty ugly because an output format
wasn't specified. With WMIC, output can be formatted in several different w
ays, but two of the most useful for analysing a system for compromise are th
e "list full" option, which shows a huge amount of detail for each area of t
he machine a user is interested in, and the "list brief" output, which provi
des one line of output per report item in the list of entities, such as runn
ing processes, autostart programs and available shares.
That command will show the name, process ID and priority of each running pro
cess, as well as other less-interesting attributes. To get even more detail,
run:
Beyond the process alias, users could substitute startup to get a list of all
auto-start programs on a machine, including programs that start when the sys
tem boots up or a user logs on, which could be defined by an auto-start regis
try key or folder:
While WMIC is a relatively new command, let's not lose site of some useful
older commands. One of my favourites is the venerable "net" command. Admi
nistrators can use this to display all kinds of useful information.
For example, the "net user" command shows all user accounts defined loca
lly on the machine. The "net localgroup" command shows groups, "net loca
lgroup administrators" shows membership of the administrators group and
the "net start" command shows running services.
Attackers frequently add users to a system or put their own accounts in the
administrators groups, so it's always a good idea to check the output of t
hese commands to see if an attacker has manipulated the accounts on a machi
ne. Also, some attackers create their own evil services on a machine, so us
ers should be on the lookout for them.
Many Windows administrators are unfamiliar with the powerful openfiles com
mand built into Windows. As its name implies, this command shows all files
that are opened on the box, indicating the process name interacting with
each file. It's built into modern versions of Windows, from XP Pro to Vist
a. Like the popular lsof command for Linux and Unix, it'll show administra
tors all open files on the machine, giving the process name and full path
for each file. Unlike lsof, however, it doesn't provide many more details,
such as process ID number, user number and other information.
Users will need to reboot, and when the system comes back, they will be ab
le to run the openfiles command as follows:
This command will show verbose output, which includes the user account tha
t each process with an open file is running under. To get an idea of what
malware has been installed, or what an attacker may be doing on a machine,
users should look for unusual or unexpected files, especially those assoc
iated with unexpected local users on the machine.
The Windows netstat command shows network activity, focusing on TCP and
UDP by default. Because malware often communicates across the network, u
sers can look for unusual and unexpected connections in the output of ne
tstat, run as follows:
The -n option tells netstat to display numbers in its output, not the names
of machines and protocols, and instead shows IP addresses and TCP or UDP p
ort numbers. The -a indicates to display all connections and listening port
s. The -o option tells netstat to show the processID number of each program
interacting with a TCP or UDP port. If, instead of TCP and UDP, you are in
terested in ICMP, netstat can be run as follows:
This indicates that the command will return statistics (-s) of the ICMP p
rotocol. Although not as detailed as the TCP and UDP output, users can se
e if a machine is sending frequent and unexpected ICMP traffic on the net
work. Some backdoors and other malware communicate using the payload of I
CMP Echo messages, the familiar and innocuous-looking ping packets seen o
n most networks periodically.
Like WMIC, the netstat command also lets us run it every N seconds. But, in
stead of using the WMIC syntax of "/every:[N]", users simply follow their n
etstat invocation with a space and an integer. Thus, to list the TCP and UD
P ports in use on a machine every 2 seconds, users can run:
Most of the commands I have discussed so far spew a lot of output on the sc
reen, which could be hard for a human to look through to find a specific it
em of interest. But, Windows comes to the rescue. Users can search through
the output of a command using the built-in find and findstr commands in Win
dows. The find command looks for simple strings, while findstr supports reg
ular expressions, a more complex way to specify search patterns. Because th
e regular expressions supported by findstr go beyond the scope of this tip
article, let's focus on the find command. By default, find is case sensitiv
e - use the /i option to make it case insensitive.
The find command also has the ability to count. Invoked with the /c command,
it'll count the number of lines of its output that include a given string.
Users often want to count the number of lines in the output of a command to
determine how many processes are running, how many startup items are present
, or a variety of other interesting tidbits on a machine. To count the lines
of output, users could simply pipe their output through find /c /v "". This
command will count (/c) the number of lines that do not have (/v) a blank l
ine ("") in them. By counting the number of non-blank lines, the command is,
in effect, counting the number of lines.
Now, with the find command, users can look through the output of each of t
he commands I've discussed so far to find interesting tidbits. For example
, to look at information every second about cmd.exe processes running on a
machine, type:
Or, to see which autostart programs are associated with the registry hive H
KLM, run:
Researching output
With these five tools, users can get a great deal of information about the
configuration and security state of a Windows machine. To use each comman
d in identifying a compromise, however, a user needs to compare the curren
t settings of the machine under analysis to a "normal," uninfected machine.
Regards
www.AmazingIT.blogspot.com