Cheat code bruteforcer thing
Go to file
Lily Tsuru 4629f99495 implement a basic hash-per-second display 2023-08-22 20:06:21 -04:00
cmake reading is hard 2023-08-22 03:44:45 -04:00
src implement a basic hash-per-second display 2023-08-22 20:06:21 -04:00
.clang-format Init 2023-08-21 20:50:31 -04:00
.editorconfig Init 2023-08-21 20:50:31 -04:00
.gitignore Init 2023-08-21 20:50:31 -04:00
CMakeLists.txt support non-system Boost 2023-08-22 16:45:53 -04:00
LICENSE Add argument parsing and MIT license 2023-08-22 05:03:49 -04:00
README.md make readme accurate 2023-08-22 18:40:57 -04:00

README.md

swsf_bruteforce

A performant, multithreaded, brute-forcer for scrambled cheat codes in Star Wars: Starfighter (JP) and Star Wars: Jedi Starfighter, written in modern C++20.

Building

You need:

  • A C++20 compiler (MSVC 2022, Clang, GCC)
  • Boost (I tested with 1.81, should work fine with 1.82 onwards)
  • CMake

Windows

cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release
cmake --build build

Linux

$ cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS="-march=native -mtune=native"
$ cmake --build build

Usage

./swsf_bruteforce [-X] -s [START_LENGTH] -e [LENGTH] 0xABCDABCD

where:

-X enables exact length, the value of -s is used as the length.

-s [START_LENGTH] is the guessed start bound (greater than 2, less than the value of -e), and optional (defaults to 2)

-e [END_LENGTH] is the guessed end bound (greater than the value of -s, less than or equal to 8), and optional (defaults to 8)

0xABCDABCD is the hash to use