Archive for the Category ◊ Hosting Security ◊

How to have Remote Assistance
Tuesday, October 07th, 2008 | Author:

Remote Assistance
is performed between 2 systems. One asking for support/help is called Novice and other which will provide support/help is called Expert.

1. To open Remote assistance, navigate yourself as shown below.

2. Open Help and Support Center by clicking Start, and then clicking Help and Support. Following window will open up.

Click on => Invite someone to help you (shown inside red outline)

more…

When you first learn about ‘Remote Desktop‘ and ‘Remote Assistance‘, you might easily make it out that both services are the same. They allow you to remotely control a PC from any where, let it be on your local network or even over the Internet. Although there are some important differences that we need to check between these two services.

1] Remote Assistance uses Windows XP/2003 Terminal Services to share desktop and other resources between two PCs.

Terminal Services - It is a way of using RDP (Remote Desktop Protocol), which allows users to connect to their Windows XP desktop or a dedicated server (Terminal Server) combining with VPN (Virtual Private Network) with the help of which users can connect to their office network remotely and work with their applications.

Virtual Private Network – Creates a secure connection between private networks.

In a *Remote Assistance Session* -

Both users must be present at their respective PCs and must agree to establish a connection.

more…

Thread Safety in JSP & Servlet
Sunday, September 28th, 2008 | Author:

You can thread safe your jsp (java server pages) pages in two ways

1. By implementing the SingleThreadModel interface.

This is done by adding the directive to your jsp page

<%@ page isThreadSafe=”false” %>

Within your jsp page.

When you implement SingleThreadModel interface instead of a single instance of the servlet generated for your jsp page loaded in memory, jsp engine creates new instance of that jsp page for each client request.
but avoid this method because, this methods has some performance issue and there are many pitfalls.

2. By using synchronized block or synchronized method

more…

Category: Hosting Security, Java |  Tags: , , , , | Comments off
Computer Security and Firewalls
Sunday, September 28th, 2008 | Author:

What do we want from secure computer systems?

Here is a reasonable goal:  Computers are as secure as real world systems, and people believe it.

Security is the condition of being protected against danger, loss, and hackers. In the general sense, security is a concept similar to safety.

In today’s web-based world, hackers and malicious software are the biggest threat to anyone who conducts business online.  Viruses and worms have the ability to cripple entire networks while an experienced hacker can penetrate a system and thieve confidential data.  Because of this, consumers and online businesses alike are taking proactive steps towards protecting their personal information.  Some are conferring with their web hosting providers to ensure that the security measures they implement are reliable.

There are many creative ways that unscrupulous people use to access or abuse unprotected computers. I have mentioned few of them below,

more…

Category: Hosting Security |  Tags: , , , , , | Comments off