How to Guess an Admin’s Password Without Them Knowing You Are Trying

March 1st, 2007 by mb

This should be pretty obvious, but a lot of people don’t seem to be aware of this old trick. Normally, if you try to guess another user’s password and it fails, the attempt will show up in the event viewer of the domain controller. However, there is a way you can try to guess an account’s password without the attempts ever being logged.

It’s actually pretty simple: just unplug your network cable. Read the rest of this entry »

Posted in Hardening, Passwords, Security Policy, Windows Security | No Comments »

Two New Vista Papers by Symantec

March 1st, 2007 by mb

Today Symantec released two new whitepapers about security protections in Vista: Analysis of GS Protection in Windows Vista and Analysis of Address Space Layout Randomization on Windows Vista.

Although my last blog post criticized Symantec for its hyped FUD, these two papers, by the same author, definitely provide some good information and demonstrate the thorough research that Ollie Whitehouse has done on this matter. Furthermore, the author clearly states the true issues here and provides detailed research notes. Read the rest of this entry »

Posted in Hardening, Malware, Windows Security | 2 Comments »

Really, Vista Security Isn’t Lame

February 25th, 2007 by mb

Recently a friend was complaining to me about the “screen flickering” that occurs whenever a User Account Control (UAC) prompt comes up in Vista and he wanted to know how to turn it off—not UAC, just the dimming and flickering effects. He said he already looked in the display settings and didn’t see anything there. Read the rest of this entry »

Posted in Hardening, Malware, NTFS, Uncategorized, Windows File Protection, Windows Security | 2 Comments »

Is UAC a Fence That Falls Short?

February 19th, 2007 by mb

When I was a teenager in California there was private oil pier near Rincon that we liked to jump off. It was great—you’d throw your surf board off first so there was no backing out, because it was scary looking down at the dark green ocean so far below you. Once your board was in the water you had no choice but to follow it out into the emptiness below. Read the rest of this entry »

Posted in Hardening, Malware, Windows Security | 2 Comments »

More on Program.exe

February 17th, 2007 by mb

I thought I would add a bit more to my original post to clarify the problem. Half of the problem is the way Windows searches paths, and the other half is software developers who don’t quote their paths in the Registry or when calling CreateProcess. There are no built-in Windows services that have this problem and this issue has been documented for over a decade. Read the rest of this entry »

Posted in Hardening, Malware | 1 Comment »

The Program.exe Problem

February 17th, 2007 by mb

A couple years ago I mentioned in a SecurityFocus column that Windows has a problem when you put a file named “program.exe” in the system root directory. The problem is basically in how it deals with spaces in paths that don’t have quotes around them. Anyone with the permissions to create a file in the root directory could create a malicious program that could escalate their privileges. Here’s an excerpt from that article: Read the rest of this entry »

Posted in Application Security, Hardening, Malware, Tools | 15 Comments »

Time for a Windows Cleanup

February 12th, 2007 by mb

I have always been annoyed with the huge number of files under the Windows directory, but I was very surprised when I looked at my Windows directory under Vista: 39,609 files and 7,411 folders! Read the rest of this entry »

Posted in Hardening, Windows File Protection, Windows Security | 1 Comment »

The Application Experience Lookup Service

February 5th, 2007 by mb

If you have ever locked down a Windows 2003 or Vista machine you have probably run across the Application Experience Lookup Service, also known as Application Experience or AeLookupSvc. The documentation on this service is pretty vague and sometimes contradictory, so people often ask me whether they should keep this service enabled or to disable it. I thought I would clarify exactly what this service does. Read the rest of this entry »

Posted in Hardening | No Comments »

Using Filescreens for Server Lockdowns

February 1st, 2007 by mb

I recently got a chance to play around with file screens feature in Windows Server 2003 R2 and found it to be very interesting. Although it appears to be designed to provide general content control on a file server, it has some features that allow you to tightly control content in any directory. Read the rest of this entry »

Posted in Hardening | No Comments »

Does Windows Server 2003 Even Need Hardening?

January 31st, 2007 by mb

Many people tell me they are surprised with how much effort I put into hardening Windows Server 2003–the last hardening document I wrote for a client was 112 pages long. That’s not 112 pages of writing, policy, and how-to’s, that’s 112 pages of nothing but settings. The process itself involves the modification, removal, or locking down of over 5,000 Registry keys and system files. Read the rest of this entry »

Posted in Hardening, Security Policy | No Comments »

Windows Vista Security Guide

January 8th, 2007 by mb

Microsoft has released v1.2 of the Windows Vista Security Guide:

 http://go.microsoft.com/?linkid=5639874

Posted in Hardening | No Comments »

Pointless Permissions

January 4th, 2007 by mb

One thing I have always liked about NTFS security is the fine-grained control you have over file permissions. But this power comes at a price—you must understand a whole new world of acronyms, confusing metaphors, and expanded definition of words such as principal, trustee, and inheritance. To fully take advantage of file permissions you need to understand how the whole thing works and delve into the lower levels where there is no pretty user interface and no cushion between you and the inner working of windows. You know you are close to understanding NTFS file permissions when you stop talking about files and folders and instead refer to objects and containers. Read the rest of this entry »

Posted in Hardening, NTFS | 3 Comments »

Don’t forget the KB’s

December 14th, 2006 by mb

With Microsoft’s ongoing improvements to the patch management process, you may find yourself letting automation take over on patch Tuesday. I sat down at my PC this morning and saw that it had rebooted because it automatically installed new updates. Although I spent half the day yesterday writing patch reports for several clients, I forgot to apply the patches on my own system. The fact is that nowadays you can get away with doing that.

Read the rest of this entry »

Posted in Hardening, Patch Management | No Comments »

Audit the Start Menu

October 5th, 2006 by mb

Have you ever needed to audit which icons users click on the Start Menu? It makes quite an impressive forensics report when you can say exactly who clicked what and when. Well you can do it in Windows pretty easily. First, enable auditing on all files under C:\Documents and Settings\All Users\Start Menu as well as individual user start menus. Make sure your local security policy is set to audit object access, and every time someone clicks on a Start Menu icon, it will generate an Event Log entry.

Here’s a Log Parser query you can use to build a list of clicked icons:

logparser “SELECT TimeGenerated, RESOLVE_SID(SID), EXTRACT_PREFIX(EXTRACT_FILENAME(Path), 0, ‘.lnk’) AS Item USING EXTRACT_TOKEN(Strings,2,’|') AS Path FROM Security WHERE Path LIKE’%Start Menu%.lnk’ ORDER BY TimeGenerated” -i:evt

You could also extend this to include icons on the desktop and on quick launch toolbars.

Hint: do you need to re-create Start Menu clicks on a system that didn’t have auditing enabled? Try looking at the last accessed date of each .lnk file. It’s not as accurate as the Event Log, but you’d be surprised what you can discover.

Posted in Auditing, Hardening | No Comments »

Article: How I Secured One Company’s Network

October 1st, 2006 by mb

Using Log Parser, virtualization, and a little psychology. The article is available here to subscribers of Windows IT Security.

.

Click abuse:  http://click-abu.zers.net/

Posted in Hardening | No Comments »

« Previous Entries