Skip to content

Instantly share code, notes, and snippets.

@AdvDebug
Last active March 7, 2025 21:55
Show Gist options
  • Save AdvDebug/7e9c1062ffcc83bca99c9a10b8a6d549 to your computer and use it in GitHub Desktop.
Save AdvDebug/7e9c1062ffcc83bca99c9a10b8a6d549 to your computer and use it in GitHub Desktop.
Vita3k Patch to bypass vitamin check and run/install vitamin dumps.

Vita3K Patcher

This script removes Vitamin dumps detection in Vita3K.

import sys
import random
import string

def replace_all(binary_data, target_string):
    target_bytes = target_string.encode('ascii')
    count = binary_data.count(target_bytes)

    if count == 0:
        print("Vitamin detection strings not found. Skipping patch.")
        return binary_data

    print(f"Found {count} occurrences of Vitamin detection string. Replacing...")

    for _ in range(count):
        random_replacement = ''.join(random.choices(string.ascii_letters + string.digits, k=len(target_string)))
        binary_data = binary_data.replace(target_bytes, random_replacement.encode('ascii'), 1)

    return binary_data

def patch_binary(file_path):
    with open(file_path, "rb") as f:
        binary_data = bytearray(f.read())

    vitamin_detection_string = "sce_module/steroid.suprx"
    binary_data = replace_all(binary_data, vitamin_detection_string)

    patched_file_path = file_path.replace(".exe", "_patched.exe")
    with open(patched_file_path, "wb") as f_out:
        f_out.write(binary_data)

    print(f"Successfully patched Vita3k! New file: {patched_file_path}")

if __name__ == "__main__":
    if len(sys.argv) < 2:
        print("Usage: python patch.py <vita3k_executable_file>")
        sys.exit(1)

    patch_binary(sys.argv[1])

How to Patch:

  1. Install Python if you don't have it.
  2. Save the script as vita3k_patcher.py and place it in the same directory as Vita3K.
  3. Open Command Prompt and run:
    python vita3k_patcher.py Vita3K.exe
  4. Check the output to see if the patch was applied successfully.
  5. Run Vita3K_patched.exe and see if it works!

Disclaimer

This script is for educational purposes only and is meant to demonstrate how binary patching works.
Do not use this to bypass legal restrictions. Only play games that you legally own.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment