 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
dinkosta
Joined: 28 Sep 2005 Posts: 39 Location: Pirot
|
Posted: Tue Apr 04, 2006 8:01 pm Post subject: Decrypt 'UserAssist' entries |
|
|
How can I decrypt the registry entries from 'UserAssist', of course without changing anything in the registry. These entries are encrypted with ROT13, AFAIK. The code I have is bellow:
| Code: |
Gui, Add, ListView, vLst w700 h500, Name|Data
Loop,HKCU, Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\{5E6AB780-7743-11CF-A12B-00AA004AE837}\count
{
RegRead, rval
LV_Add("",a_loopregname,rval)
}
LV_ModifyCol(1,"autohdr")
LV_ModifyCol(2,"180")
Gui, Show
return |
|
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6836 Location: France (near Paris)
|
Posted: Wed Apr 05, 2006 8:08 am Post subject: |
|
|
Search (or download) StringMod in the forum, this function (at least one of its avatars...) has a ROT13 encode/decode functionnality. _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
dinkosta
Joined: 28 Sep 2005 Posts: 39 Location: Pirot
|
Posted: Wed Apr 05, 2006 8:24 pm Post subject: |
|
|
Got it!
If I use 'StringMod(a_loopregname,"rot13",26-13)' it does decrypt the entries. |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|