Results 1 to 8 of 8
  1. #1
    T0P-CENT's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    88
    Reputation
    14
    Thanks
    17
    My Mood
    Stressed

    [HELP] How to hide a file in your project

    for example i add a dll in my project and be able to inject it
    i used search button , also adding a process won't work
    thanks in advance,.

  2. #2
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Hmmmm, Use Ilmerge for adding the dll to your .exe, however I am not certain your intentions, in which case it really depends.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. The Following User Says Thank You to NextGen1 For This Useful Post:

    T0P-CENT (02-03-2011)

  4. #3
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Go to:
    Project>Add reference...
    and then go to the 'Browse' tab. Select your DLL Class and click open.

    Done.
    I'm not sure if that's what you asked for..

  5. #4
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    He wants to make a loader...



  6. #5
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by T0P-CENT View Post
    for example i add a dll in my project and be able to inject it
    i used search button , also adding a process won't work
    thanks in advance,.
    .....................

    Just wait for OP's reply.



  7. The Following User Says Thank You to Blubb1337 For This Useful Post:

    NextGen1 (02-03-2011)

  8. #6
    Deto's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    you could add it to resource and drop it ?

    Dim FileA = File.ReadAllBytes(My.Resource.File)
    File.WriteAllBytes(Application.StarupPath & "\Droped File", FileA)
    Process.Start(Application.StarupPath & "\Droped File)

  9. The Following User Says Thank You to Deto For This Useful Post:

    T0P-CENT (02-03-2011)

  10. #7
    T0P-CENT's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    88
    Reputation
    14
    Thanks
    17
    My Mood
    Stressed
    thanks , i will try both nextgen and deto's methods , i never thought that we can write the files in resources also i will try ILMerge

  11. #8
    Deto's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    my version maybe detected as a virus though because you are writing bytes from a resource >.<