DLL Hiding menu

User Tag List

Thread: DLL Hiding

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 50
  1. #31
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Hahahahahahahahahaha

    DLL Hiding
  2. #32
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I just shit myself laughing.

    Rofl. The compiler IS good at optimizing. However; human intervention can quite often make that optimization many times better. (Eg; inlining functions)

    Stop being a damned retard, and actually go read up on what inlining is actually used for, then find some DECENT examples. Next time I see you post some stupid shit like that; it's going to be infractions. (Also; asking a GameDev.net's late-hour group on IRC about stuff like that [and getting only 2 other idiots agreeing] is by no means any form of agreement. Go ask an MS developer, or any of the *nix contributors.)

  3. #33
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lets see what 2girls1dog.com has to say about you:

    [23:33] <Rambo666> I know where your house lives !
    [23:33] <K1ll4> My cat is a dog lol
    [23:33] <flo8464> Yo guyz what do you think about inlining and Dmxsbb ?
    [23:34] <M0nsterc0ck> Me heared this is very good really
    [23:34] <Boobs4free> Get your free XXX pass at OpenDNS FOR FREE !
    [23:34] <K1ll4> Cool a free XX pass
    [23:34] <Rambo666> Inlining is good and the compiler still decides if it makes sense to inline smth
    [23:34] <AmazingHorse> Yeah, he is a retard !
    Srsly.
    Hey, it compiles! Ship it!

  4. #34
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    I think I just shit myself laughing.

    Rofl. The compiler IS good at optimizing. However; human intervention can quite often make that optimization many times better. (Eg; inlining functions)

    Stop being a damned retard, and actually go read up on what inlining is actually used for, then find some DECENT examples. Next time I see you post some stupid shit like that; it's going to be infractions. (Also; asking a GameDev.net's late-hour group on IRC about stuff like that [and getting only 2 other idiots agreeing] is by no means any form of agreement. Go ask an MS developer, or any of the *nix contributors.)
    <- is a freebsd kernel developer.. and yeah that guy is wrong.

  5. #35
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dmxsbb View Post
    Cypher, Inlining functions are stupid, and shouldnt even be used. If you look at the code at the top where the #defines are, the preprocessor commands, you should try to avoid using those, and they can sometimes cause errors. My apologies for offending you in anyway?
    You're retarded.

    Whilst I've stated over and over again in this section that premature optimization is evil, marking functions as inline doesn't always come under this umbrella.

    The compiler isn't always right, and often giving it a nudge in the right direction can give it a performance boost.

    Besides, marking a function as inline doesn't even mean it will actually get inlined, it's just a SUGGESTION to the compiler. If the compiler disagrees, it will just ignore your suggestion. Most compilers have a __forcinline or similar keyword, but that's a diferent story altogether.

    Sometimes code MUST be inlined in order for it to work, other times it must NOT be inlined. You've obviously never really worked on low level projects before that require a certain degree of control over the resulting binary code.

    Furthermore, inline functions are the only way to pull off certain library 'tricks' such as header-only libraries.

    Lastly, yes, macro's are evil, but you don't seem to understand why. In all your posts you just seem to be spouting a bunch of stuff to try and make yourself seem intelligent, when in fact most of it makes little sense.

    Unless you actually know what you're talking about, it's probably best you just sit in the corner and shut the **** up.

  6. #36
    Dmxsbb's Avatar Banned
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [edited by admin because dmxsbb is leet undercover]
    Last edited by Dmxsbb; 11-21-2009 at 09:16 PM.

  7. #37
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dmxsbb View Post
    [edited by admin because dmxsbb is leet undercover]
    Typical retort of someone who's been publicly humiliated beyond come back.

    Good day to you sir.

    *edit*

    Pro, he changed his post. It was "Cypher, when was the last time you touched a pair of titties?"

  8. #38
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahahaha.

    Let me grab my 'Retard to English' dictionary... Hrm yep, just as I expected, that translates to "I can't make a response on an intellectual level so I'm going to start projecting in order to try and mask my failure".

  9. #39
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I present to you:
    WinNinja Module Hiding Code

    Enjoy your delicious copypasta.



    Moderator Note:
    Kurios, if you remove that image I will send a big black man named Bubba over to your house to sodomize you repeatedly.

  10. #40
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post
    I present to you:
    WinNinja Module Hiding Code

    Enjoy your delicious copypasta.



    Moderator Note:
    Kurios, if you remove that image I will send a big black man named Bubba over to your house to sodomize you repeatedly.
    Lambda goodness ftw!

  11. #41
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fav'd that image !

    Thank you Cypher for that code.
    I am sure the Mimic guys are downloading it right now :P

    What I don't understand...why is that helping? I mean, you don't need API-functions to inspect your own code.
    Dereferencing some memory here and there could do a similar job to detect injected hacks I guess.
    Last edited by flo8464; 11-22-2009 at 10:40 AM.
    Hey, it compiles! Ship it!

  12. #42
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any chance that the warden wiki will be updated in the near future? It says that you can hide your modules by hooking Module32First/Next, which doesn't seem accurate anymore.

  13. #43
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lanman92 View Post
    Is there any chance that the warden wiki will be updated in the near future? It says that you can hide your modules by hooking Module32First/Next, which doesn't seem accurate anymore.
    I've no reason to do it, other than giving out freebies to the scum suckers (eg: Mimic).

    Sorry, but thats just how it is.

  14. #44
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by flo8464 View Post
    Fav'd that image !

    Thank you Cypher for that code.
    I am sure the Mimic guys are downloading it right now :P

    What I don't understand...why is that helping? I mean, you don't need API-functions to inspect your own code.
    Dereferencing some memory here and there could do a similar job to detect injected hacks I guess.
    Because, you don't use NtQueryVirtualMemory to inspect the contents of memory, you use it to inspect the PROPERTIES of the memory.

    The properties of the memory region (i.e. file mapping info, and VAD info) are stored in the kernel, and hence it requires an API call.

    You can't just "[dereference] some memory here and there" in order to retrieve the file mapping path or VAD info.

  15. #45
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have to admit, I didn't really lookup what NtQueryVirtualMemory does in general, had problems finding a good documentation.

    But I still don't really understand why they don't scan for signatures of known hacks.
    Hey, it compiles! Ship it!

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [C#] [SRC] Hide a DLL by unlinking it from PEB
    By ddebug in forum WoW Memory Editing
    Replies: 19
    Last Post: 05-23-2018, 08:42 AM
  2. Hide in the wall of AV
    By Matt in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 10-10-2006, 07:01 PM
  3. WSG Hiding Spot [Horde]
    By DaUberBird in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 06-13-2006, 01:30 PM
  4. Alliance Warsong Hiding Spot
    By lvlrbojang1es in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 06-01-2006, 02:06 AM
All times are GMT -5. The time now is 01:02 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search