Skip to content

Instantly share code, notes, and snippets.

View CanXploit's full-sized avatar

Just Xploit CanXploit

View GitHub Profile
@CanXploit
CanXploit / typeracer_autoType.js
Created January 17, 2026 10:29
Auto type hack speed on typeracer.com 430 WPM !!
var container = document.querySelector('table.inputPanel div > div');
var words = [];
if (container) {
let fullText = '';
container.querySelectorAll('span').forEach(span => {
fullText += span.textContent;
});
words = fullText.trim().split(/\s+/);
}
@CanXploit
CanXploit / UltraClean.ps1
Created January 17, 2026 09:04
PowerShell script to clean temporary files, Prefetch, Windows Update cache, and Recycle Bin safely
$Paths = @(
"$env:LOCALAPPDATA\Temp",
"$env:TEMP",
"C:\Windows\Prefetch",
"C:\Windows\SoftwareDistribution\Download",
"C:\Windows\Temp"
)
foreach ($path in $Paths) {
Get-ChildItem -Path $path -Recurse -Force -ErrorAction SilentlyContinue | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue