I found the neat project that is all PowerShell scripts the a Security Professional can use as part of their toolbox
To find out more go here
I found the neat project that is all PowerShell scripts the a Security Professional can use as part of their toolbox
To find out more go here
Here a a few PowerShell script that I use to look al logs and user accounts.
To finding the latest logon time
•Get-QADComputer -ComputerRole DomainController | foreach { (Get-QADUser -Service $_.Name -SamAccountName username).LastLogon } | Measure-Latest
•The following example demonstrates how to find inactive user accounts:
•Search-ADAccount -AccountInactive | where {$_.ObjectClass -eq ‘user’} | FT Name,ObjectClass –A
•The following example demonstrates how to find user accounts that have been inactive for 90 days:
•Search-ADAccount -AccountInactive -TimeSpan 90.00:00:00 | where {$_.ObjectClass -eq ‘user’} | FT Name,ObjectClass –A
Retrieving Local Security Log Information
On a local computer, the PowerShell Get-EventLog cmdlet
•get-eventlog-list
•get-eventlog -list |<br>where {$_.logdisplayname -eq `<br>”security”}
Find all users who have “Password Never Expires
Search-ADAccount -PasswordNeverExpires | FT Name,ObjectClass –A
To Determine Who Has Never Logged On
get-aduser -f {-not ( lastlogontimestamp -like “*”) -and (enabled -eq $true)}
Find the Location of a Locked-Out User (jferron)
$DomainControllers = Get-ADDomainController -Filter *
Foreach($DC in $DomainControllers)
{
Get-ADUser -Identity jferron -Server $DC.Hostname `
-Properties AccountLockoutTime,LastBadPasswordAttempt,BadPwdCount,LockedOut
}
Here is a list of updated books by subject area you can download.
Having a DHCP Server on you network that not managed by a IT department is a security issue.
Microsoft has released a new tool for free that you can download that will show you all your DHCP servers that are Authorized and then show you what is not approved This is a Graphic Tool that test by subnet.
Rogue detection tool is a GUI tool that checks if there are any rogue DHCP servers in the local subnet.
See what you have
Choose your network
Following are the features with this tool:
1. The tool can be run one time or can be scheduled to run at specified interval.
2. Can be run on a specified interface by selecting one of the discovered interfaces.
3. Retrieves all the authorized DHCP servers in the forest and displays them.
4. Ability to validate (not Authorize in AD) a DHCP server which is not rogue and persist this information
5. Minimize the tool, which makes it invisible. A tray icon will be present which would display the status.
You can download this tool here
On the Microsoft Virtual Academy site which is free, there is a bunch of training on PowerShell. since I been talk about this for a while her a blog about this.
Getting Started with PowerShell 3.0 Jump Start
This Jump Start is designed to teach the busy IT professionals, admins, and help desk persons about how to use PowerShell to improve management capabilities, automate redundant tasks, and manage the environment in scale. Learn how PowerShell works and how to make PowerShell work for you from the experts Jeffrey Snover, the inventor of PowerShell, and Jason Helmick, Senior Technologist at Concentrated Technology.
Instructors | Jeffrey Snover – Distinguished Engineer and Lead Architect; Consultant; Jason Helmick – Senior Technologist
Associated Course(s) | 20412: Configuring Advanced Windows Server 2012 Services; 20411: Administering Windows Server 2012; 20410: Installing and Configuring Windows Server 2012
Link is Here
Advanced Tools & Scripting with PowerShell 3.0 Jump Start
IT pros, take this advanced PowerShell course to find out how to turn your real time management and automation scripts into useful reusable tools and cmdlets. You’ll learn the best patterns and practices for building and maintaining tools and you’ll pick up some special tips and tricks along the way from the architect and inventor of PowerShell, Distinguished Engineer Jeffrey Snover, and IT pro, Jason Helmick.
Instructors | Jeffrey Snover – Distinguished Engineer and Lead Architect; Consultant; Jason Helmick – Senior Technologist
Associated Course(s) | 20412: Configuring Advanced Windows Server 2012 Services; 20411: Administering Windows Server 2012; 20410: Installing and Configuring Windows Server 2012
Link is Here
On the Microsoft MVA there a a great basic course on security, This course you can prepare for MTA Exam 98-367. Build an understanding of security layers, operating system security, network security, and security software. The course leverages Microsoft Official Academic Course (MOAC) material for this exam.
Topics include
Authentication, Authorization, and Accounting
Understanding Security Policies
Understanding Network Security
Protecting the Server and Client
The link is here for taking training
FREE Microsoft eBooks! Who doesn’t love FREE Microsoft eBooks? Well, for the past few years, I’ve provided posts containing almost 150 FREE Microsoft eBooks and my readers, new and existing, have loved these posts so much that they downloaded over 3.5 Million free eBooks as of last June, including over 1,000,000 in a single week last year (and many, many more since then).
This is a Post copied from Eric Ligman at Microsoft
While at TechEd NA 2014, you were hungry for more info on PowerShell, Hyper-V and Windows 8.1, to name just a few. Now through July 12, 2014, save 40% by applying discount code TECHED during checkout. And if that’s not enough, the Microsoft Press Store offers FREE shipping to US addresses, all the time. And if you’ve ever purchased one of these books, you’ll know just how heavy these can get – and heavy typically equals expensive shipping!
Want to take it with you wherever you go? The Microsoft Press Store has the flexibility to make that happen. This 40% discount also applies to your purchase of an eBook… and you’ll get three formats for use on your devices.
Ready to save? We thought so. Get your discount HERE and enjoy your new book!
In the last few months we see a uptick in Big Web sites being hacked – We saw last month AOL compromised. AOL Inc urged its tens of millions of email account holders to change their passwords and security questions, saying a cyber attack compromised about 2 percent of its accounts
Yesterday EBAY announced that attack carried months had compromised customer data. and EBAY urged 145 million users of its online commerce platform to change their passwords.
You should NOT use the same password for all you sites, you need to use different password for your web sites. However when I say this to user, they say it to hard to do.
I have been a user of some technology for years that helps user accomplish this task. There are Password Manager application that will save all your password in an encrypted system and you just need to remember the master password.
While Password Manager applications will not stop web sited from being hacked they will limit the possibility of a user name/ password that you use on 1 site being used on another site.
You can have each site with very strong password that are unique to each application.
For the purpose of this Blog i will show you a product call Roboform.
to use Roboform you do the following steps
Step 1 Install software
Step 2 Create a Master Password – Your Master Password is the one password you’ll need to remember. This password will encrypt and secure all of your RoboForm data and do not forget it.
Step 3 Go to a web site and add you login info RoboForm automatically offers to save your Login information. It’s that simple.
Step 4 Now when you go to the site again Roboform will enter the login and password automatically.
Some other features for you include
Generate really Strong Passwords that you can use 1 per site and not have to remember
You can find out more about Roboform Here
FYI I have nothing to do with Roboform, I do not sell it, i just use it