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

Debugging tool for analyzing the League of Legends spectator data format

Notifications You must be signed in to change notification settings

Zero3/LolSpecAnalyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Debugging tool for analyzing the League of Legends spectator data format

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages