Brian Steinmeyer

Author's posts

Hacking Windows Passwords

If you’ve ever been in a situation where you didn’t know a password to login to a windows computer then there are several methods you can use. These methods require local access to a computer and work on workgroup as well as domain computers. However, it is possible to extend your access throughout a domain …

Continue reading

Recovery Console XP Password Hack

The recovery console for Windows XP requires you to enter the the local administrator password in order to access it. However, if you do not know the password you will not be able to access the recovery console… That is unless you know this little trick. Obtain a Windows 2000 installation or boot disk then …

Continue reading

EnumerateComputersByOU.vbs

‘========================================================================= ‘ EnumerateComputersByOU.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Dinstinguised Name of the Container/Organizational ‘ Unit to the Function, and it’ll return all of the Computers Within. ‘ EXAMPLE: strCompPath = “LDAP://CN=Computers,DC=domain,DC=com” ‘ strCompPath = “CN=Computers,DC=domain,DC=com” ‘ strCompPath = …

Continue reading

ListComputerOS.vbs

‘========================================================================= ‘ ListComputerOS.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Distinguished Name of the Computer Object or ‘ Container/Organizational Unit to the Function, and it’ll return the Computer Name ‘ and Operating System as Listed In Active Directory. ‘ EXAMPLE: …

Continue reading

EnumerateContactsByOU.vbs

‘========================================================================= ‘ EnumerateContactsByOU.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Dinstinguised Name of the Container/Organizational ‘ Unit to the Function, and it’ll return all of the Contacts Within. ‘ EXAMPLE: strContactPath = “LDAP://CN=Users,DC=domain,DC=com” ‘ strContactPath = “CN=Users,DC=domain,DC=com” ‘ strContactPath = …

Continue reading

GroupBackupRestore.vbs

‘========================================================================= ‘ GroupBackupRestore.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: This Script Will Bulk Backup Groups to a Text File and Can Also ‘ Restore the Groups After a Backup. It is Useful to Restore Accidentally ‘ Deleted Groups, Migrating Groups Across Domains, and …

Continue reading

GroupModifyMessageRestrictions.vbs

‘========================================================================= ‘ GroupModifyMessageRestrictions.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Modifies Messages Restrictions on Email Enabled Groups as Shown ‘ on the Exchange General Tab under the Properties. Set the Group Path, ‘ Whether to Only Accept Messages from Authenticated Users, the Restriction ‘ …

Continue reading

GroupModifyType.vbs

‘========================================================================= ‘ GroupModifyType.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Dinstinguished Name of the Group, the Group ‘ Type (Global, Local, Universal), and Whether It Should Be Security Enabled ‘ and the Function Will Modify the Group Type. To Bulk …

Continue reading

EnumerateUsersByOU.vbs

‘========================================================================= ‘ EnumerateUsersByOU.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Dinstinguished Name of the Container/Organizational ‘ Unit to the Function, and it’ll return all of the Users Within. ‘ EXAMPLE: strUserPath = “LDAP://CN=Users,DC=domain,DC=com” ‘ strUserPath = “CN=Users,DC=domain,DC=com” ‘========================================================================= Option Explicit …

Continue reading

ListUserForwardTo.vbs

‘========================================================================= ‘ ListUserForwardTo.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: In AD the altRecipient Attribute aka Forward To, is the Email ‘ Address a User’s Email Forwards to. ‘ Pass the ADsPath or Dinstinguised Name of the User or ‘ Container/Organizational Unit to the …

Continue reading