This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Merges two CSV files with common attribute set | |
.EXAMPLE | |
./mergeCompareCsv.ps1 ./users1.csv ./users2.csv -outfile merged.csv -Delimiter ';' | |
#> | |
[CmdletBinding()] | |
Param ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
# |
OlderNewer