hey dude , been a bit busy but i dug up some info for you to read:
this is a attack used to try and access files/directories on your computer , also used by worms to penetrate and infect webservers , did norton say that it blocked this or that it just detected it...?
if you need to look up an attack that youve detected this is a god place to start from:
http://www.iss.net/security_center/advice/...ons/default.htmUnicode vulnerability (web server folder traversal)
Unicode provides a unique number for every character, no matter what the platform, no matter what the program, no matter what the language. The Unicode Standard has been adopted by most vendors, including Microsoft. By sending a server a carefully constructed URL containing an invalid Unicode UTF-8 sequence an attacker can force the server to literally ‘walk up and out’ of a directory and execute arbitrary scripts.
This type of attack is also known as the directory traversal attack.
Directory traversal Exploits:
http://www.iss.net/security_center/advice/...603/default.htmhttp://www.iss.net/security_center/advice/...645/default.htmSummary :
It looks like an intruder is trying to read other files from your system (other than the ones you intended to share).
Details
A common bug with web servers is when a hacker specifies a URL that looks something like /../../../foo/bar.txt.
The contents of the website are usually in a subdirectory.
The series of "../.." go up the directory structure, then down to the desired file.
The reason this attack works is because the programmer doesn't double-check the URL to see if it is a valid file in the website.
False Positives
This alert triggers whenever a URL contains a series of ../... Bad links in web-pages on a website can sometimes cause this alert. In this case, it indicates a misconfiguration, rather than an intrusion.
Defense
First, check the URL parameter of the alert to see what the file was the intruder accessed. Then check to see if the intruder successfully accessed the file. If it was a sensitive file, and the attacker was successful, you will need to take appropriate action. For example, if the attacker successfully grabbed the password file, then you will need to change all the passwords.
You should also make sure that the web-server in question is the latest version with the latest security patches applied. Most of these attacks are against "imbedded" web-servers (i.e. web-servers included as part of other products) rather than real web-servers like Apache and IIS.
The most popular technique hackers use to break into web-servers is through "data driven" attacks.
The web-server is just a "front-end" that passes requests through to the back-end system.
Attackers attempt to "drive" data through the front-end in order to compromise the back-end.
In order to combat attackers, web-servers will attempt to clean up input before executing a request. For example, when presented with a request that looks like "foo/bar/../index.html", the web-server will convert it to the proper "foo/index.html" before executing the request. Removing the ".." parts of the URL are an important security measure. Most attacks against web-servers involve adding too many "../../.." components to the filename, breaking out of the disk reserved for the web-server, allowing the intruder to read or execute other files.
Web-servers will also interpret "URL-encoding". A URL encoding expresses the binary values of data as hex characters. The binary value of "/" can be represented by the hex URL encoding of "%5C". Therefore, when presented with a request that looks like "foo%5Cindex.html", the web-server will translate it into "foo/index.html".
Microsoft's IIS (Internet Information Server) web-server software will incorrectly translate the "URL-encoding" twice, but only check for directory traversal/climbing after the first translation. This allows a server to easily be compromised. This is a major problem; any who uses Microsoft's IIS (or the personal version) should immediately upgrade their systems.
Example
An example attack looks like the following URL:
hxxp://example.com/Scripts/..%255c..%255cw...e?/c+dir+\ This example will obtain a directory listing of the root directory. It works through the following steps. The hex encoding "%25" results in the "percent" character "%". The first URL-encoding translation therefore converts the URL into one that looks like:
hxxp://example.com/Scripts/..%5c..%5cwinnt...e?/c+dir+\ The directory traversal/climbing attempts to resolve any strings that look like "..\..". It fails to find any.
The input then erroneously goes through a second URL-encoding translation, resulting in the following URL:
hxxp://example.com/Scripts/..\..\...e?/c+dir+\ On most Windows servers, the "Scripts" directory maps to "C:\inetpub\Scripts". This is an "executable" directory: rather than reading the file, the server will attempt to run it as a program. Therefore, the server will attempt to run:
C:\inetpub\Scripts\..\..\winnt/system32/cmd.exe /C dir \
At this point, the underlying Windows operating system will be compromised by the directory-climbing part of the attack, and will execute the following command:
C:\winnt\system32\cmd.exe /C dir \
The program "cmd.exe" will then execute, which will in turn execute the command specified on the command line, which is;
dir \
The end result will be to list the files in the root directory of the server.
However, the attacker could run much more dangerous commands, such as those to deface the web-site or upload their own hacker utilities.
heres an example using Realplayer , cause they suck :
RMP files are opened without confirmation if a web page uses JavaScript or an IFRAME tag to reference them.
Therefore, it is possible to carry out an attack without further user interaction when the victim visits such a web page.
The RMP file may contain references to a number of files as tags. The file extension determines how RealPlayer handles the file, ie. as audio, video, or a skin file.
If the filename ends with ".rjs", it's assumed to be a skin file and downloaded to a location under the current user's profile folder. For RealOne Player the exact location is:
%USERPROFILE%\Application Data\Real\RealOne Player\skins\file.rjs
An attacker may use "..\" sequences in the file name to cause the skin file to be placed outside this folder.
With a specially crafted filename, an attacker can place an arbitrarily named file with arbitrary contents anywhere on the victim system. Overwriting files isn't possible as RealPlayer asks for confirmation.
To run a desired program, an attacker can for instance place an HTML and EXE file on the victim system by using a single RMP file. The "related info" feature of RealPlayer can be used to automatically open the HTML file, which can then use JavaScript to launch the EXE file. A proof of concept RMP file was created to do this. Use of some unpatched Internet Explorer flaws are required for this exploit.
Another way is simply to place an EXE or other program in the current user's Startup folder to be launched during the next login. The attacker needn't know the login name; a relative path can be used because the default folder for skins is already under the user's profile folder.
windows media player directory traversal.
http://www.securiteam.com/windowsntfocus/5...5FP0B0AA0I.html