Thursday, August 11, 2011

Geethanjali


Where the mind is without fear and the head is held high
Where knowledge is free
Where the world has not been broken up into fragments
By narrow domestic walls
Where words come out from the depth of truth
Where tireless striving stretches its arms towards perfection
Where the clear stream of reason has not lost its way
Into the dreary desert sand of dead habit
Where the mind is led forward by thee
Into ever-widening thought and action
Into that heaven of freedom, my Father, let my country awake.

- Rabindranath Tagore, Gitanjali, 1912

Wednesday, August 10, 2011

How to Prevent Cyber Intrusions in Computer Networks

1. Deploy a Host Intrusion Detection System (HIDS) to help block and identify common attacks.

2. Use an application proxy in front of web servers to filter out malicious requests.

3. Ensure that the "allow URL_fopen" is disabled on the web server to help limit PHP vulnerabilities from remote file inclusion attacks.

4. Limit the use of dynamic SQL code by using prepared statements, queries with parameters, or stored procedures whenever possible. Information on SQL injections is available at .

5. Follow the best practices for secure coding and input validation; use the secure coding guidelines available at: and .

6. Review US-CERT documentation regarding distributed denial-of-service attacks: and .

7. Disable active scripting support in email attachments unless required to perform daily duties.

8. Consider adding the following measures to your password and account protection plan.Use a two factor authentication method for accessing privileged root level accounts.

9. Use minimum password length of 15 characters for administrator accounts.

10. Require the use of alphanumeric passwords and symbols.

11. Enable password history limits to prevent the reuse of previous passwords.

12. Prevent the use of personal information as password such as phone numbers and dates of birth.

13. Require recurring password changes every 60-90 days.

14. Deploy NTLMv2 as the minimum authentication method and disable the use of LAN Managed passwords.

15. Use minimum password length of 8 characters for standard users.

16. Disable local machine credential caching if not required through the use of Group Policy Object (GPO). For more information on this topic see Microsoft Support articles 306992 and 555631.

17. Deploy a secure password storage policy that provides password encryption.

18. If an administrator account is compromised, change the password immediately to prevent continued exploitation. Changes to administrator account passwords should only be made from systems that are verified to be clean and free from malware.

19. Implement guidance and policy to restrict the use of personal equipment for processing or accessing official data or systems (e.g., working from home or using a personal device while at the office).

20. Develop policies to carefully limit the use of all removable media devices, except where there is a documented valid business case for its use. These business cases should be approved by the organization with guidelines for there use.

21. Implement guidance and policies to limit the use of social networking services at work, such as personal email, instant messaging, Facebook, Twitter, etc., except where there is a valid approved business case for its use.

22. Adhere to network security best practices. See for more information.

23. Implement recurrent training to educate users about the dangers involved in opening unsolicited emails and clicking on links or attachments from unknown sources. Refer to NIST SP 800-50 for additional guidance.

24. Require users to complete the agency's "acceptable use policy" training course (to include social engineering sites and non-work related uses) on a recurring basis.

25. Ensure that all systems have up-to-date patches from reliable sources. Remember to scan or hash validate for viruses or modifications as part of the update process.