One option included in Windows XP is the ability to uninstall XP if you performed an upgrade from Windows 98, 98SE, or Windows Me.
The standard method of removing XP is achieved by booting into XP normally and uses the Add/Remove Programs tool in Control Panel.
If you are unable to start XP normally, the second option is to load XP in Safe Mode then use the same tool.
If you are unable to boot normally or boot into Safe Mode, XP can be removed by uninstalling from a Command Prompt.
The procedure is as follows:
Important Note: This procedure is available only if a successful image of the previous operating system was created during the XP upgrade.
Start the computer to Safe Mode with Command Prompt.
At the command prompt, type cd\, and then press ENTER.
Type cd\windows\system32, and then press ENTER.
Type osuninst.exe, and then press ENTER.
On screen instructions will guide you through the uninstall process to revert to the previous operating system.
This procedure can only be performed by users logged on as Administrator or a user with administrative rights.
Wednesday, September 29, 2010
Tracing or Routing a website using command prompt
Tracing or Routing a website using command prompt. This tip is only meant for educational purpose. I mainly use this trick to find out the hosting provider where a particular domain is hosted.
Follow the below steps:
1. Start->Run->CMD ie; open Command prompt
2. Type the following command and press enter.
tracert www.websitename.com
in the above command, enter the desired website name.
Once you press enter, it tell you where a particular domain is hosted, Location, Country and some details of that domain.
Disclaimer: I am not responsible for this trick if this is used in a wrong way. I didn’t invent this method rather I myself found it somewhere else. Do not use this for Hacking purpose.
Follow the below steps:
1. Start->Run->CMD ie; open Command prompt
2. Type the following command and press enter.
tracert www.websitename.com
in the above command, enter the desired website name.
Once you press enter, it tell you where a particular domain is hosted, Location, Country and some details of that domain.
Disclaimer: I am not responsible for this trick if this is used in a wrong way. I didn’t invent this method rather I myself found it somewhere else. Do not use this for Hacking purpose.
Sunday, September 26, 2010
XSS Cross Site Scripting Attack
I though to demonstrate another type of website hacking attack called Cross Site Scripting attack,a.k.a. XSS. XSS vulnerabilities occur due to weak coding of the web applications. Once the hacker finds this vulnerability he/she injects malicious codes(Usually in web forms) to steal session cookies and later the hacker uses those cookies to gain access to sensitive page content.
Xss Cross Site Scripting may be classified in two types:
1.Persistent XSS
2.Non Persistent XSS
In order to demonstrate a XSS attack I will take an example of a website:
The simplest way to check the vulnerability is to enter the following code in the any web form present on the website
Defacement
Inserting Flash Videos
The attacker can also insert flash videos by entering the following code in any web form present on the website
Redirection
Xss Cross Site Scripting may be classified in two types:
1.Persistent XSS
2.Non Persistent XSS
In order to demonstrate a XSS attack I will take an example of a website:
http://www.redwrappings.co.in/Checking the venerability
The simplest way to check the vulnerability is to enter the following code in the any web form present on the website
<script>alert(“XSS”)</script>Once the attacker inserts the code A dialog box like the below one will appear:
Defacement
Now the attacker has found that the website is velnerable to an xss attack the attacker can do lots of damages to the website, The most common thing which the attacker will do is place his defacement image on that page showing that the website is hacked, For this purpose he will insert a code similar to the below one:
<html><body><IMG SRC=”http://site.com/yourDefaceIMAGE.png”></body></html>Where http://site.com/yourDefaceIMAGE.png is the defacement image
Inserting Flash Videos
The attacker can also insert flash videos by entering the following code in any web form present on the website
Redirection
The attacker can also redirect the page to any particular page , In case if the hacker has managed to find XSS venerability in the a website like paypal.com or alertpay.com he can redirect that page to a Phisher Site(Fake login page) where the victim will loose his password, To redirect a an xssed page to another page the attacker will insert a code similar to the below one:
<script>window.open( “http://www.google.com/” )</script>
Stealing Cookies
Most of the attackers after finding a website venerable to xss will probably steal victims cookies to gain access to their account or private data this method is called Session hijacking, which is a detailed topic and I will be explaining in the later articles
Hope you have learned some XSS ,Feel free to ask if you have any problem regarding the above information