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

Little bug in firmware selection #46

Merged
merged 3 commits into from
May 24, 2024
Merged

Little bug in firmware selection #46

merged 3 commits into from
May 24, 2024

Commits on May 19, 2024

  1. Fixed offsets for 7.0x

    deviato authored May 19, 2024
    Configuration menu
    Copy the full SHA
    062311c View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    995dc4a View commit details
    Browse the repository at this point in the history
  2. Update main.cpp

    There's a little bug that prevents to run the program with fw parameter values other than "base" ones (702 for example).
    In line 159 you determine the "base" offset by calling
    ``auto offset = getFirmwareOffset(fw);``
    but later, in line 176 you try to set firmware offset with:
    ``if (exploit->setFirmwareVersion((FirmwareVersion) fw)) return 1;``
    But that function only accepts "base" firmware versions, so it should be 
    ``if (exploit->setFirmwareVersion((FirmwareVersion) offset)) return 1;``
    deviato authored May 24, 2024
    Configuration menu
    Copy the full SHA
    25490c9 View commit details
    Browse the repository at this point in the history