Feb 27, 2009

Determine What Service Pack Installed

Here's a quick tips to allow you to determine the what's the service pack installed at a server. First login to the server, open a command prompt and type:

reg query "HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CSDVersion

For remote server, you can do this:

reg query "\\10.200.30.4\HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CSDVersion
And this version just looks more cool:

for /f "tokens=3*" %x in ('reg query "\\10.200.30.4\HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CSDVersion') do @echo %x %y
Service Pack 2


Feb 25, 2009

Top Ten Web Hacking Techniques of 2008!

Top Ten Web Hacking Techniques of 2008 from Jeremiah Grossman.

1. GIFAR
  • (Billy Rios, Nathan McFeters, Rob Carter, and John Heasman)

2. Breaking Google Gears' Cross-Origin Communication Model
  • (Yair Amit)

3. Safari Carpet Bomb
  • (Nitesh Dhanjani)

4. Clickjacking / Videojacking
  • (Jeremiah Grossman and Robert Hansen)

5. A Different Opera
  • (Stefano Di Paola)

6. Abusing HTML 5 Structured Client-side Storage
  • (Alberto Trivero)

7. Cross-domain leaks of site logins via Authenticated CSS
  • (Chris Evans and Michal Zalewski)

8. Tunneling TCP over HTTP over SQL Injection
  • (Glenn Wilkinson, Marco Slaviero and Haroon Meer)

9. ActiveX Repurposing
  • (Haroon Meer)

10. Flash Parameter Injection
  • (Yuval Baror, Ayal Yogev, and Adi Sharabani)

Feb 24, 2009

Linux LiveCD on Windows

MobaLiveCD is a freeware that will run your Linux LiveCD on Windows thanks to the excellent emulator called "Qemu".

MobaLiveCD allows you to test your LiveCD with a single click : after downloading the ISO image file of your favorite LiveCD, you just have to start it in MobaLiveCD and here you are, without the need to burn a CD-Rom or to reboot your computer.

MobaLiveCD key features:
  • No need to burn the CD-Rom anymore
  • Program without installation that you can start from an USB stick
  • A clear and easy to use interface
  • Light and portable application, packaged in a single executable of 1.6MB only

Link:
  • http://mobalivecd.mobatek.net/en/

Feb 19, 2009

TCP/IP Headers

Very nice TCP/IP header drawing diagrams in both PDF and PNG formats. It has IPv4, IPv6, TCP, UDP, and ICMP.

Links:

Feb 18, 2009