Skip to content

Instantly share code, notes, and snippets.

View obsti8383's full-sized avatar

obsti8383 obsti8383

View GitHub Profile
<#
.SYNOPSIS
Merges two CSV files with common attribute set
.EXAMPLE
./mergeCompareCsv.ps1 ./users1.csv ./users2.csv -outfile merged.csv -Delimiter ';'
#>
[CmdletBinding()]
Param (
@obsti8383
obsti8383 / udp_nat_dos.ps1
Last active April 2, 2023 12:44
Sends many UDP packets to different target IPs. Tries to overhelm the NAT translation tables of NAT routers
# Sends many UDP packets to different target IPs. Tries to overhelm the NAT translation tables of
# NAT routers
#
# Example calls:
# Linux with installed Powershell: pwsh udp_nat_dos.ps1
# Windows .\udp_nat_dos.ps1
#
# Code adapted from https://www.msxfaq.de/code/powershell/psudp.htm
# Original source seems to be: http://pshscripts.blogspot.de/2008/12/send-udpdatagramps1.html
#