Archive for March, 2009
How does the Conficker worm work?
Written by Mike on March 25, 2009 – 12:37 am -The Conficker worm is a computer worm that can infect your computer and spread itself to other computers across a network automatically, without human interaction.
WORM: Win32/Conflicker attempts to make numerous connections to the computers across the network (from infected System) finding new hosts (systems) that have weak passwords, shared files on network, removable disks, and outdated Security updates.
Computers on the network without latest Security updates OR outdated updates may get infected with the worm.
Computers with open shares and Shared network files on network can easily targeted by this worm.
Removable devices like USB Pen drives, Flash Drives, USB sticks, External Hard Drives may get infected with this worm and infect other computers where these media will be used for data transmission.
Shared Computer with weak password may get infected. So, make sure to keep strong password. Also use Numbers and Special Characters while setting Passwords.
Computers with a proper Password Policy, current Security Updates, Antivirus OR Security Software and Secured Network Share are protected from Conflicker Worm.
Here’s an illustration of how the Conficker worm works.
Tags: Conficker worm, conflicer network sharing, latest Security updates, working of conflicker
Posted in Dedicated Server Hosting | 4 Comments »
ERROR: cannot contain ‘..’ to indicate the parent directory
Written by Mike on March 13, 2009 – 8:49 am -While developing a website there are many code snippets which are used on various pages. In such cases the website developers save such code snippets in a particular file and call the in pages using <!–#include file=”filename.asp”–> (in ASP). This helps to reduce the length of code.script of a webpage and eliminates the scripting Errors. In IIS sometime when you try to access some pages which have such includes it shows following Error:
Active Server Pages error 'ASP 0131'
Disallowed Parent Path
/test/main.asp, line 1
The Include file '../common.asp' cannot contain '..' to indicate the parent directory.
Here the line 1 of main.asp contains following code snippets.
<!--#include file="../common.asp"-->
You receive this error message if the application calls an ASP method that requires the Parent Paths option to be enabled. By default, the Parent Paths option is enabled in IIS 5.0, but it is disabled by default in IIS 6.0.
This problem can be resolved by enabling Parent Paths for the website.
1) Click Start, click Administrative Tools, and then click Internet Information Services (IIS) Manager.
2) Double-click your computer name in the left pane, and then double-click Web Sites.
3) Locate the Web site and directory that houses the ASP application and Right-click the application site or directory, and then click Properties
4) Select Home Directory, and then click Configuration.
5) Click Options, and then click to select the Enable Parent Paths check box
6) Press “OK” and restart IIS.
Now try to access the Same Page or URL again.
Tags: cannot contain '..', Parent Paths, to indicate the parent directory
Posted in Dedicated Server Hosting | 2 Comments »