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 

Spyware DLL ?
Goto page Previous  1, 2
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat
View previous topic :: View next topic  
Author Message
SKAN



Joined: 26 Dec 2005
Posts: 5574

PostPosted: Mon Aug 13, 2007 8:02 am    Post subject: Reply with quote

Sean wrote:
Where did you perform the scan from?


E:\ XP! All the partitions are FAT32 and so all files are accessible in all OS.

Rolling Eyes
Back to top
View user's profile Send private message
Sean



Joined: 12 Feb 2007
Posts: 1240

PostPosted: Mon Aug 13, 2007 8:33 am    Post subject: Reply with quote

corrupt wrote:
I may have missed a detail somewhere but, out of curiosity, why would you guess D:\ when the screenshot posted looks like it's from XP?

There wasn't any particular reason. It was just a consequence of the assumption that RKR behaved correctly. And, I didn't pay attention to the window's frame.
Back to top
View user's profile Send private message
Sean



Joined: 12 Feb 2007
Posts: 1240

PostPosted: Mon Aug 13, 2007 8:40 am    Post subject: Reply with quote

Skan wrote:
E:\ XP! All the partitions are FAT32 and so all files are accessible in all OS.

OK, looks like there really is a glitch in RKR. I found two threads on it, one for FAT and one for NTFS.
Could you upload a (partition) boot sector of E: ? You can obtain it using FileHelper.ahk:
http://www.autohotkey.com/forum/topic19608.html

Code:
#Include FileHelper.ahk

If !(1 + hVol := CreateFile("\\.\E:", 3, 0x80000000, 3)) || !(1 + hFile := CreateFile(A_ScriptDir . "\pbs.bin", 2))
   ExitApp
VarSetCapacity(PBS, 512)
ReadFile( hVol, &PBS, 512)
WriteFile(hFile, &PBS, 512)
CloseHandle(hVol)
CloseHandle(hFile)
Back to top
View user's profile Send private message
SKAN



Joined: 26 Dec 2005
Posts: 5574

PostPosted: Mon Aug 13, 2007 9:24 am    Post subject: Reply with quote

Sean wrote:
Could you upload a (partition) boot sector of E: ? You can obtain it using FileHelper.ahk:

Here: pbs.bin Rolling Eyes

Thanks for your efforts Sean. Smile
Back to top
View user's profile Send private message
Sean



Joined: 12 Feb 2007
Posts: 1240

PostPosted: Mon Aug 13, 2007 10:19 am    Post subject: Reply with quote

Skan wrote:
Here: pbs.bin

Oops, not here, obviously I'm not the author of RKR.
But thanks for the PBS anyway, it was interesting.
I forgot to post the link, sorry.
http://forum.sysinternals.com/forum_posts.asp?TID=5279

BTW, if D: is also FAT32 and could be detected by RKR, might try to compare the PBSs of D: and E: and tweak that of E: accordingly to that of D:, but there exists a risk with that of course.
Back to top
View user's profile Send private message
SKAN



Joined: 26 Dec 2005
Posts: 5574

PostPosted: Mon Aug 13, 2007 2:36 pm    Post subject: Reply with quote

Sean wrote:
Oops, not here, obviously I'm not the author of RKR.


Sorry! Very Happy
Back to top
View user's profile Send private message
widow
Guest





PostPosted: Tue Apr 15, 2008 2:26 am    Post subject: Re: Spyware DLL ? Reply with quote

SKAN wrote:

Can anybody throw some light on what this DLL could be ?.. and whether it is safe ?

Regards. Smile
I can not guarantee for 100% because there some assembler code i didnt follow. I took alook in 15m in assembler mode and it doesnt seems like a mal/spy ware to me. I have seem alot of them.

No weird func's/modules and it isnt crypted either.

But safe i dont know, there is probably some bugs worst case schenario is like your parent+the process you hiding hungs.
Back to top
m^2



Joined: 28 Feb 2008
Posts: 40
Location: Krk, PL

PostPosted: Tue Apr 15, 2008 7:46 am    Post subject: Re: Spyware DLL ? Reply with quote

widow wrote:
SKAN wrote:

Can anybody throw some light on what this DLL could be ?.. and whether it is safe ?

Regards. Smile
I can not guarantee for 100% because there some assembler code i didnt follow. I took alook in 15m in assembler mode and it doesnt seems like a mal/spy ware to me. I have seem alot of them.

No weird func's/modules and it isnt crypted either.

But safe i dont know, there is probably some bugs worst case schenario is like your parent+the process you hiding hungs.

Nope. The worst case is another process crash. Does anybody here have Thinstall? I guess that Thinstalled programs may have problems.

I wonder how does it work...did anybody find out? Quick look:
1. It's not the codeproject thing, because it cheats all processes, not only Windows Task Manager.
2. Rootkit Unhooker finds such process, but marks as visible, so it's not detached from processes list.
3. It injects itself to all processes.
4. No code hooks.

I have to spend more time on it later. Smile
_________________
Waiting for Windows 8...


Last edited by m^2 on Tue Apr 15, 2008 8:15 am; edited 1 time in total
Back to top
View user's profile Send private message
Guest






PostPosted: Tue Apr 15, 2008 8:13 am    Post subject: Re: Spyware DLL ? Reply with quote

m^2 wrote:

Nope. The worst case is another process crash. Does anybody here have Thinstall? I guess that Thinstalled programs may have problems.
Not if you dont do anything wrong with the parameters to the dll from the script, and even then its a long shot.
Back to top
m^2



Joined: 28 Feb 2008
Posts: 40
Location: Krk, PL

PostPosted: Tue Apr 15, 2008 8:18 am    Post subject: Re: Spyware DLL ? Reply with quote

Anonymous wrote:
m^2 wrote:

Nope. The worst case is another process crash. Does anybody here have Thinstall? I guess that Thinstalled programs may have problems.
Not if you dont do anything wrong with the parameters to the dll from the script, and even then its a long shot.

It injects itself to all processes, so if it's buggy, it can crash anyone.
_________________
Waiting for Windows 8...
Back to top
View user's profile Send private message
Guest






PostPosted: Tue Apr 15, 2008 8:23 am    Post subject: Re: Spyware DLL ? Reply with quote

m^2 wrote:
Anonymous wrote:
m^2 wrote:

Nope. The worst case is another process crash. Does anybody here have Thinstall? I guess that Thinstalled programs may have problems.
Not if you dont do anything wrong with the parameters to the dll from the script, and even then its a long shot.

It injects itself to all processes, so if it's buggy, it can crash anyone.
missed that. obv you right if its true
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
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