Jump to content

high6

Active Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

1,138 profile views

high6's Achievements

Newbie

Newbie (1/14)

  1. Dunno if that was sarcasm or not... So I will answer as if it isn't. Ollydbg cannot do that. IDA on the other hand can generate pseudo C with a plugin.
  2. I am trying to redirect all outgoing traffic on a port to my application to process and finish sending. Anyone have some example code to do this?
  3. A nice site for reversing resources. And a good tutorial series for learning reversing. http://www.tuts4you.com/download.php?list.17
  4. Problem is that sometimes in the corners of the internet people do not know you and that person completely gets away with it. Just something about spending weeks working on something just to have someone else take all the credit is like a swift kick to the balls.
  5. Agreed. I love sharing my knowledge with others but it pisses me the fuck off when others take your hard work and plaster their name on it.
  6. nah, actually there is a library in the VS9 lib folder named MSVCRT.lib which is actually MSVCR90.lib. Made a new folder C:\MSVCRT\ and plopped the real MSVCRT.lib file into it and then added it as a library directory and it compiled using MSVCRT.dll. Although it gave me some warnings. 1>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library 1>Generating code 1>Finished generating code 1>MSVCRT.lib(cinitexe.obj) : warning LNK4254: section '.CRT' (40000040) merged into '.data' (C0000040) with different attributes 1>MSVCRT.lib(cinitexe.obj) : warning LNK4254: section '.CRT' (40000040) merged into '.data' (C0000040) with different attributes adding /NODEFAULTLIB breaks it but I didn't seem to matter with those warnings.
  7. To disable MSVCRT90.dll simply change /MD to /MT I haven't seen how to have it use MSVCRT.dll though, I would imagine you just import the library. edit: Tried importing msvcrt.lib and it used msvcrt90.dll 0,o...
  8. Mine never links to that 0,o... nm it does, let me look how to disable.
  9. java is dependent on the java framework XD. Also you probably werent using MSVC++ 2008 right because you can code unmanaged code in it
  10. There is a difference between debating and bashing languages. also steve C# is basically java made by microsoft XD.
  11. Wow this thread quickly turned from a simple question into a "My language is better, fuck you".
×
×
  • Create New...