Skip to content
This repository has been archived by the owner on Aug 3, 2018. It is now read-only.

Latest commit

 

History

History
40 lines (31 loc) · 2.43 KB

README.md

File metadata and controls

40 lines (31 loc) · 2.43 KB

LolSpecAnalyzer

LolSpecAnalyzer is a Java debugging tool/framework for analyzing the League of Legends (http://leagueoflegends.com) spectator data format.

It works by loading a decrypted and decompressed chunk from a file and running a number of analyzers against it. Analyzers do various things, but most importantly annotates each byte of the binary data they recognize. The framework then prints out a byte map with all the collected annotations, making reverse engineering the format much more fun.

You can add your own analyzer by subclassing AbstractAnalyzer in the analyzers package and adding it in LolSpecAnalyzer.java. Feel free to contribute!

Included analyzers

  • TimestampAnalyzer: Heuristic for finding timestamps. They are marked 'TIME' in the byte map.
  • StringAnalyzer: Heuristic for finding various kinds of strings. Characters are passed through to the byte map while length prefixes and null terminators are marked '"'. It also supports counting and printing all strings separately.

Example output

162432: _____________________________lJ"F"______ECamp"__________________
162496: ___________________________TIME_______________________TIME______
162560: _______________________________EYoungLizard7.1.3"_________""""XE
162624: _______________________________!YoungLizard"____________________
162688: ________________________________YoungLizard7.1.3"_______________
162752: ________________________________Camp"___________________________
162816: ________________________________________________________________
162880: ________________________________________________________________
162944: ________________________________________________________________
163008: ________________________________________________________________
163072: ________________________________________________________________
163136: _______________________________________________""""JOKE""""Joke"
163200: """JOKE""""Joke""""TAUNT""""Taunt""""TAUNT""""Taunt""""RUN""""RU
163264: N_SPELL1""""RUN""""RUN_SPELL1_____""""JOKE""""Joke""""JOKE""""Jo
163328: ke""""TAUNT""""Taunt""""TAUNT""""Taunt""""RUN""""RUN_SPELL1""""R
163392: UN""""RUN_SPELL1________________________________________________

Links