Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9221431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:34:41+00:00 2026-06-18T03:34:41+00:00

i am trying to patch a hex file. i have two patch files (hex)

  • 0

i am trying to patch a hex file.
i have two patch files (hex) named “patch 1” and “patch 2”

the file to be patched is a 16 MB file named “file.bin”.

i have tried many different way for the past 6 or 7 hours to figure out how to do it. I can write a string to a file all day long, but i am trying to do the following:

open patch1.bin with read bytes
open patch2.bin with read bytes
open file.bin with write bytes

i want to seek to positions 0xc0010, and 0x7c0010, and apply patch1.bin
then i want to seek to 0x040000 and apply patch2.bin

so all in all i will have 3 patches applied, then close the “file.bin”

if someone cold give me an example i would very much appreciate it 🙂

i tried this first:

patch1 = open("patch1", "r");
patch2 = open("patch2", "r");
main = open("file.bin", "w");

main.seek(0xC0010);
main.write(patch1);
main.seek(0x7C0010);
main.write(patch1);
main.seek(0x40000);
main.write(patch2);
main.close();

but was informed i was was trying to write a string to a file, when indeed its not what i wanted, lol
then i tried this:

infile1 = open("patch1.bin", "rb") 
new_pos1 = int("0x00", 16)
infile1.seek(new_pos1, 0)
infile2 = open('file.bin', 'wb')
new_pos2 = int('0xc0010', 16)
infile2.seek(new_pos2, 0xc0010)
chunk1 = int("6FFFE0", 16)         #this is how long patch1 file is
data1 = infile1.read(chunk1)
with open("file.bin", "a") as outfile:
    outfile.write(data1)

but it did not work either, as no matter what i tried, i could not get it to write the data at he correct offset.

I did manage a few times to write the patch1 to file.bin, but it did not patch at the right offset, as a matter of fact it deleted the file.bin and just copied patch1 in its place. which ofcourse is wrong.

i must remind you i am new to python and programming, but i am really trying to dig my feet into it and learn, so any good examples will be examined and hopefully will be a good learning lesson for me 🙂

thanks guys and gals for helping me figure out what i was doing wrong 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T03:34:42+00:00Added an answer on June 18, 2026 at 3:34 am

    You only need to use seek and write. Use seek to jump to the position and write to overrwite the existing data.

    with file('patch1.bin', 'rb') as fh:
        patch1 = fh.read()
    
    with file('patch2.bin', 'rb') as fh:
        patch2 = fh.read()
    
    with file('file.bin', 'r+b') as fh:
        # apply patch1
        fh.seek(0xc0010)
        fh.write(patch1)
        fh.seek(0x7c0010)
        fh.write(patch1)
        # apply patch2
        fh.seek(0x040000)
        fh.write(patch2)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to redirect a patch command output using a named pipe. I tried
I am trying to patch dmenu with the files provided here: http://aur.archlinux.org/packages.php?ID=27334 I do
I'm trying to write a multi-file patch for an open-source project, but the master
I'm trying to patch up a new vim syntax file for some custom format
I'm trying to compare two Xml files using C# code. I want to ignore
I'm looking at trying to strip out C comments from our patch files and
I'm trying to make a patch 9 file for button so it looks like
I'm trying to apply a .patch file to a single .cpp file using git
I'm trying to use SVN patch files to remove authentication from a web API
I'm having trouble patching a class for my testing. I'm trying to patch something

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.