Active Directory security interesting links This is 3 very interesting links/articles about Active Directory and authentication : CredCrack : this is a python script that uses the powershell script Invoke-Mimikatz.ps1. CredCrack is a fast and stealthy credential harvester. It exfiltrates
Testing tool for DNS migrations
Create your own and free video surveillance system
Monitor and graph your Linux Bind servers with Grafana
Bind : Monitor performances
Create dynamic SCCM collections
Password database : multi-user repository and AD auth
Audit the Active Directory FREE
Query tool GUI (Active Directory and SQL)
Query a SQL database
This script can be used to query an SQL database Script : $SqlConnection = New-Object System.Data.SqlClient.SqlConnection $SqlConnection.ConnectionString = “Server=DBServerHostname;Database=master;Integrated Security=True” $SqlConnection.Open() $SqlCmd = New-Object System.Data.SqlClient.SqlCommand $SqlCmd.CommandText = “select * from DatabaseName” $SqlCmd.Connection = $SqlConnection $reader = $SqlCmd.ExecuteReader() $Counter = $Reader.FieldCount