|
-
Jul 4th, 2001, 05:57 PM
#1
Thread Starter
New Member
i have a big problem
hi
first all sorry for my poor english ....
i am now starting vb 6.0 i have'nt any extra knowledge in vb but i knew little bit
so i have a problem , the problem is that i am using LAN in my LAN aperson is started hacking and i know the person he made a software of hacking he hack every one in our LAN i heared that the person who hack all of us . he foundd a source code of hacking software(through network) and he made it . the problem is that when we run the .exe the .exe is i dont know where the .exe is gone in my system and i know im hacked by him i mean to say he share few folder in sharing if any one run the .exe nothing is happen but the .exe is gone in the system who run the .exe
so could any one help me how can i find out where the .exe is in my system ..........................!
the software is made in vb 6.0
have u people got any software who can identify where the .exe is or have u got any software which when we put .exe on that software it tells how many file in that .exe or give file names
plz plz plz help me i m very panic .......................
i dont know how to get rid of it that man .. . ..
plz reply me on this email address
[email protected]
thanks
-
Jul 4th, 2001, 08:37 PM
#2
Hyperactive Member
sorry i cant help ya.....
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
-
Jul 4th, 2001, 09:45 PM
#3
Registered User
I don't understand exactly what you need to do, but if you want to search for a file:
VB Code:
Private Declare Function SearchTreeForFile Lib "imagehlp" (ByVal RootPath As String, ByVal InputPathName As String, ByVal OutputPathBuffer As String) As Long
Private Const MAX_PATH = 260
Private Sub Form_Load()
'KPD-Team 2000
'URL: [url]http://www.allapi.net/[/url]
Dim tempStr As String, Ret As Long
'create a buffer string
tempStr = String(MAX_PATH, 0)
'returns 1 when successfull, 0 when failed
Ret = SearchTreeForFile("c:\", "winword.exe", tempStr)
If Ret <> 0 Then
MsgBox "Located file at " + Left$(tempStr, InStr(1, tempStr, Chr$(0)) - 1)
Else
MsgBox "File not found!"
End If
End Sub
-
Jul 4th, 2001, 09:50 PM
#4
Hyperactive Member
if i understand correctly I think you have a trojan which to find out what the exe is go to start>runand type 'msconfig' select selective startup then click the startup tab. Go threw that list and look for anything with a odd name and is pointing to mostly likely the windows/system path.
-
Jul 4th, 2001, 10:16 PM
#5
Registered User
have u people got any software who can identify where the .exe is or have u got any software which when we put .exe on that software it tells how many file in that .exe or give file names
Once/if you know the name of the exe you can use the code I posted, which is the software to do what you ask.
I assume know now a little about how to write code to get it working. If you have any problems, post them.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|