Archive for the ‘English Articles’ Category

Want to be a C|EH

Posted in English Articles  by kissdeath on June 16th, 2009

So you want to be a C|EH… What to study, what to learn, how many questions, etc.. Aside fromwhat you may have heard about the exam, I will offer a perspective from someone who has been in the security industry for quite some time.
Read the rest of this entry »

Tags:

70-640 Resources

Posted in English Articles  by kissdeath on June 16th, 2009

Resources and study guide for the 70-640 TS: Windows Server 2008 Active Directory, Configuring exam

Read the rest of this entry »

Tags: ,

70-643 Resources

Posted in English Articles  by kissdeath on June 16th, 2009

Study Guide and Resources for 70-643 TS: Windows Server 2008 Applications Infrastructure
Read the rest of this entry »

Tags: ,

70-642 Resources

Posted in English Articles  by kissdeath on June 16th, 2009

Study Guide and Resources for Exam 70-642 TS: Windows Server 2008 Network Infrastructure, Configuring
Read the rest of this entry »

Tags: ,

Configure Fine-grained Password Policies In Windows Server 2008

Posted in English Articles  by kissdeath on May 22nd, 2009

So called fine-grained password policies are a new feature of Windows Server 2008. This new feature allows system administrators to configure password policies for different user groups. Windows Server 2003 was not as flexible as it only allowed to set one password policy for all users. The manual configuration of fine-grained password policies requires quite some time. A software program like Specops Password Policy Basic is therefor a handy addition for every system administrator dealing with Windows Server 2008 systems.

The free program is a limited version of the commercial software from the same developer. It requires the Microsoft .net Framework 2, the Microsoft Management Console and PowerShell. The interface of the application makes it less time consuming to configure password policies for specific user groups in Windows Server 2008. It basically centers around creating, configuring and managing password policies.

password policy

The following parameters can be defined for each password policy:

A Password Settings object (PSO) has attributes for all the settings that can be defined in the Default Domain Policy (except Kerberos settings). These settings include attributes for the following password settings:

  • Enforce password history
  • Maximum password age
  • Minimum password age
  • Minimum password length
  • Passwords must meet complexity requirements
  • Store passwords using reversible encryption
  • Account lockout duration
  • Account lockout threshold
  • Reset account lockout after

password policies

User groups can be added to newly created policies. It has to be noted that user groups cannot be empty as empty user groups cannot be added to password policies. The program displays an overview of all password policies on the computer system. The order can be changed which is important if users are members of multiple user groups.

Source.

Tags:

Scripting – Sample Users/Group creation in AD

Posted in English Articles  by kissdeath on May 18th, 2009
Set oRoot = GetObject(“LDAP://rootDSE“)
Set oDomain = GetObject(“LDAP://” & oRoot.Get(“defaultNamingContext”))
Set oOU=oDomain.Create(“organizationalUnit”, “ou=My Corp Users”)
oOU.SetInfo
Set oUser = oOU.Create(“User”, “cn=Director One”)
oUser.Put “sAMAccountName”, “director1″
oUser.SetInfo
oUser.givenName=”Director One”
oUser.displayName=”Director One”
oUser.title=”Managing Director”
oUser.department=”Director Dept”
oUser.mail=”director1@mycompany.com.vn
oUser.employeeID=789
SetCommonProps(oUser)
Set oUser = oOU.Create(“User”, “cn=Manager One”)
oUser.Put “sAMAccountName”, “manager1″
oUser.SetInfo
oUser.givenName=”Manager One”
oUser.displayName=”Manager One”
oUser.title=”Sales Manager”
oUser.department=”Sales & Marketing Dept”
oUser.mail=”manager1@mycompany.com.vn
oUser.employeeID=678
oUser.manager=”CN=Director One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
SetCommonProps(oUser)
Set oUser = oOU.Create(“User”, “cn=Staff One”)
oUser.Put “sAMAccountName”, “staff1″
oUser.SetInfo
oUser.givenName=”Staff One”
oUser.displayName=”Staff One”
oUser.title=”Sales Executive”
oUser.department=”Sales & Marketing Dept”
oUser.mail=”staff1@mycompany.com.vn
oUser.employeeID=123
oUser.manager=”CN=Manager One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
SetCommonProps(oUser)
Set oUser = oOU.Create(“User”, “cn=Staff Two”)
oUser.Put “sAMAccountName”, “staff2″
oUser.SetInfo
oUser.givenName=”Staff Two”
oUser.displayName=”Staff Two”
oUser.title=”Cashier”
oUser.department=”Sales & Marketing Dept”
oUser.mail=”staff2@mycompany.com.vn
oUser.employeeID=234
oUser.manager=”CN=Manager One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
SetCommonProps(oUser)
Set oUser = GetObject(“LDAP://CN=Administrator,CN=Users,DC=mycompany,DC=com,DC=vn“)
oUser.givenName=”Administrator”
oUser.displayName=”Administrator”
oUser.title=”System Admin”
oUser.department=”Director Dept”
oUser.mail=”administrator@mycompany.com.vn
oUser.employeeID=012
oUser.manager=”CN=Director One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
oUser.SetInfo
SetCommonProps(oUser)
Set oGroup = oOU.Create(“Group”, “cn=Directors”) ‘Global group creation
oGroup.Put “sAMAccountName”, “Directors”
oGroup.SetInfo
oGroup.member=”CN=Director One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
oGroup.SetInfo
Set oGroup = oOU.Create(“Group”, “cn=Chief Accountants”)
oGroup.Put “sAMAccountName”, “ChiefAccountants”
oGroup.SetInfo
oGroup.member=”CN=Manager One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
oGroup.SetInfo
Set oGroup = oOU.Create(“Group”, “cn=Accountants”) ‘Global group creation
oGroup.Put “sAMAccountName”, “Accountants”
oGroup.SetInfo
oGroup.member=”CN=Staff One,OU=My Corp Users,DC=mycompany,DC=com,DC=vn”
oGroup.SetInfo
Wscript.Echo “Users/Groups Creation Successul!”
sub SetCommonProps(oUser)
oUser.SetPassword “P@ssw0rd
oUser.AccountDisabled = False
oUser.company=”My Company”
oUser.streetAddress=”123 XYZ Street”
oUser.l=”Hanoi”
oUser.c=”VN”
oUser.telephoneNumber=”+84-4-123-45678″
oUser.mobile=”+84-9-1234-5678″
oUser.userAccountControl=66080 ’0×10220=PASSWD_NOTREQD|NORMAL_ACCOUNT|DONT_EXPIRE_PASSWD)
oUser.SetInfo
end sub

Tags: