Just a collection of PowerShell scripts that I wrote or borrowed for various purposes.
This script is built to convert CSV files to CTFd JSON format. The tricky thing here is making a CSV become an array capable JSON file, so a lot of manual scripting needs to be accomplished.
Some of these functions can be pulled out and used for other purposes.
Changes the computer name to be "Windows-[Last 6 of MAC]" and then joins to a domain using Admin credentials
You will need to manually change the domain name and domain admin username.
This script accomplishes a few things:
- Prompts user for the IP Range
- Attempts a connection on DNS, RDP, WinRM, HTTP, and SMB
- Stores all the results into a PowerShell object with properties
- Multi-threaded based on the host's memory and won't exceed 70%
- Outputs to a XML, HTML, and JSON
Credit to https://blog.netwrix.com/2018/06/07/how-to-create-new-active-directory-users-with-powershell/
A simple script for creating Active Directory users with a CSV files. This will need to be ran on the Domain Controller. You will also need to make a CSV will the following headers:
- username
- password
- firstname
- lastname
- department
Credit to https://pen-testing.sans.org/blog/2017/03/06/pen-test-poster-white-board-powershell-ping-sweeper/
The most basic form of a PowerShell ping-sweep on a /24 network.
Using workflows, this takes a ping-sweep a bit further and launches multiple ping-sweeps in parallel (Multi-threaded PowerShell O.o )
pingSweepOsDetect.ps1 - The if/else is broken I think - I'll come back to this later... probably, lol