SS Technology Forum

SS Technology Forum

Friday, March 30, 2018

PoweShell TTUC (Tips, Tricks and Useful Commands) #114 – Move Files and Folders

PowerShell TTUC (Tips, Tricks and Useful Commands) - #114 Create a folder and assign appreciate permission using PowerShell $OutputLocation = "C:\Temp\Folder1" $adminUser = "Domain\Admin1" # if (-not(test-path $OutputLocaiton))  #verify the existance of "C:\Temp\Folder1" fodler {     #if not create a new folder     New-Item -ItemType directory -Path $OutputLocaiton | out-null     $cACL = Get-Acl $OutputLocaiton     $nACL = New-Object  system.security.accesscontrol.filesystemaccessrule($adminUser,"Fullcontrol","Allow")     $cACL.SetAccessRule($nACL)     Set-Acl $OutputLocaiton $cACL } Reference -  How to Handle NTFS Folder Permissions, Security Descriptors and ACLs in PowerShell...

Monday, March 26, 2018

Update Group Membership – PowerShell Script

If you have multiple domains or performing a user or group migration, you may need to manually update (depend on your scenario) the source or target group membership.  This script can be used to update group membership based on source user’s group membership.  The input for this script the user name (sAMAccountName) and it assumes that the source and target sAMAccountName are the same.  Input file (Users.csv) Format: Script validates users in the source domain and collect “memberof” details and then add the target user (migrated user) to the same group. At the end of the operation, the source...

Friday, March 23, 2018

Group Membership Report – PowerShell Script

Another “Group Membership Report” script.  You can see some of the previous versions here - http://portal.sivarajan.com/2010/08/list-group-members-in-active.html. This script provides the group membership details based on user name.  You can include all user names in an input file (Users.csv) in the following format: Script uses Get-ADUser cmdlet to validate the user first then get the user membership using the “memberof” properties.  Output/report will be in the GMReport_$Cdate.csv file.  Error message will be captured in Error_$Cdate.csv file. Script: # #Group Membership Report – PowerShell...

Friday, December 22, 2017

Advanced Threat Analytics–Attack Simulation and Demo – Part1

Advanced Threat Analytics–Attack Simulation and Demo–Part1 Advanced Threat Analytics–Attack Simulation and Demo–Part2 Advanced Threat Analytics–Attack Simulation and Demo–Part3 Microsoft Advanced Threat Analytics (ATA) is an user and entity behavior analytics solution to identify and protect protect organizations from advanced targeted attacks (APTs).  You can read more information about Microsoft Advanced Threat Analytics (ATA) here.  The purpose of this blog is to provide a few methods which can be used to simulate and demonstrate some of the basic attacks for demo and testing purpose. Suspicious Activity Simulation #1 – ATA...

Saturday, November 11, 2017

Configuring Deepnet Security SafeID OATH Token with Microsoft Azure MFA Server

Related Blogs: Configuring YubiKey / Yubico OATH Token with Microsoft Azure MFA Server - http://portal.sivarajan.com/2016/06/configuring-yubikey-yubico-oath-token.html Azure MFA with pGina and Local Authentication - http://portal.sivarajan.com/2015/09/azure-mfa-with-pgina.html Azure MFA Server –Authentication Types (Part I) - http://portal.sivarajan.com/2016/05/azure-mfa-serverauthentication-type.html Azure MFA Server –Authentication Types (Part II) - http://portal.sivarajan.com/2016/06/azure-mfa-server-authentication-type.html Microsoft Azure MFA on-premises server supports a time based OATH (OATH...

Friday, October 13, 2017

Configuring YubiKey / Yubico OATH Token with Microsoft Azure MFA Server

Related blogs: Configuring Deepnet Security SafeID OATH Token with Microsoft Azure MFA Server  - http://portal.sivarajan.com/2016/07/configuring-deepnet-security-safeid.html Azure MFA with pGina and Local Authentication - http://portal.sivarajan.com/2015/09/azure-mfa-with-pgina.html Azure MFA Server –Authentication Types (Part I) - http://portal.sivarajan.com/2016/05/azure-mfa-serverauthentication-type.html Azure MFA Server –Authentication Types (Part II) - http://portal.sivarajan.com/2016/06/azure-mfa-server-authentication-type.html Microsoft Azure MFA on-premises server supports a time based OATH (OATH – TOTP) third...

Page 1 of 6312345Next

Popular Posts

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More