Skip to content

Instantly share code, notes, and snippets.

View pabumake's full-sized avatar

pabumake pabumake

View GitHub Profile
@pabumake
pabumake / windowToolbox-checkNremove.ps1
Last active June 4, 2024 07:55
Checks for windowToolbox Malware/Trojan and Removes files ( Work in progress, initial release )
# Self-elevate the script if required
# if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) {
# if ([int](Get-CimInstance -Class Win32_OperatingSystem | Select-Object -ExpandProperty BuildNumber) -ge 6000) {
# $CommandLine = "-File `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments
# Start-Process -FilePath PowerShell.exe -Verb Runas -ArgumentList $CommandLine
# Exit
# }
# }
# windowToolboxMalwareCheck.ps1
@pabumake
pabumake / shiny_hunt.js
Last active March 10, 2022 08:29 — forked from OscarPuentee/shiny_hunt.js
Scriptable code for the Pokemon shiny hunting iOS widget
// This script was created by Oscar Puente.
// Important notes:
// 1. Available colors are black, blue, brown, cyan, green, orange, purple, red, white and yellow.
// 2. The language used is the device language. Current languages available are spanish, english and german (added by pabumake).
// If your language is not any of those, it defaults to english.
// 3. The Pokemon list delimits which pokemon can appear based on their pokedex number.
// Support for the 8th generation in the API is currently limited and it may cause errors due to missing info.
// It is strongly advised to keep the pokemon list between the first 7 generations (1-807).