AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Decrypt 'UserAssist' entries

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
dinkosta



Joined: 28 Sep 2005
Posts: 39
Location: Pirot

PostPosted: Tue Apr 04, 2006 8:01 pm    Post subject: Decrypt 'UserAssist' entries Reply with quote

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
View user's profile Send private message
PhiLho



Joined: 27 Dec 2005
Posts: 6836
Location: France (near Paris)

PostPosted: Wed Apr 05, 2006 8:08 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
dinkosta



Joined: 28 Sep 2005
Posts: 39
Location: Pirot

PostPosted: Wed Apr 05, 2006 8:24 pm    Post subject: Reply with quote

Got it!
If I use 'StringMod(a_loopregname,"rot13",26-13)' it does decrypt the entries.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group