Skip to content

Latest commit

 

History

History
executable file
·
25 lines (20 loc) · 713 Bytes

README.md

File metadata and controls

executable file
·
25 lines (20 loc) · 713 Bytes

PSO2 Proxy

Simple proxy for capturing PSO2 packets. Tested on global, but might work for JP.

Usage

  1. Compile.
cargo build
  1. Transform Sega's key to PEM format:
openssl rsa -pubin -inform MS\ PUBLICKEYBLOB -in SEGAKey1.blob -outform PEM -out server_pubkey.pem
  1. Run proxy once to generate private key or supply your own as client_privkey.pem.
  2. (Optional) Transform your private key to injector's compatible format.
# if using my rsa injector
openssl rsa -in client_privkey.pem -outform MS\ PUBLICKEYBLOB -pubout -out publicKey.blob
  1. Run.

Capturing traffic

Moved here.