This security update resolves a privately reported vulnerability in the Server service. The vulnerability could allow remote code execution if an affected system received a specially crafted RPC request. On Microsoft Windows 2000, Windows XP, and Windows Server 2003 systems, an attacker could exploit this vulnerability without authentication to run arbitrary code. It is possible that this vulnerability could be used in the crafting of a wormable exploit. Firewall best practices and standard default firewall configurations can help protect network resources from attacks that originate outside the enterprise perimeter.
This security update is rated Critical for all supported editions of Microsoft Windows 2000, Windows XP, Windows Server 2003, and rated Important for all supported editions of Windows Vista and Windows Server 2008. For more information, see the subsection, Affected and Non-Affected Software, in this section.
The security update addresses the vulnerability by correcting the way that the Server service handles RPC requests. For more information about the vulnerability, see the Frequently Asked Questions (FAQ) subsection for the specific vulnerability entry under the next section, Vulnerability Information.
Recommendation. Microsoft recommends that customers apply the update immediately.
Known Issues. None
Continue reading…
Today, particle physicist at CERN LHC (Large Hadron Collider) will smash two streams of protons, accelerated at near the speed of light, together to form what hopefully, would be a microscopic blackhole or some sort.
People around the world have voiced their concerns regarding the experiment, citing the danger of that microscopic blackhole gobbling up the entire planet.
Or will it not?
http://www.wired.com/science/discoveries/multimedia/2008/09/gallery_cern
http://www.msnbc.msn.com/id/24556999
Say you want to sort the output of “ls” (Get-ChildItem) according to file size, date modified or alphabetically, try:
1. Sort according to file size:
ls | sort -property Length
2. Sort according to data modified:
ls | sort -property LastWriteTime
3. Sort according to Name:
ls | sort -property Name
To return a descending list, just add -descending at the back. This applies any stdout pipes, not just Get-ChildItem.
In UNIX-like operating systems, we usually employ iptables to block a certain range of IPs. Unbeknown to most Windows server admins, there is too, a wizard-based iptables-like solution on Windows Server operating systems.
(more…)
Answer: Yes there is! Prodigy Mark Russinovich wrote the Windows counterpart of UNIX’s indispensable du command called, uhm, du: http://technet.microsoft.com/en-us/sysinternals/bb896651.aspx
Copy du.exe to %Windir%/System32. (The /usr/bin equivalent of Windows).
To obtain the size of top level subdirectories in a directory, with the largest on first in Bash@Linux, we type:
du --max-depth=1 | sort -r
The equivalent for Powershell@Windows would be:
du -q -l 1 | sort -descending
What I would really like to see is Mark’s du.exe be able to return directory sizes in well, “human readable formats”: KiB, MiB, GiB, TiB etc etc. In UNIX’s du, the argument -h does the job.
Recent Comments