Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcery refactored master branch #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented Oct 5, 2023

Branch master refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the master branch, then run:

git fetch origin sourcery/master
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

Comment on lines -39 to +68

# Compute the change to make
delta = crc ^ newcrc
delta = multiply_mod(reciprocal_mod(pow_mod(2, (length - offset) * 8)), delta)

# Patch 4 bytes in the buffer
bytes4 = bytearray(buffer[offset:offset+4])
if len(bytes4) != 4:
raise IOError("Cannot read 4 bytes at offset")

if printstatus:
print("Target bytes @ offset: {:s}".format(str(bytes4).encode('hex')))

for i in range(4):
bytes4[i] ^= (reverse32(delta) >> (i * 8)) & 0xFF

if printstatus:
print("Patched value: {:s}".format(str(bytes4).encode('hex')))

result = str(buffer[0:offset] + bytes4 + buffer[offset+4:])
result = str(buffer[:offset] + bytes4 + buffer[offset+4:])

if printstatus:
print("Computed and wrote patch")

# Recheck entire file
if get_buffer_crc32(result) != newcrc:
raise AssertionError("Failed to update CRC-32 to desired value")
elif printstatus:
print("New CRC-32 successfully verified")

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function modify_buffer_crc32 refactored with the following changes:

for i in range(32):
for _ in range(32):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function reverse32 refactored with the following changes:

buffer = buffer[0:8] + pack('<Q', bad_ptr)
buffer = buffer[:8] + pack('<Q', bad_ptr)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines 60-60 refactored with the following changes:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants