Skip to content

Instantly share code, notes, and snippets.

View Iemand005's full-sized avatar
🏠
Working from home

Lasse Lauwerys Iemand005

🏠
Working from home
View GitHub Profile
@guillaC
guillaC / CreateSecretWindowsFolders.ps1
Last active February 17, 2026 07:54
This PowerShell script explores CLSID registry keys in "HKLM:\SOFTWARE\Classes\CLSID", creating directories based on these values. Directories are within a "folders" subfolder, named "CLSID.CLSID".
$registryPath = "HKLM:\SOFTWARE\Classes\CLSID"
$clsidKeys = Get-ChildItem -Path $registryPath
foreach ($clsidKey in $clsidKeys) {
$name = $clsidKey.PSChildName
$directoryPath = ".\folders\$name.$name"
if (-not (Test-Path -Path $directoryPath)) {
New-Item -Path $directoryPath -ItemType Directory
Write-Host "créé : $directoryPath"
@hackermondev
hackermondev / api endpoints.md
Last active February 26, 2026 13:34
discord api endpoints

List of every single Discord API endpoint used on the client

Last updated: July 22, 2025

https://discord.com/api/v9

Endpoint Name path
const localStorage = document.body.appendChild(document.createElement("iframe")).contentWindow.localStorage;
const tokens = JSON.parse(localStorage.tokens);
const email = localStorage.email_cache.slice(1, -1);
const users = JSON.parse(localStorage.MultiAccountStore)._state.users;
for (const [userId, token] of Object.entries(tokens)) {
/* console.log(`Discord ID: ${userId}, Token: ${token}`); */
let avatar = "https://discord.com/assets/1f0bfc0865d324c2587920a7d80c609b.png";
@danzek
danzek / clsid_list.txt
Last active February 17, 2026 07:15
Common Windows CLSID's
# use shell::: with CLSID to launch location from run dialog
# e.g., shell:::{21EC2020-3AEA-1069-A2DD-08002B30309D}
#
# retrieved 20170719 from http://krypsec.com/all-clsid-for-windows-to-used-in-ethical-hacking-and-batch-programming/
#
# see also:
# https://www.sysnative.com/forums/windows-8-windows-rt-tutorials/12157-shells-shortcuts-clsid-listing-windows-10-8-1-8-7-a.html
# http://www.geoffchappell.com/studies/windows/shell/explorer/cmdline.htm
CLSID_ControlPanel {21EC2020-3AEA-1069-A2DD-08002B30309D}
@keijiro
keijiro / hide_pen_cursor.md
Last active April 21, 2025 19:40
How to hide pen cursor in Windows 10
  1. Launch regedit.exe
  2. Edit the registry key HKEY_CURRENT_USER\Control Panel\Cursors\PenVisualization, or create a DWORD key if it doesn't exist.
  3. Set the value to 0.
  4. Restart Windows.