Hex Editing Tutorial For dUmmI3z

Тәжірибелік нұсқаулар және стиль

I teach you how to start hex editing, and how to read hexadecimal numbers!
HxD Download:
mh-nexus.de/en/downloads.php?...

Пікірлер: 51

  • @tacticalmanx759
    @tacticalmanx7593 жыл бұрын

    learned more from a 21 minute video than an entire pluralsight reverse engineering course, thanks

  • @Gota7

    @Gota7

    3 жыл бұрын

    Lol np, glad it helped.

  • @tacticalmanx759

    @tacticalmanx759

    3 жыл бұрын

    @@Gota7 thanks

  • @AmeliaKKH
    @AmeliaKKH5 жыл бұрын

    Thanks for this 💚

  • @ShadowR_27
    @ShadowR_274 жыл бұрын

    Dude I just just trying to hack a game what is this oh my

  • @purifycode

    @purifycode

    Жыл бұрын

    makes sense

  • @frankwhite2072
    @frankwhite20724 ай бұрын

    Signed integers sounds like the range for midi.

  • @purifycode
    @purifycode Жыл бұрын

    ok now im going to make my own grid coz i learned a basic understanding

  • @texrodbr217
    @texrodbr21711 ай бұрын

    I was able to modify Far Cry 6 money on PS4 by editing it using HEX, and I only managed because I only had 2 instances in HEX (little endian) to edit. So, since the money value was very specific, something like $3,426, it was easy to find, replace, and even fill in the remaining 1 byte for the money to be in the $999,999 (f423f) spot in the game. My problem now due to lack of knowledge and practice is trying to edit the Watch Dogs 1 save on PS4 for testing. I simply when I try to edit the money ($3074) I find dozens of HEX instances in BIG and LITTLE endian in the file appearing to be encrypted, I don't know. There are so many repeated instances in the file that I don't know if it's really to change them all or find a specific one

  • @gabrieljakopovic6015
    @gabrieljakopovic6015 Жыл бұрын

    Can you do a hex coding series? i really need it to make an os

  • @OfARisenFall
    @OfARisenFall3 жыл бұрын

    Great video! Understand a bit more now. How would I go about, say, looking for a function name in a dll? There's no mention in the dll itself in text of the function name, it's all just the encrypted-looking data. I'm playing a game I want to make harder. It has set values to get levels in a DLL file. I've tried a text search which was a long shot lol, but didn't work. Now I want to try and hunt down the function that might be doing it. But I don't understand how I'm going to know what is a function or not when it's all 'encrypted' like those random characters in yours? Happy to learn, just need some advice as to 'how to know when you find a function' and finding delimiters etc. Or am I going about this wrongly? All I have is the value ( 35957), which I've been told is hardcoded into the DLL.

  • @Gota7

    @Gota7

    3 жыл бұрын

    You're best bet is probably loading the DLL in Ghidra and looking for the function that tests difficulty. You could try a hex value search for that number, but you'll get a ton of results most likely.

  • @babbisp1
    @babbisp1 Жыл бұрын

    I just wanna know how to know the difficulty of a savefile in Prince of Persia: Warrior Within (PS3) and someone told me to use a Hex Editor lol

  • @aa-gc9wc
    @aa-gc9wc3 жыл бұрын

    What does a symbolic link contain that makes it such? When I try to open a symbolic link in a hex editor the hex editor shows the data that is being linked to by the symbolic link.

  • @Gota7

    @Gota7

    3 жыл бұрын

    I think symbolic links on Windows are not actually files (or if they are, they are hidden). I know on Linux, links are physical files though.

  • @allanrichardson3135

    @allanrichardson3135

    Жыл бұрын

    The symbolic link is a portion of the text of the file you're coming from, containing either a file path and name, or a URL to the internet (or your private network), pointing to a specific page. So "opening" one of those implies following where it points and opening that object if possible.

  • @Cre9
    @Cre910 ай бұрын

    great vid

  • @amirroohi4566
    @amirroohi45663 жыл бұрын

    THANK YOU

  • @Gota7

    @Gota7

    3 жыл бұрын

    No problem, glad you like it!

  • @megitsune66
    @megitsune665 жыл бұрын

    I am tryng to extract texts from a stcm2l hearder format.. do you know how?

  • @Gota7

    @Gota7

    5 жыл бұрын

    No. Doing stuff like that is very specific to the format. You either need to look up some documentation, or reverse engineer it yourself.

  • @deedewald1707
    @deedewald17072 жыл бұрын

    You are a great teacher !

  • @SchmillyTV
    @SchmillyTV3 жыл бұрын

    What does it mean if your hex is decoded into garble? The Ascii decode of the hex I'm trying to edit doesn't make any sense at all. The ascii it full of random letters and numbers

  • @Gota7

    @Gota7

    3 жыл бұрын

    That means the data is stored in binary, not in hex. You should be looking at the number part more, not the ASCII part.

  • @velorya2282
    @velorya22824 жыл бұрын

    Hello I need some help! I have some .csa and .csaheader files from a game. So I need to build a packer to open the files. Can somebody please help or explain how to build such a packer? ty

  • @Gota7

    @Gota7

    4 жыл бұрын

    You should look to see if the format is documented somewhere (google CSA file specification or something), or look on forums or something about the game formats used. It may also be possible that no documentation exists, and you just have to try and figure out the format on your own.

  • @velorya2282

    @velorya2282

    4 жыл бұрын

    @@Gota7 unluckily this format isn't documented. I guess I'll have to check the forums. But thanks for your answer.

  • @Tech.Library

    @Tech.Library

    3 жыл бұрын

    @@Gota7 can I use this to edit the files in windows mobile OS phone

  • @Gota7

    @Gota7

    3 жыл бұрын

    @@Tech.LibraryThere are hex editor apps out there I'm sure, but maybe not the specific one I used in the video. All hex editors are somewhat similar though.

  • @Tech.Library

    @Tech.Library

    3 жыл бұрын

    @@Gota7 ok thanks

  • @iseetrees7830
    @iseetrees78303 жыл бұрын

    anyone help me with this ?

  • @catninjaog3347
    @catninjaog33473 жыл бұрын

    how do you decode the decode into letters not just ...$.....e3....$.............

  • @Gota7

    @Gota7

    3 жыл бұрын

    Depends on if there are letters or not stored.

  • @iseetrees7830

    @iseetrees7830

    3 жыл бұрын

    @@Gota7 prob asking a bit, but help me find TAA disable value ?

  • @tsl7804
    @tsl78042 жыл бұрын

    I guess this is not for me after all.. RIP 🙃

  • @Luminyx.inr-
    @Luminyx.inr- Жыл бұрын

    I am even more confused than before

  • @OfficialLusions
    @OfficialLusions2 жыл бұрын

    Anyone else watch the whole video?

  • @lightyagami5776

    @lightyagami5776

    2 жыл бұрын

    Nah, it's only you nerd.

  • @mosesemerokwam1164
    @mosesemerokwam11642 жыл бұрын

    Who is the dummy

  • @aaltaccout8126
    @aaltaccout81264 жыл бұрын

    How u know im a dumie

  • @articmodzs3661
    @articmodzs36615 жыл бұрын

    Were not dumb were just slow😂😂

  • @omar2516
    @omar25165 жыл бұрын

    bruh

  • @npd59

    @npd59

    14 күн бұрын

    Bruh +1

  • @onyxeeveon887
    @onyxeeveon8872 жыл бұрын

    Love ur sona

  • @Rupam_1729
    @Rupam_17293 жыл бұрын

    I am unable to crack a file pls help...share insta or fb id

  • @LDev31
    @LDev313 жыл бұрын

    I'm a dummyes xD

  • @manupman945
    @manupman9454 жыл бұрын

    is anyone going to say it... ... No... ... Ok... ...FURRY!

  • @Gota7

    @Gota7

    4 жыл бұрын

    Very cool observation :p

  • @r0x304
    @r0x3043 жыл бұрын

    Oh no furry

Келесі