<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3588111753055967927</id><updated>2011-04-21T15:56:28.454-07:00</updated><title type='text'>Smile Always to All</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-7257892868818221608</id><published>2008-02-09T09:04:00.000-08:00</published><updated>2008-02-09T09:05:33.215-08:00</updated><title type='text'></title><content type='html'>How To: Secure Your Developer Workstation&lt;br /&gt;  Improving Web Application Security: Threats and Countermeasures &lt;br /&gt;Summary: This How To helps you improve your development workstation security. Developers often have computers running software such as IIS, Microsoft SQL Server, or the Microsoft SQL Server Desktop Engine (MSDE.) For example, Microsoft Visual Studio® .NET is designed for local development with IIS, so it is common for a developer to run IIS locally. As a developer, you need to be able to secure these services against attack, even if your computer is in a protected local area network.&lt;br /&gt;This How To provides quick tips to help you improve the security of your developer workstation, along with tips about how to keep it secure. It also helps you avoid common problems that you are likely to encounter when you secure your workstation. Finally, it provides tips about how to determine problems and to revert security settings if they prove too restrictive.&lt;br /&gt;Note   This How To is not exhaustive, but it highlights many of the key issues.&lt;br /&gt;Before You Begin&lt;br /&gt;Before you begin securing your workstation, you need the following tools: &lt;br /&gt;• Microsoft Baseline Security Analyzer (MBSA). Microsoft provides the MBSA tool to help analyze the security configuration of your computers and to identify missing patches and updates. You can download the MBSA tool from http://www.microsoft.com/technet/security/tools/mbsahome.mspx. &lt;br /&gt;• IISLockdown. The IISLockdown tool reduces your computer's attack surface by hardening default IIS and Windows configuration settings and by removing unnecessary IIS extensions. IISLockown also installs the "404.dll" ISAPI filter, which is used to report "404 File Not Found" messages when disabled extensions are requested. &lt;br /&gt;You can download the IISLockdown tool from http://download.microsoft.com/download/iis50/Utility/2.1/NT45XP/EN-US/iislockd.exe. &lt;br /&gt;• URLScan. URLScan is an ISAPI filter that rejects or allows HTTP requests based on a configurable set of rules. It is integrated with IISLockdown, although you can also download it separately. It comes with customizable templates for each supported server role. &lt;br /&gt;To install URLScan without IISLockdown, see Microsoft Knowledge Base article 307608, "INFO: Availability of URLScan Version 2.5 Security Tool," at http://support.microsoft.com/default.aspx?scid=kb;en-us;307608, in the Microsoft Knowledge Base. &lt;br /&gt;Steps to Secure Your Developer Workstation&lt;br /&gt;To secure your developer workstation, perform the following tasks: &lt;br /&gt;• Run using a least privileged account &lt;br /&gt;• Patch and update &lt;br /&gt;• Secure IIS &lt;br /&gt;• Secure SQL Server and MSDE &lt;br /&gt;• Evaluate your configuration categories &lt;br /&gt;• Stay secure &lt;br /&gt;Run Using a Least-Privileged Account&lt;br /&gt;You should develop applications using a non administrator account. Doing so is important primarily to limit the exposure of the logged on user and to help you to design more secure software. For example, if you design, develop, and test an application while you are interactively logged in as an administrator, you are much more likely to end up with software that requires administrative privileges to run.&lt;br /&gt;You should not generally log on using the local administrator account. The account that you use on a daily basis should not be a member of the local Administrators group. Sometimes you might still need an account that has administrative privileges — for example, when you install software or edit the registry. Because the default local administrator account is well known, however, and it is the target of many attacks, create a non-standard administrator account and use this only when it is required.&lt;br /&gt;To create accounts for development &lt;br /&gt;1. Remove your current user account from the Administrators group if it is a member. &lt;br /&gt;2. Create a new custom administration account using a nonstandard name and strong password. &lt;br /&gt;3. Use your non-administrator account to logon interactively on a daily basis. When you need to run a command with administrative privileges, use your custom administration account with the Runas.exe command line utility. &lt;br /&gt;Running Privileged Commands&lt;br /&gt;To run a privileged command, you can use one of the following techniques to temporarily change your security context: &lt;br /&gt;• Use the Runas.exe utility from a command line. The following command shows you how to use the Runas.exe utility to launch a command console that runs under your custom administration account. &lt;br /&gt;runas.exe /user:mymachine\mycustomadmin cmd.exe&lt;br /&gt;By executing Cmd.exe, you start a new command window that runs under the security context of the user you specify with the /user switch. Any program you launch from this command window also runs under this context. &lt;br /&gt;• Use Run As from Windows Explorer. You can right-click an executable file in Windows Explorer and click Run As. To display this item on Windows 2000 or Windows Server 2003, hold down the SHIFT key and then right-click an executable file. When you click Run As, you are prompted for the credentials of the account you want to use to run the executable file. &lt;br /&gt;• Use Run As shortcuts. You can create quick launch and desktop shortcuts to easily run applications using a privileged user account. The following example shows a shortcut that you can use to run Windows Explorer (Explorer.exe) using the administrator account: &lt;br /&gt;%windir%\System32\runas.exe /user:administrator explorer&lt;br /&gt;Note   If using a non-administrator account proves impractical for your environment, still test your application or component while running as a least privileged user to catch and correct problems before deploying. For example, your application might incorrectly require administrator privileges without your realizing it, which would cause the application to fail when it is deployed in a production environment.&lt;br /&gt;Patch and Update&lt;br /&gt;Ensure that your workstation has the latest service packs and patches. Check the operating system, IIS, SQL Server, MSDE, Microsoft Data Access Components (MDAC), and the .NET Framework. Microsoft offers several tools and methods to help you scan and update your system. These include the Windows Update site, the Microsoft Baseline Security Analyzer (MBSA) tool, and the Automatic Updates feature.&lt;br /&gt;Using Windows Update&lt;br /&gt;You can use Windows Update (available from the Start menu) to scan for updates and patches for Windows. Alternatively, you can directly scan for updates at http://windowsupdate.microsoft.com.&lt;br /&gt;Note   After you update your system using the Windows Update site, use MBSA to detect missing updates for SQL Server, MSDE, and MDAC.&lt;br /&gt;Using MBSA&lt;br /&gt;You can use MBSA to assess security and to verify patches. If you used automatic updates or Windows Update to update your operating system and components, MBSA verifies those updates and additionally checks the status of updates for SQL Server and Microsoft Exchange Server. MBSA lets you create a script to check multiple computers.&lt;br /&gt;To detect and install patches and updates &lt;br /&gt;1. Download MBSA from the MBSA home page at http://www.microsoft.com/technet/security/tools/mbsahome.asp. &lt;br /&gt;If you do not have Internet access when you run MBSA, MBSA cannot retrieve the XML file that contains the latest security settings from Microsoft. You can use another computer to download the XML file, however. Then you can copy it into the MBSA program directory. The XML file is available at http://download.microsoft.com/download/xml/security/1.0/nt5/en-us/mssecure.cab. &lt;br /&gt;2. Run MBSA by double-clicking the desktop icon or selecting it from the Programs menu. &lt;br /&gt;3. Click Scan a computer. MBSA defaults to the local computer. &lt;br /&gt;4. Clear all check boxes except for Check for security updates. This option detects which patches and updates are missing. &lt;br /&gt;5. Click Start scan. Your server is now analyzed. When the scan completes, MBSA displays a security report, which it also writes to the %Userprofile%\SecurityScans directory. &lt;br /&gt;6. Download and install the missing updates. Click Result details next to each failed check to view the list of missing security updates. &lt;br /&gt;The resulting dialog box displays the Microsoft security bulletin reference number. Click the reference to find out more about the bulletin and to download the update. &lt;br /&gt;For more information about using MBSA, see "How To: Use Microsoft Baseline Security Analyzer (MBSA)," in the How To section of this guide.&lt;br /&gt;Note   MBSA will not indicate required .NET Framework updates and patches. Browse the .NET Framework downloads page at http://msdn.microsoft.com/netframework/downloads/default.asp.&lt;br /&gt;Using Automatic Updates&lt;br /&gt;The Automatic Updates feature offers the easiest method to update your operating system with the latest critical security patches. The feature is built into Windows XP, Windows Server 2003 and is installed with Windows 2000 Service Pack 3.&lt;br /&gt;To configure Automatic Updates with Windows 2000, click Automatic Updates in the Control Panel. For more information about Automatic Updates and Windows 2000, see Microsoft Knowledge Base article 327850, "How To: Configure and Use Automatic Updates in Windows 2000."&lt;br /&gt;To configure Automatic Updates with Windows XP &lt;br /&gt;1. Right-click the My Computer icon on the desktop or the System icon in Control Panel. &lt;br /&gt;2. Click System Properties. &lt;br /&gt;For more information about Automatic Updates and Windows XP, see Microsoft Knowledge Base article, 306525, "How To: Configure and Use Automatic Updates in Windows XP."&lt;br /&gt;Note   For more information about Automatic Updates for Windows Server 2003, see Microsoft Knowledge Base article 327838, "How to schedule automatic updates in Windows Server 2003, in Windows XP, and in Windows 2000."&lt;br /&gt;Automatic Updates scans and installs updates for the following operating systems (including the .NET Framework and IIS where applicable): &lt;br /&gt;• Microsoft Windows 2000 Professional &lt;br /&gt;• Microsoft Windows 2000 Server &lt;br /&gt;• Microsoft Windows XP Professional &lt;br /&gt;• Microsoft Windows Server 2003 &lt;br /&gt;In addition to using Automatic Updates, use MBSA to detect missing updates for SQL Server, MSDE and MDAC.&lt;br /&gt;Secure IIS&lt;br /&gt;You often need to run IIS locally for Web development. If you run IIS, secure it. IISLockdown and URLScan significantly reduce your Web server's attack profile. IISLockdown points unused or forbidden script mappings to 404.dll and helps secure access to system directories and system tools. URLScan blocks known dangerous requests.&lt;br /&gt;Although IISLockdown improves IIS security, if you choose the wrong installation options or do not modify the URLScan configuration file, URLScan.ini, you could encounter the following issues: &lt;br /&gt;• You cannot create new ASP.NET Web applications. NTFS file system permissions are configured to strengthen default access to Web locations. This may prevent the logged on user from creating new ASP.NET Web applications. &lt;br /&gt;• Cannot debug existing ASP.NET Web applications. URLScan blocks the DEBUG verb, which is used when you debug ASP.NET Web applications. &lt;br /&gt;The following steps show you how to improve IIS security on your development workstation and avoid the issues listed above: &lt;br /&gt;• Install and run IISLockdown &lt;br /&gt;• Configure URLScan &lt;br /&gt;• Restrict access to the local Web server &lt;br /&gt;Install and Run IISLockdown&lt;br /&gt;Note   By default, IIS 6.0 has security-related configuration settings similar to those made by the IIS Lockdown Tool. Therefore you do not need to run the IIS Lockdown Tool on Web servers running IIS 6.0. However, if you are upgrading from a previous version of IIS (5.0 or lower) to IIS 6.0, it is recommended that you run the IIS Lockdown Tool to enhance the security of your Web server.&lt;br /&gt;To install and run IISLockdown &lt;br /&gt;1. Run the IISLockdown installation program (Iislockd.exe) from http://download.microsoft.com/download/iis50/Utility/2.1/NT45XP/EN-US/iislockd.exe. &lt;br /&gt;Note   If you run Iislockd.exe a second time, it removes all changes based on the log file \WINNT\System32\Inetsrv\oblt-log.log.&lt;br /&gt;2. During setup, choose the Dynamic Web Site option, and choose the option to install URLScan. ASP.NET Web Forms use the HTTP POST verb. Choosing the static option and installing URLScan blocks the POST verb in URLScan.ini. &lt;br /&gt;The Dynamic Web Site option does the following: &lt;br /&gt;• Adds POST to the [AllowVerbs] section as shown below. &lt;br /&gt; [AllowVerbs]&lt;br /&gt;GET&lt;br /&gt;HEAD&lt;br /&gt;POST&lt;br /&gt;• Disables the following Internet Services: Web service (HTTP), File Transfer Protocol (FTP), the Simple Mail Transport Protocol (SMTP) e-mail service, and the Network News Transport Protocol (NNTP) news service. &lt;br /&gt;• Maps the following script maps to 404.dll: Index Server, Web Interface (.idq, .htw, .ida), server side includes (.shtml, .shtm, .stm), Internet Data Connector (.idc), HTR scripting (.htr), Internet printing (.printer) &lt;br /&gt;• Removes the following virtual directories: IIS Samples, MSADC, IISHelp, Scripts, and IISAdmin. &lt;br /&gt;• Restricts anonymous access to system utilities and the ability to write to Web content directories. &lt;br /&gt;• Disables Web Distributed Authoring and Versioning (WebDAV). &lt;br /&gt;• Installs the URLScan ISAPI filter. &lt;br /&gt;Pitfalls&lt;br /&gt;If you use IISLockdown, note the following pitfalls: &lt;br /&gt;• IIS metabase updates can be lost. If you undo IISLockdown changes by running Iislockd.exe a second time, you lose any changes made to the IIS metabase since the last time IISLockdown was run. For example, if you configure a virtual directory as an application root after running IIS lockdown, that change is lost when you run IISLockdown again. &lt;br /&gt;• Resources are blocked by 404.dll. If you receive a 404 error for a previously available resource, it might be because the resource type is blocked by 404.dll. To confirm whether or not this is the case, check the script mapping for the requested resource type in IIS. &lt;br /&gt;Configure URLScan&lt;br /&gt;The URLScan ISAPI filter installs when you run IISLockdown. If you do not explicitly allow the DEBUG verb, URLScan prevents debugging. Also, URLScan blocks requests that contain unsafe characters such as the period (.) used for directory traversal.&lt;br /&gt;Note   IIS 6.0 on Windows Server 2003 has functionality equivalent to URLScan built in. Your decision whether to implement UrlScan should be based on your organization's specific requirements. For more information and guidance, see "Installing UrlScan 2.5" at http://www.microsoft.com/technet/security/tools/urlscan.mspx#EEAA.&lt;br /&gt;To configure URLScan, edit URLScan.ini in %Windir%\System32\inetsrv\urlscan\. To allow debugging with URLScan, add DEBUG to the [AllowVerbs] section in URLScan.ini as shown below.&lt;br /&gt; [AllowVerbs]&lt;br /&gt;GET&lt;br /&gt;HEAD&lt;br /&gt;POST&lt;br /&gt;DEBUG&lt;br /&gt;Pitfalls&lt;br /&gt;If you install URLScan, note the following pitfalls: &lt;br /&gt;• When you debug an application by using Visual Studio.NET, you may see the following error: &lt;br /&gt;Microsoft Development Environment:&lt;br /&gt;Error while trying to run project: Unable to start debugging on the Web server. Could not start ASP.NET or ATL Server debugging.&lt;br /&gt;Verify that ASP.NET or ATL Server is correctly installed on the server. Would you like to disable future attempts to debug ASP.NET pages for this project?&lt;br /&gt;You should see a log entry similar to the one shown below in URLScan&lt;date&gt;.log in the \WINNT\system32\inetsrv\urlscan folder. &lt;br /&gt; [02-08-2008- 22:25:26] Client at 127.0.0.1: Sent verb 'DEBUG', which is not specifically allowed. Request will be rejected.&lt;br /&gt;• Requests that you expect to work might get blocked. &lt;br /&gt;• You may not be able to create new Web projects in Visual Studio .NET because you use characters in the project name that URLScan rejects. For example, the comma (,) and the pound sign (#) will be blocked. &lt;br /&gt;If you experience errors during debugging, see Microsoft Knowledge Base article 306172, "INFO: Common Errors When You Debug ASP.NET Applications in Visual Studio .NET," at http://support.microsoft.com/default.aspx?scid=kb;EN-US;306172.&lt;br /&gt;Secure SQL Server and MSDE&lt;br /&gt;To update SQL Server and MSDE, you must: &lt;br /&gt;• Apply patches for each instance of SQL Server and MSDE &lt;br /&gt;• Analyze SQL Server and MSDE security configuration &lt;br /&gt;Apply Patches for Each Instance of SQL Server and MSDE&lt;br /&gt;MSDE shares common technology with SQL Server, and it enables developers, partners, and IT professionals to build database applications without requiring the full SQL Server product. MSDE can be packaged with applications that require database support. To apply patches to MSDE, you must know which application installed it on your system. This is important because you must obtain the patch for MSDE from the product vendor.&lt;br /&gt;For more information on applications that include MSDE, refer to the following resources: &lt;br /&gt;• "Microsoft Products That Include MSDE," at http://www.microsoft.com/technet/security/bulletin/msdeapps.mspx &lt;br /&gt;• "SQL Server/MSDE-Based Applications," at http://www.sqlsecurity.com/DesktopDefault.aspx?tabid=31 &lt;br /&gt;If your third-party vendor does not supply a patch for MSDE, and if it becomes critical to have the latest patches, you can only do the following: &lt;br /&gt;• Uninstall the instance of SQL Server using Add/Remove Programs. If you do not see an uninstall option for your instance, you might need to uninstall your application. &lt;br /&gt;• Stop the instance of SQL Server using the Services MMC snap-in in Computer Management. You can also stop the instance from the command line by running the following command: &lt;br /&gt;net stop mssqlserver (default instance), mssql$instancename (for instances)&lt;br /&gt;• Use IPSec to limit which hosts can connect to the abandoned (unpatched) instances of SQL Server. Restrict access to localhost clients. &lt;br /&gt;Analyze SQL Server and MSDE Security Configuration&lt;br /&gt;Use MBSA to analyze your Microsoft SQL Server or MSDE configuration on your workstation.&lt;br /&gt;To analyze SQL Server and MSDE security configuration &lt;br /&gt;1. Run MBSA by double-clicking the desktop icon or selecting it from the Programs menu. &lt;br /&gt;2. Click Scan a computer. MBSA defaults to the local computer. &lt;br /&gt;3. Clear all check boxes except for Check for SQL vulnerabilities. &lt;br /&gt;This option scans for security vulnerabilities in the configurations of SQL Server 7.0, SQL Server 2000, and MSDE. For example, it checks the authentication mode, the sa account password, and the SQL Server service account, among other checks. &lt;br /&gt;A number of the checks require that your instance of SQL Server is running. If it is not running, start it. &lt;br /&gt;4. Click Start scan. Your configuration is now analyzed. When the scan completes, MBSA displays a security report, which it also writes to the %Userprofile%\SecurityScans directory. &lt;br /&gt;5. Review the failed checks, and fix vulnerable configuration settings. &lt;br /&gt;Click Result details next to each failed check for more information about why the check failed. Click How to correct this, for information about how to fix the vulnerability. &lt;br /&gt;For more information about using MBSA, see "How To: Use Microsoft Baseline Security Analyzer (MBSA)," in the How To section of this guide.&lt;br /&gt;Evaluate Your Configuration Categories&lt;br /&gt;To evaluate the security of your workstation configuration, review the configuration categories shown in Table. Start by using the categories to evaluate the security configuration of the base operating system. Then apply the same configuration categories to review your IIS, SQL Server, and .NET Framework installation.&lt;br /&gt;Configuration Categories&lt;br /&gt;Configuration Category Methodology&lt;br /&gt;Patches and updates Setup Automatic Updates. Use MBSA or Windows Updates to verify that the latest updates are installed&lt;br /&gt;Services Disable unused services.&lt;br /&gt;Protocols Check that SMB and NetBIOS over TCP are removed if your workstation is not a member of a domain.&lt;br /&gt;Accounts Check that all local accounts use strong passwords.&lt;br /&gt;Files and directories Be sure your workstation uses only NTFS partitions.&lt;br /&gt;Shares Enumerate shares, remove unnecessary ones, and secure the remaining ones with restricted permissions.&lt;br /&gt;Ports Ensure that unused ports are closed by disabling the service that has the port open. To verify which ports are listening use the netstat –n –a command.&lt;br /&gt;Registry Disable null sessions.&lt;br /&gt;Auditing and logging Audit failed Windows attempts to log on and log failed actions across the file system.&lt;br /&gt;Stay Secure&lt;br /&gt;Monitor the security state of your workstation, and update it regularly to help prevent newly discovered vulnerabilities from being exploited.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-7257892868818221608?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/7257892868818221608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=7257892868818221608' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7257892868818221608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7257892868818221608'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2008/02/how-to-secure-your-developer.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-3087407984688477174</id><published>2008-01-26T21:13:00.000-08:00</published><updated>2008-01-26T21:15:54.448-08:00</updated><title type='text'></title><content type='html'>&lt;a href="http://bp2.blogger.com/_GOtqzRwaRjU/R5wTYKdIONI/AAAAAAAAAos/wUZ9tdKMX1I/s1600-h/icon.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_GOtqzRwaRjU/R5wTYKdIONI/AAAAAAAAAos/wUZ9tdKMX1I/s320/icon.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5160020578904062162" /&gt;&lt;/a&gt;&lt;br /&gt;My family, scattered to the four winds, has a dangerous habit of blindly clicking through software installs and downloading all kinds of junk from the Internet. That's why I hear "The PC is acting funny" a lot. Not long ago an effective fix had to wait until my next visit, but now I can repair the damage anytime from my home or office using the free UltraVNC remote control software). &lt;br /&gt;&lt;br /&gt;You can install and use UltraVNC in several different ways; in my experience, it's easiest for the person I'm helping if I run the remote viewer on my machine, and then send a simple applet to them via an e-mail attachment that they click to automate the link to my system. &lt;br /&gt;&lt;br /&gt;To set up UltraVNC on your PC, install the application and select Run UltraVNC Viewer (Listen Mode) on the program's Start menu. If you have a router, you may have to open a port (the UltraVNC's default is 5500) to redirect traffic to your local computer. The method for doing this varies from router to router, so check your device?s documentation or the vendor Web site. &lt;br /&gt;&lt;br /&gt;Locate your IP address &lt;br /&gt;&lt;br /&gt;Next, customize the UltraVNC SC (for "single-click") server, which initiates the connection. Go to download custom.zip (look for the link about a third of the way down). Open the zipped file on your PC, and double-click helpdesk.txt to open that file. Replace both IP addresses (192.168.1.102) under the [HOST] headings with the address assigned to you by your ISP. Leave everything but those four numbers unchanged. If you're routerless, visit www.whatismyipaddress.com and note the number shown there. &lt;br /&gt;&lt;br /&gt;Most home IP addresses change from log-on to log-on (this arrangement is called dynamic IP addressing). If you need to create a static IP address, visit the free DynDNS service. You must run the service's utility to update its redirect table every time your local IP address changes? Without DynDNS, you'd have to re-edit and recompile the helpdesk.txt file every time you reloaded your Net connection. &lt;br /&gt;&lt;br /&gt;Send them a panic button &lt;br /&gt;&lt;br /&gt;Save the helpdesk.txt file back to the custom.zip archive. Next, browse to UltraVnc SC online creator, enter foo in the Userid field and foobar as the password, and click Browse to navigate to and select the custom.zip file. Click Upload, and it about 5 seconds you'll be told to download the custom.exe file that the remote user must click to connect to your machine. E-mail the custom.exe file (or whatever you rename it) to your family members, or post it on your Web site for them to download. When they follow the simple installation instructions that accompany it, you will see a dialog box on your screen informing you of an incoming connection. Accept it, and their Windows desktop appears in a window on your screen, ready for you to control. UltraVNC is free.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-3087407984688477174?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/3087407984688477174/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=3087407984688477174' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/3087407984688477174'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/3087407984688477174'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2008/01/my-family-scattered-to-four-winds-has.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_GOtqzRwaRjU/R5wTYKdIONI/AAAAAAAAAos/wUZ9tdKMX1I/s72-c/icon.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-4728029849937256031</id><published>2007-09-28T04:34:00.001-07:00</published><updated>2007-09-28T04:34:09.796-07:00</updated><title type='text'>Internet Information Service (IIS) 7.0</title><content type='html'>&lt;p&gt;IIS version 7.0 is a major enhancement to the existing IIS Web server and plays a central role in integrating Web platform technologies.  &lt;p&gt;IIS 7.0 is built to be compatible with existing releases. All existing ASP, ASP.NET 1.1, and ASP.NET 2.0 applications are expected to run on IIS 7.0 without any code changes (using the compatible ISAPI support).  &lt;p&gt;All existing ISAPI extensions and most ISAPI filters will also continue to work, unchanged. However, ISAPI filters that rely on READ RAW DATA notification are not supported in IIS 7.0  &lt;h4&gt;Who will be interested in this feature?&lt;/h4&gt; &lt;p&gt;Any business or organization that hosts or develops Web sites or WCF services can benefit from the improvements made in IIS 7.0.  &lt;p&gt;You should review this topic, and the additional supporting documentation on IIS 7.0, if you are in any of the following groups:  &lt;p&gt;· IT planners and analysts who are technically evaluating the product  &lt;p&gt;· Enterprise IT planners and designers for organizations  &lt;p&gt;· IT professionals who deploy or administer IIS  &lt;p&gt;· Developers who create Web sites or WCF services  &lt;p&gt;· Internet Service Providers (ISPs) or similar organizations that provide Web hosting  &lt;p&gt;Please find the full document which you can download from the file sharing section of live space.  &lt;p&gt;&lt;a href="http://cid-80e0d4743a9bf96c.skydrive.live.com/self.aspx/Public/Web%20Server(IIS7).doc"&gt;http://cid-80e0d4743a9bf96c.skydrive.live.com/self.aspx/Public/Web%20Server(IIS7).doc&lt;/a&gt;&lt;/p&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-4728029849937256031?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/4728029849937256031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=4728029849937256031' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/4728029849937256031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/4728029849937256031'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/09/internet-information-service-iis-70.html' title='Internet Information Service (IIS) 7.0'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-791516156567978060</id><published>2007-09-10T09:50:00.000-07:00</published><updated>2007-09-10T09:54:13.067-07:00</updated><title type='text'></title><content type='html'>Implementing&lt;br /&gt;Application Security Using the Microsoft .NET Framework&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In this article we are going to discuss the application security using Microsoft® .NET Framework. Specifically, we will discuss:&lt;br /&gt;&lt;br /&gt; .NET Framework security features.&lt;br /&gt; Code access security.&lt;br /&gt; Role-based security.&lt;br /&gt; Cryptography.&lt;br /&gt; Securing Microsoft ASP.NET Web applications.&lt;br /&gt; Securing ASP.NET Web services.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I assume that reader have Development experience with Microsoft Visual Basic®, Microsoft Visual C++®, or C#&lt;br /&gt;Experience building Microsoft Windows® or Web applications using the .NET Framework.&lt;br /&gt;&lt;br /&gt;The .NET common language runtime controls the execution of .NET code. The .NET Framework security system is part of the common language runtime. &lt;br /&gt;The .NET Framework includes many features that you will cover soon in this article, such as type checking for safe type-conversions, secure exception management, and code access security control.&lt;br /&gt;.NET Framework security is designed to complement the security provided by Microsoft Windows®. It does not override Windows-based security. For example, if a Windows access control list (ACL) restricts access to a file, the .NET Framework does not override this security. &lt;br /&gt;&lt;br /&gt;.NET Managed Execution Security&lt;br /&gt;The .NET Framework security features &lt;br /&gt;Assist you in developing secure applications&lt;br /&gt;Include many components, including:&lt;br /&gt;Type Checker&lt;br /&gt;Exception Manager&lt;br /&gt;Security Engine&lt;br /&gt;Complement Windows Security&lt;br /&gt;&lt;br /&gt; A Type-Safe System&lt;br /&gt;  Type-safe code:&lt;br /&gt; Prevents buffer overruns&lt;br /&gt; Restricts access to authorized memory locations&lt;br /&gt; Allows multiple assemblies to run in the same process&lt;br /&gt; &lt;br /&gt;App Domains provide:&lt;br /&gt;Increased performance&lt;br /&gt;Increased code security&lt;br /&gt; &lt;br /&gt;Type-safety verification is the cornerstone of .NET Framework security because it prevents access to unauthorized memory locations. This allows you to consistently enforce security policy. For example, code cannot overrun a buffer and cause execution to jump to an arbitrary memory location.&lt;br /&gt;Type-safety verification allows the common language runtime to run more than one type-safe assembly in the same process. These sub-processes are called application domains. Application domains are especially useful in server scenarios in which the overhead of using many processes may slow system performance.&lt;br /&gt;In the past, the use of dynamic-link library (DLL)-based components was preferred for efficiency reasons, because EXE-based components were seen to be more secure and robust (due to the Microsoft Win32® virtual address space architecture). However, .NET supports the concept of an App Domain.  An App Domain can be thought of as a process within a process, which provides good performance (like a DLL-based component), excellent security, and robustness.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Managed code typically does not deal with raw pointers (such as a char *).  Instead, the .NET runtime uses classes such as System.String and System.Text.StringBuilder, which are managed by .NET type-verification checks.&lt;br /&gt;• A String is an immutable object, which vastly alleviates the buffer overrun issue.  Consider the following code:&lt;br /&gt;&lt;br /&gt;void CopyString (string src)&lt;br /&gt;{&lt;br /&gt; stringDest = src;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;  When the code executes, a new resultant string object will be created, and the reference stringDest will be altered to refer to that string.  Therefore, a buffer overrun is not possible.  &lt;br /&gt;Another string class found in the .NET Framework is StringBuilder. StringBuilder is also a robust class and will throw an exception if an attempt is made to overwrite its internal buffer.&lt;br /&gt;&lt;br /&gt;Trapping arithmetic errors in unmanaged code (for example, Visual C++) is very difficult. However, with managed code, spotting arithmetic runtime errors is easier.  For example, the Visual C# compiler enables automatic checking for arithmetic overflows and underflows.  &lt;br /&gt;• By default, the arithmetic error trapping feature is turned off (for optimization reasons).  However, you can easily turn on this feature either from the project properties or by using the checked keyword in your code.&lt;br /&gt;• If you have turned arithmetic checking on at the project level, you can override the settings by using the unchecked keyword in your code. This is useful if you are certain that arithmetic errors cannot occur in specific blocks of code and you want to optimize those blocks when your code is compiled.&lt;br /&gt;In few moments, you will see:&lt;br /&gt;• How .NET data-type safety works.&lt;br /&gt;• How to use the checked keyword.&lt;br /&gt;&lt;br /&gt;Strong-Named Assemblies&lt;br /&gt;Strong names are unique identifiers for your assemblies. You can generate strong names and then use them to digitally sign your assemblies. Strong-naming solves problems (such as version control and backward compatibility issues) that are caused when components are shared by multiple applications. In effect, strong names associate a distinct build of a component assembly with the client application. A distinct build is indicated by a combination of a version number and a special value that is called the publicKeyToken.&lt;br /&gt;You can generate a public/private key pair for signing your assembly by using the Strong Name tool (Sn.exe).&lt;br /&gt;&lt;br /&gt;Isolated Storage&lt;br /&gt;Provides a virtual file system&lt;br /&gt;Allows quotas&lt;br /&gt;Implements file system isolation based on:&lt;br /&gt;Application identity&lt;br /&gt;User identity&lt;br /&gt;IsolatedStorageFile isoStore =&lt;br /&gt;   IsolatedStorageFile.GetUserStoreForAssembly();&lt;br /&gt;&lt;br /&gt; For some applications, such as downloaded Web applications and code that may come from sources that are not trusted, the basic file system does not provide the necessary isolation and safety. Isolated storage is a data storage mechanism that provides isolation and safety by defining standardized ways of associating code with saved data&lt;br /&gt;&lt;br /&gt;With isolated storage, developers no longer have to invent unique paths to specify safe locations in the file system. Developers can now access safe locations by using either the application's identity or the user's identity. The code sample on the slide show an example of how to access the isolated storage based on a user's identity&lt;br /&gt;&lt;br /&gt;These are the main .net Security features and we will cover other portions soon. Any comments and questions are acceptable. (maneeshpnair@msn.com). Accept my advance apology for any delayed response as I am in rest.&lt;br /&gt;Forthcoming sections include code access security, Securing ASP.NET Web applications etc.. (Visit: http://maneeshpnair.spaces.live.com/)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-791516156567978060?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/791516156567978060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=791516156567978060' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/791516156567978060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/791516156567978060'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/09/implementing-application-security-using_10.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-3020094508115534301</id><published>2007-08-06T13:41:00.001-07:00</published><updated>2007-08-06T13:41:55.787-07:00</updated><title type='text'>Why application security matters</title><content type='html'>&lt;p&gt;&lt;/p&gt; &lt;p&gt;Because computers are an important component of any business, they need to: &lt;p&gt;Be reliable. &lt;p&gt;Be able to withstand security attacks. &lt;p&gt;Provide a feeling of confidence to both businesses and individuals that their data is secure &lt;p&gt;&lt;b&gt;Source of Attacks.&lt;/b&gt; &lt;p&gt;Workforce mobility is increasing, and consequently, the way in which employees connect to your company’s network is evolving. Employees connect in a number of different ways, including traditional wired connections, new and evolving wireless network standards, and dial-up and broadband virtual private network (VPN) connections. The variety of ways your mobile users connect to your company’s network introduces a number of security concerns. &lt;p&gt;Applications are becoming increasingly dependant on connections to the Internet, for updated data, Web services, and so on. The Internet is a potential route to your systems for attackers and viruses. Many businesses require a persistent connection to the Internet so that they can provide Web sites, File Transfer Protocol (FTP) site, and Web services. As already stated, the Internet is a potential route to your systems for attackers and viruses &lt;p&gt;&lt;i&gt;There are many types of attacks which need more pages to explain. Point of this article is to generate an idea on &lt;b&gt;Secure Application Development Practices. &lt;/b&gt;&lt;/i&gt;&lt;i&gt;Even if you have the most secure network infrastructure possible, with completely hardened servers, a simple vulnerability in your application (for example, failing to validate input) renders all of that useless&lt;/i&gt;&lt;i&gt;&lt;/i&gt; &lt;p&gt;&lt;b&gt;The Developer Role in Application Security&lt;/b&gt; &lt;p&gt;Solution architects, developers, and systems administration personnel must all work together and take collective responsibility for security. &lt;p&gt;Developers must adopt good practices that ensure the production of secure software. They must be knowledgeable about security vulnerabilities and how to avoid them, and must have both a broad and deep knowledge about security technologies and how to use them in order to create secure solutions &lt;p&gt;&lt;b&gt;Developers must:&lt;/b&gt; &lt;p&gt;Work with solution architects and systems administrators to ensure application security &lt;p&gt;Contribute to security by: &lt;p&gt;Adopting good application security development practices &lt;p&gt;Knowing where security vulnerabilities occur and how to avoid them &lt;p&gt;Using secure programming techniques &lt;p&gt;&lt;b&gt;The SD3 Security Framework&lt;/b&gt; &lt;p&gt;Secure by Design &lt;p&gt;Secure by Default &lt;p&gt;Secure in Deployment &lt;ul&gt; &lt;li&gt;Secure architecture and code&lt;/li&gt; &lt;li&gt;Threat analysis&lt;/li&gt; &lt;li&gt;Vulnerability reduction&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Attack surface area reduced&lt;/p&gt; &lt;p&gt;Unused features turned off by default&lt;/p&gt; &lt;p&gt;Minimum privileges used&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Protection: Detection, defense, recovery, management&lt;/li&gt; &lt;li&gt;Process: How to guides, architecture guides&lt;/li&gt; &lt;li&gt;People: Training&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Secure by Design means that you have taken the appropriate steps to ensure that the overall design of the product is secure from the outset. Include threat modeling at the design phase and throughout the project to identify potential vulnerabilities. Use secure design, coding, and testing guidelines. &lt;p&gt;Secure by Default means that the product is released so that it is secure out of the box. If features are optional, and you can turn them off by default. If a feature is not activated, then an attacker cannot use it to compromise your product. Ensure that only the least amount of privilege is required by user accounts to run your application. Then a compromise can have less serious consequences than if an attacker is able to run malicious code under an account with administrator privileges. Ensure that effective access controls are in place for resources. &lt;p&gt;Secure in Deployment means that the system is maintainable after installation. If a product is difficult to administer, it makes it more difficult to maintain protection against security threats as new ones evolve. Ensure that users are educated to use the system in a secure manner. If security vulnerability is discovered and a patch is necessary, ensure that the fix is fully tested internally and then issued in a timely manner. &lt;p&gt;Thank you for your time and interest. It’s just a step to explain today’s trend in application development, and most of you aware with this. Any comments and questions are acceptable. (&lt;a href="mailto:maneeshpnair@msn.com"&gt;maneeshpnair@msn.com&lt;/a&gt;). &lt;b&gt;&lt;i&gt;Forthcoming articles include Secure Development Process, Threat Modeling, Risk Mitigation and Security Best Practices &lt;/i&gt;&lt;/b&gt;(Visit: &lt;a href="http://maneeshpnair.spaces.live.com/"&gt;http://maneeshpnair.spaces.live.com/&lt;/a&gt; , &lt;a href="http://maneeshpnair.blogspot.com/"&gt;http://maneeshpnair.blogspot.com/&lt;/a&gt; , &lt;a href="http://360.yahoo.com/maneeshpnair"&gt;http://360.yahoo.com/maneeshpnair&lt;/a&gt; )&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-3020094508115534301?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/3020094508115534301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=3020094508115534301' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/3020094508115534301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/3020094508115534301'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/08/why-application-security-matters.html' title='Why application security matters'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-23611429598348731</id><published>2007-07-20T09:42:00.001-07:00</published><updated>2007-07-20T09:42:11.173-07:00</updated><title type='text'>Social Engineering</title><content type='html'>&lt;p&gt;&lt;em&gt;&lt;b&gt;Social engineering is a collection of techniques used to manipulate people into performing actions or divulging confidential information&lt;/b&gt;&lt;/em&gt; &lt;p&gt;Social engineering takes advantage of the lack of concern for security in the daily lives of most people. An attacker can spend time at work or leisure getting to know users and gaining their confidence. While an attacker asks questions and gains information that on a per-answer basis does not appear harmful, the information taken as a whole provides the attacker with the means to start or carry out an attack. &lt;p&gt;take good care...A known stranger may filch your password or PII (&lt;strong&gt;personally identifiable information&lt;/strong&gt; ). &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-23611429598348731?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/23611429598348731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=23611429598348731' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/23611429598348731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/23611429598348731'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/social-engineering.html' title='Social Engineering'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-6077046941368652834</id><published>2007-07-13T08:16:00.003-07:00</published><updated>2007-07-13T08:16:40.510-07:00</updated><title type='text'>Windows 2003 Server</title><content type='html'>&lt;p&gt;How demote a childdomain without parent domain or forest? &lt;p&gt;Use &lt;strong&gt;dcpromo /forceremoval&lt;/strong&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-6077046941368652834?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/6077046941368652834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=6077046941368652834' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/6077046941368652834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/6077046941368652834'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/windows-2003-server.html' title='Windows 2003 Server'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-7005873809666567774</id><published>2007-07-13T08:16:00.001-07:00</published><updated>2007-07-13T08:16:18.369-07:00</updated><title type='text'>Uninstalling procedure of MS Exchange 2000</title><content type='html'>&lt;p&gt;Start Uninstalling from The AddReove Program snap in which you have in control panel. &lt;p&gt;Then remove Server from 1&lt;sup&gt;st&lt;/sup&gt; storage group. Still you got Server exist error message then install only management snap in and remove server. Then start installation with “&lt;strong&gt;forestprerp&lt;/strong&gt;” switch. After that start normal installation and make sure you choose different directory than previous one. Now things gonna be work. &lt;p&gt;Before uninstall mail boxes must be deleted or moved. Note the point that this will not recover any old mailboxes.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-7005873809666567774?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/7005873809666567774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=7005873809666567774' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7005873809666567774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7005873809666567774'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/uninstalling-procedure-of-ms-exchange.html' title='Uninstalling procedure of MS Exchange 2000'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-7278311741329561213</id><published>2007-07-10T07:56:00.001-07:00</published><updated>2007-07-10T07:56:52.461-07:00</updated><title type='text'>Looking for a tool to migrate your System settings?????</title><content type='html'>&lt;p&gt;&lt;/p&gt; &lt;p&gt; &lt;dt&gt;Looking for a tool to migrate your System settings?????  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Files and Settings Transfer Wizard…….&lt;/em&gt;&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;It’s the best way to transfer your files, settings, e mails to other PCs or user IDs with least problems. Most case it transfers e mails and settings from Microsoft Outlook and always from Outlook express.&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;Some of the situation it doesn’t work is transferring to a different language version, migrating to a non complete installation of office (e.g. typical installation). The GUI is very simple and bit customization also available (Grrrr.. not enough for professionals&lt;img src="http://shared.live.com/VIf!VWmJbs6tK-ObyYk28Q/emoticons/smile_eyeroll.gif"&gt;).&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;The point is it works with single system. If you looking for large deployment MSUMT (Microsoft User Migration Tool) is the one you needed. The bad news is it supports command line only. But I am assuring that it has all option that you want, such as transfering all settings to server and then migration form there, customized program/setting adding option thru XML files.(The XML support is in version 3. Previous versions supports INF only)&lt;/strong&gt;&lt;/p&gt;&lt;/dd&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-7278311741329561213?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/7278311741329561213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=7278311741329561213' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7278311741329561213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7278311741329561213'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/looking-for-tool-to-migrate-your-system.html' title='Looking for a tool to migrate your System settings?????'/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-2875686895586848363</id><published>2007-07-06T02:11:00.001-07:00</published><updated>2007-07-06T02:11:16.122-07:00</updated><title type='text'></title><content type='html'>&lt;p&gt;&lt;strong&gt;February 21&lt;/strong&gt; &lt;h6&gt;Old pal&lt;/h6&gt; &lt;p&gt;&lt;strong&gt;Hi friends, &lt;br&gt;Yesterday night i met Prem Lal in a restaurant. &lt;br&gt;He was sitting opposite to me and looking at me like he knows me from &lt;br&gt;somewhere. He had his dinner wash his hands and come again and asked &lt;br&gt;where i been, Then i replied a question that in which poly you &lt;br&gt;studied. He answered Nattakom.There i cnfrmd that he&lt;/strong&gt; &lt;em&gt;&lt;strong&gt;is our old&amp;nbsp;class mate &lt;/strong&gt;&lt;/em&gt;&lt;strong&gt;&lt;em&gt;Prem lal....... After 8 years......&lt;/em&gt;its a long time na&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;February 09&lt;/strong&gt; &lt;h6&gt;Plan&lt;/h6&gt; &lt;p&gt;A good plan today is better than perfect plan tomorrow &lt;p&gt;&lt;strong&gt;February 05&lt;/strong&gt; &lt;h6&gt;Professional&lt;/h6&gt; &lt;p&gt;&lt;strong&gt;&lt;img src="http://maneeshpnair.spaces.live.com/rte/emoticons/rose.gif"&gt;Think Who You are and Think What others Thinking&lt;img src="http://spaces.msn.com/rte/emoticons/smile_wink.gif"&gt;&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;January 04&lt;/strong&gt; &lt;h6&gt;Quote&lt;/h6&gt; &lt;p&gt;Never explain--your friends do not need it and your enemies will not believe you anyway. -- &lt;strong&gt;&lt;em&gt;Elbert Hubbard &lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-2875686895586848363?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/2875686895586848363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=2875686895586848363' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/2875686895586848363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/2875686895586848363'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/february-21-old-pal-hi-friends.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-2136246190604347301</id><published>2007-07-06T02:07:00.001-07:00</published><updated>2007-07-06T02:07:41.046-07:00</updated><title type='text'></title><content type='html'>&lt;p&gt; &lt;dt&gt;Parents Wedding Anniversary  &lt;dd&gt; &lt;p&gt;Today is My Parent's &lt;strong&gt;29th Wedding anniversary&lt;/strong&gt;. May God bless them to stay many more years together and requesting all of yuors prayer to them. &lt;p&gt;Monkuttan &lt;p&gt;Wednesday July 12, 2006 - 11:11pm (PDT) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=17"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=17#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;My Teacher  &lt;dd&gt; &lt;p&gt;Hey I got my&amp;nbsp;4th standard&amp;nbsp;teacher's Phone Number and we had a talk..its happening after 15 years. She still remember me and once in a week she is speking about me to somebody. I am very thankful to her as she made a big role to make me Maneesh. I mean todays Maneesh. &lt;p&gt;Sunday July 9, 2006 - 01:29pm (PDT) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=13"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=13#comments"&gt;2 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Sister'sMarriage  &lt;dd&gt; &lt;p&gt;&lt;a href="http://blog.360.yahoo.com/blog/slideshow.html?p=12&amp;amp;id=hKrbuZg8eqirneTdyvqyaRSghWk-"&gt;&lt;img height="222" alt="Sister'sMarriage" src="http://f3.yahoofs.com/blog/4470822dz67970113/0/__sr_/47f1.jpg?mgIahjGBafIcH7Nl" width="333" border="0"&gt;&lt;/a&gt; &lt;a href="http://blog.360.yahoo.com/blog/slideshow.html?p=12&amp;amp;id=hKrbuZg8eqirneTdyvqyaRSghWk-"&gt;&lt;img height="12" alt="magnify" src="http://l.yimg.com/us.yimg.com/i/nt/ic/ut/bsc/srch12_1.gif" width="12" border="0"&gt;&lt;/a&gt; &lt;p&gt;My Sister’s marriage was on &lt;strong&gt;May 13&lt;sup&gt;th&lt;/sup&gt;&lt;/strong&gt;. Some of the Snaps I uploaded here.. My colleagues, old pals, and classmates’ neighbors my relatives….all were there to bless them. My apology to those who didn’t get personal attention. As you know there were around 2000 individuals. Once again &lt;strong&gt;THANKS&lt;/strong&gt; very much to all of you. &lt;p&gt;Monu &lt;p&gt;Sunday May 21, 2006 - 08:07am (PDT) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=12"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=12#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;At Native...............  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;Hey after 5 months again am at native.....Breathing fresh air!!!! Is this fresh? what ever, enjoying my holydays with family, &amp;nbsp;friends and my folks...&lt;/strong&gt; &lt;p&gt;Wednesday April 26, 2006 - 06:25pm (PDT) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=10"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=10#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;World Without Strangers  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;Imagine&lt;/strong&gt; and &lt;strong&gt;Explore&lt;/strong&gt; a world where we &lt;strong&gt;Accept&lt;/strong&gt; everybody, &lt;p&gt;where we &lt;strong&gt;Beilve&lt;/strong&gt; and &lt;strong&gt;Listen&lt;/strong&gt; to each other and where being together is our &lt;strong&gt;Strength&lt;/strong&gt;.&lt;/p&gt;&lt;/dd&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-2136246190604347301?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/2136246190604347301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=2136246190604347301' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/2136246190604347301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/2136246190604347301'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/parents-wedding-anniversary-today-is-my.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-7391949866335316721</id><published>2007-07-06T02:05:00.001-07:00</published><updated>2007-07-06T02:05:40.380-07:00</updated><title type='text'></title><content type='html'>&lt;p&gt; &lt;dt&gt;Entry for February 28, 2006  &lt;dd&gt; &lt;p&gt;Today morning i felt to update.. but i saw one &lt;em&gt;important person&lt;/em&gt; accept my invitation...am nervous to write any ... see ye ....tomorrow...take care alll...bbyyyyee &lt;p&gt;Tuesday February 28, 2006 - 11:59pm (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=8"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=8#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Wht's New?  &lt;dd&gt; &lt;p&gt;&lt;a href="http://360.yahoo.com/elizbethseema"&gt;http://360.yahoo.com/elizbethseema&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;check out this friends...very nice page...&lt;/em&gt;&lt;/strong&gt; &lt;p&gt;And whts new..ha i added my friends pict here..everybody can watch it.. U can see Afzu, Chachu, Pillu and my bodu guard syed.. ....watch it &lt;p&gt;Wednesday February 22, 2006 - 07:59am (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=7"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=7#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Entry for February 20, 2006  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;Hi friends, &lt;br&gt;Yesterday night i met Prem Lal in a restaurant. &lt;br&gt;He was sitting opposite to me and looking at me like he knows me from &lt;br&gt;somewhere. He had his dinner wash his hands and come again and asked &lt;br&gt;where i been, Then i replied a question that in which poly you &lt;br&gt;studied. He answered Nattakom.There i cnfrmd that he&lt;/strong&gt; &lt;em&gt;&lt;strong&gt;is our old&amp;nbsp;class mate &lt;/strong&gt;&lt;/em&gt;&lt;strong&gt;&lt;em&gt;Prem lal....... After 8 years......&lt;/em&gt;its a long time na&lt;/strong&gt; &lt;p&gt;Monday February 20, 2006 - 09:37pm (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=5"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=5#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;What is A FRIEND  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;it's a single soul dwelling in two bodies. &lt;/em&gt;&lt;/strong&gt; &lt;blockquote&gt; &lt;blockquote&gt; &lt;blockquote&gt; &lt;blockquote&gt; &lt;blockquote&gt; &lt;blockquote&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Aristotle&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt; &lt;p&gt;&lt;strong&gt;Its not mine. But Each of us think ourselves and ask, "Is this really true?"&lt;/strong&gt; &lt;p&gt;Thursday February 9, 2006 - 09:38am (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=2"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=2#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Entry for February 04, 2006  &lt;dd&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;Really Love makes my heart Faster&lt;/strong&gt;&lt;/em&gt; &lt;p&gt;&lt;strong&gt;love is always patient and kind. it is never jealous. love is never boastful or conceited.it is never rude or selfish. it does not take offense and it is not resentful.Love takes no pleasure in other people's sins...but delights in the truth.it is always ready to excuse,to trust, to hope...and to endure...... whatever comes..&lt;/strong&gt;&lt;/p&gt;&lt;/dd&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-7391949866335316721?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/7391949866335316721/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=7391949866335316721' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7391949866335316721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/7391949866335316721'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/entry-for-february-28-2006-today.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-8221067328443679312</id><published>2007-07-06T02:02:00.001-07:00</published><updated>2007-07-06T02:02:13.850-07:00</updated><title type='text'></title><content type='html'>&lt;h5&gt;Mhmmmmm Full Post View | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;list=1"&gt;List View&lt;/a&gt;&lt;/h5&gt; &lt;p&gt;I am here to share my moments and to watch your's &lt;dl&gt; &lt;dt&gt;WORM_CONDOWN.A Manual Removal Instruction.  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;u&gt;Activity&lt;/strong&gt;&lt;/em&gt; &lt;p&gt;Mainly these virus files reside in root drive and system32 folder. It’s using Autorun facility and once it’s activated automatically moving to multiple locations and running in 2 different names. It will kill almost all anti virus services and modify the registry to deny future running of AV services. The other modification in Registry will deny Show all hidden files option permanently. &lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;u&gt;Removal Instruction&lt;/strong&gt;&lt;/em&gt; &lt;p&gt;Win XP /2000 &lt;p&gt;Restart the PC and go to Safe mode Command Prompt. (Press F8 before booting) &lt;p&gt;Use attrib command to reset the files flag to not hidden, not system, archive. &lt;p&gt;Use type command to read autorun.inf and note the file name. Reset the flag of same file and then delete. Type regedit in command prompt and browse the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run &lt;p&gt;Delete the values which pointing to wnta.exe and lgwubrw.exe. &lt;p&gt;Delete the same files from system32 directory. &lt;p&gt;Browse the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options &lt;p&gt;And then find the sub key related to antivirus name, just delete it. (eg:,nod32.exe, nod32krn.exe) &lt;p&gt;That’s it. &lt;p&gt;&lt;/u&gt;&lt;/u&gt; &lt;p&gt;Tags: &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;tag=virusalert"&gt;virusalert&lt;/a&gt; &lt;p&gt;Wednesday June 20, 2007 - 12:26pm (PDT) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=23"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=23#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Entry for January 18, 2007  &lt;dd&gt; &lt;p&gt;&lt;a href="http://blog.360.yahoo.com/blog/slideshow.html?p=22&amp;amp;id=hKrbuZg8eqirneTdyvqyaRSghWk-"&gt;&lt;img height="250" alt="Entry for January 18, 2007" src="http://f3.yahoofs.com/blog/4470822dz67970113/7/__sr_/fe84.jpg?mgIahjGBUIOvowdM" width="333" border="0"&gt;&lt;/a&gt; &lt;a href="http://blog.360.yahoo.com/blog/slideshow.html?p=22&amp;amp;id=hKrbuZg8eqirneTdyvqyaRSghWk-"&gt;&lt;img height="12" alt="magnify" src="http://l.yimg.com/us.yimg.com/i/nt/ic/ut/bsc/srch12_1.gif" width="12" border="0"&gt;&lt;/a&gt; &lt;p&gt;2007 Syarted with Good Newses...........Jan 17th....... &lt;p&gt;&lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;tag="&gt;&lt;/a&gt; &lt;p&gt;Thursday January 18, 2007 - 09:41am (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=22"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=22#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Wishing you allllllllllll  &lt;dd&gt; &lt;p&gt;&lt;strong&gt;Merry X' Mas&lt;img src="http://gfx2.mail.live.com/mail/11.00/updatebeta/emoticons/star.gif"&gt; and Prosperous New year&lt;img src="http://gfx2.mail.live.com/mail/11.00/updatebeta/emoticons/sun.gif"&gt; to All of You&lt;br&gt;Maneesh&lt;/strong&gt; &lt;p&gt;&lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;tag="&gt;&lt;/a&gt; &lt;p&gt;Thursday December 21, 2006 - 07:50am (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=21"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=21#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Entry for November 26, 2006  &lt;dd&gt; &lt;p&gt;Hey just was thru a short trip. Round around Native, Delhi, Dubai. and back to base now. &lt;p&gt;Just a Biz trip. nothing fun.......... &lt;p&gt;Sunday November 26, 2006 - 09:54pm (PST) &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=20"&gt;Permanent Link&lt;/a&gt; | &lt;a href="http://blog.360.yahoo.com/blog-hKrbuZg8eqirneTdyvqyaRSghWk-?cq=1&amp;amp;p=20#comments"&gt;0 Comments&lt;/a&gt; &lt;p&gt;&lt;/p&gt; &lt;dt&gt;Entry for September 19, 2006  &lt;dd&gt; &lt;p&gt;long time nothing comes up huh..... Actually was thru tight schedules...now bit free&amp;nbsp;, will try to bring new updates soon till &lt;p&gt;&amp;nbsp;then signing off Monu&lt;/p&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-8221067328443679312?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/8221067328443679312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=8221067328443679312' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/8221067328443679312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/8221067328443679312'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/mhmmmmm-full-post-view-list-view-i-am.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3588111753055967927.post-8026233218316716821</id><published>2007-07-06T01:38:00.000-07:00</published><updated>2007-07-06T01:39:26.624-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://360.yahoo.com/maneeshpnair"&gt;http://360.yahoo.com/maneeshpnair&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="right"&gt;&lt;a href="http://360.yahoo.com/maneeshpnair"&gt;http://360.yahoo.com/maneeshpnair&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3588111753055967927-8026233218316716821?l=maneeshpnair.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://maneeshpnair.blogspot.com/feeds/8026233218316716821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3588111753055967927&amp;postID=8026233218316716821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/8026233218316716821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3588111753055967927/posts/default/8026233218316716821'/><link rel='alternate' type='text/html' href='http://maneeshpnair.blogspot.com/2007/07/http360.html' title=''/><author><name>Monu</name><uri>http://www.blogger.com/profile/14694542461258592159</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
