mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-09-11 01:48:42 -06:00
First Basic Implementation of Remote Script Execution Functionality
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
# 🚨 WARNING 🚨
|
||||
# This script contains 200mg of raw Gen-Z energy.
|
||||
# Proceed with caution.
|
||||
|
||||
# Function name is cursed but still works.
|
||||
# PowerShell lets you use dashes, so let's abuse that.
|
||||
function Summon-Rizzler {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Deploys peak sigma grindset energy.
|
||||
|
||||
.DESCRIPTION
|
||||
This function takes no parameters, just vibes.
|
||||
Outputs a "Hello, World!" message... but with ✨style✨
|
||||
#>
|
||||
|
||||
# Variables nobody asked for:
|
||||
$vibeCheck = "Hello, World!"
|
||||
$npcDialogue = "💀 bruh moment detected 💀"
|
||||
$ohioMode = $true
|
||||
$skibidiRizzGyatt = 69420 # totally necessary
|
||||
|
||||
# Drop the hello world
|
||||
Write-Host "$vibeCheck (powered by $skibidiRizzGyatt braincells)" -ForegroundColor Cyan
|
||||
|
||||
# Sprinkle in random zoomer nonsense if ohioMode is on
|
||||
if ($ohioMode) {
|
||||
Write-Host $npcDialogue -ForegroundColor Magenta
|
||||
}
|
||||
}
|
||||
|
||||
# 🚀 Deploy the sigma energy
|
||||
Summon-Rizzler
|
5
Scripts/Examples/Write Canary to C Drive Root.ps1
Normal file
5
Scripts/Examples/Write Canary to C Drive Root.ps1
Normal file
@@ -0,0 +1,5 @@
|
||||
# Define the file path
|
||||
$filePath = "C:\Canary.txt"
|
||||
|
||||
# Write some content into the file
|
||||
"SYSTEM Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8
|
8
Scripts/Examples/Write Canary to CurrentUser Desktop.ps1
Normal file
8
Scripts/Examples/Write Canary to CurrentUser Desktop.ps1
Normal file
@@ -0,0 +1,8 @@
|
||||
# Dynamically get the current user's Desktop path
|
||||
$desktopPath = [Environment]::GetFolderPath('Desktop')
|
||||
|
||||
# Define the file path relative to the Desktop
|
||||
$filePath = Join-Path $desktopPath "Canary.txt"
|
||||
|
||||
# Write some content into the file
|
||||
"USER Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8
|
Reference in New Issue
Block a user