fbpx

Penetration Testing(Pen Test) The Ultimate Guide

What is penetration testing? Penetration testing is an art. You can find out a lot of techniques and understand all of the tools, but the reality is that software is complex, especially when you start putting a lot of software systems together. It’s that complexity that means that there is no one-size-fits-all solution when it … Read more

Powershell – How To – SID To User

Step 1: Domain User to SID This will give you a Domain User’s SID $objUser = New-Object System.Security.Principal.NTAccount(“DOMAIN_NAME”, “USER_NAME”) $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value Step 2: SID to Domain User This will allow you to enter a SID and find the Domain User $objSID = New-Object System.Security.Principal.SecurityIdentifier ` (“ENTER-SID-HERE”) $objUser = $objSID.Translate( [System.Security.Principal.NTAccount]) $objUser.Value Step 3: … Read more

windows script to check Server Uptime

Description Ever wanted a simple HTML report showing you the UP/DOWN status of your servers? And for a little extra flavor how long that server has been up for? Some basic disk information? 1. Download the script to your favorite location and name it Uptime.ps1 2. Open a Powershell prompt and type: Get-Help pathtoscript\Uptime.ps1 –Full … Read more