Author Topic: Hex-Editors  (Read 5238 times)

0 Members and 1 Guest are viewing this topic.

MikeSamROFL

  • Guest
Hex-Editors
« on: February 03, 2012, 04:53:37 am »
Arent they just the coolest!  ;) Well cool in concept, I still have yet to do any major projects with them and I need to know how to practice useing them(If their is any way) and what can and cant I do on a hex editor?

Offline Live Wire

  • Knight
  • **
  • Posts: 189
  • Cookies: 4
  • Up on your Net
    • View Profile
Re: Hex-Editors
« Reply #1 on: February 03, 2012, 07:28:53 am »
Arent they just the coolest!  ;) Well cool in concept, I still have yet to do any major projects with them and I need to know how to practice useing them(If their is any way) and what can and cant I do on a hex editor?

What are you talking about!?
"There is no right or wrong, there is only fun and boring."

Offline Axon

  • VIP
  • King
  • *
  • Posts: 2047
  • Cookies: 319
    • View Profile
Re: Hex-Editors
« Reply #2 on: February 04, 2012, 05:08:27 pm »
This thread is pointless ? If you want to discuss any issue related to any subject you have the general section ?

Offline FuyuKitsune

  • Knight
  • **
  • Posts: 292
  • Cookies: 21
    • View Profile
Re: Hex-Editors
« Reply #3 on: February 05, 2012, 05:21:47 am »
How is this thread useless? He wants to know stuff that can be done with a hex editor.

One thing is figuring out what part of an EXE is being detected by antivirus. AV detect viruses using known strings, so if you can change that one little bit of the file it'll be hidden. Here's a way to find that detection string:
-Turn off AV.
-Take a hex editor and split the EXE in chunks, save each chunk. I think there are programs to split for you.
-Scan each chunk
-Whatever segment is detected has the detected code. If no piece is detected then you split right at the detection string. If multiple pieces are detected then there are multiple detection strings.
-Keep on splitting the detected piece until you get something small, usally 1-4 lines of hex

Now the old trick for making EXEs undetected. In the hex editor, take some of the letters and change the case. If there's an "A" make it "a", "x" becomes "X". Do this for a couple letters. Save and run the file. If it runs, scan it. It should be undetected. If it doesn't run or if detected then change different letters.

Quite old but always fun.