Results 1 to 5 of 5

Thread: i have a big problem

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2001
    Location
    pakistan
    Posts
    1

    Unhappy 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
    noman

  2. #2
    Hyperactive Member Cmdr0Sunburn's Avatar
    Join Date
    May 2001
    Location
    g0t r00t?
    Posts
    461

    Unhappy

    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 {
    }

  3. #3
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    I don't understand exactly what you need to do, but if you want to search for a file:

    VB Code:
    1. Private Declare Function SearchTreeForFile Lib "imagehlp" (ByVal RootPath As String, ByVal InputPathName As String, ByVal OutputPathBuffer As String) As Long
    2. Private Const MAX_PATH = 260
    3. Private Sub Form_Load()
    4.     'KPD-Team 2000
    5.     'URL: [url]http://www.allapi.net/[/url]
    6.     'E-Mail: [email][email protected][/email]
    7.     Dim tempStr As String, Ret As Long
    8.     'create a buffer string
    9.     tempStr = String(MAX_PATH, 0)
    10.     'returns 1 when successfull, 0 when failed
    11.     Ret = SearchTreeForFile("c:\", "winword.exe", tempStr)
    12.     If Ret <> 0 Then
    13.         MsgBox "Located file at " + Left$(tempStr, InStr(1, tempStr, Chr$(0)) - 1)
    14.     Else
    15.         MsgBox "File not found!"
    16.     End If
    17. End Sub

  4. #4
    Hyperactive Member
    Join Date
    Jun 2001
    Posts
    297
    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.

  5. #5
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    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
  •  



Click Here to Expand Forum to Full Width