├── .gitignore ├── PcapDecrypt ├── PcapDecrypt.sln ├── PcapDecrypt │ ├── App.config │ ├── B4kIR.lrf │ ├── Blowfish.cs │ ├── Json │ │ ├── Packet.cs │ │ ├── Player.cs │ │ └── Replay.cs │ ├── PacketEnums.cs │ ├── PcapDecrypt.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Utils.cs │ ├── input.txt │ ├── key.txt │ ├── lib │ │ ├── libintlib.dll │ │ ├── libintlib32.dll │ │ └── libintlib64.dll │ ├── packages.config │ ├── yasuo.txt │ └── yasuoKey.txt └── SharpPcap │ ├── ARP.cs │ ├── AirPcap │ ├── AirPcapAdapterBus.cs │ ├── AirPcapAdapterId.cs │ ├── AirPcapBands.cs │ ├── AirPcapChannelInfo.cs │ ├── AirPcapChannelInfoFlags.cs │ ├── AirPcapDecryptionState.cs │ ├── AirPcapDevice.cs │ ├── AirPcapDeviceCapabilities.cs │ ├── AirPcapDeviceDescription.cs │ ├── AirPcapDeviceList.cs │ ├── AirPcapDeviceTimestamp.cs │ ├── AirPcapKey.cs │ ├── AirPcapKeyType.cs │ ├── AirPcapLinkTypes.cs │ ├── AirPcapMacFlags.cs │ ├── AirPcapMediumType.cs │ ├── AirPcapPacketHeader.cs │ ├── AirPcapSafeNativeMethods.cs │ ├── AirPcapStatistics.cs │ ├── AirPcapUnmanagedStructures.cs │ ├── AirPcapValidationType.cs │ ├── AirPcapVersion.cs │ └── Win32SafeNativeMethods.cs │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── CaptureDeviceList.cs │ ├── CaptureEventArgs.cs │ ├── CaptureStoppedEventHandler.cs │ ├── CaptureStoppedEventStatus.cs │ ├── DeviceMode.cs │ ├── DeviceNotReadyException.cs │ ├── ICaptureDevice.cs │ ├── ICaptureStatistics.cs │ ├── InvalidOperationDuringBackgroundCaptureException.cs │ ├── LibPcap │ ├── CaptureFileReaderDevice.cs │ ├── CaptureFileWriterDevice.cs │ ├── LibPcapLiveDevice.cs │ ├── LibPcapLiveDeviceList.cs │ ├── LibPcapSafeNativeMethods.cs │ ├── PcapAddress.cs │ ├── PcapDevice.cs │ ├── PcapDeviceCaptureLoop.cs │ ├── PcapHeader.cs │ ├── PcapInterface.cs │ ├── PcapStatistics.cs │ ├── PcapUnmanagedStructures.cs │ └── Sockaddr.cs │ ├── NotSupportedOnCaptureFileException.cs │ ├── PacketArrivalEventHandler.cs │ ├── PacketDotNet │ ├── PacketDotNet.dll │ └── PacketDotNet.xml │ ├── Pcap.cs │ ├── PcapException.cs │ ├── PosixTimeval.cs │ ├── RawCapture.cs │ ├── Readme.Mono │ ├── SharpPcap.csproj │ ├── SharpPcap.dll.config │ ├── StatisticsException.cs │ ├── Version.cs │ ├── WinPcap │ ├── AuthenticationTypes.cs │ ├── CaptureMode.cs │ ├── OpenFlags.cs │ ├── RemoteAuthentication.cs │ ├── SafeNativeMethods.cs │ ├── SendQueue.cs │ ├── SendQueueTransmitModes.cs │ ├── StatisticsModeEventArgs.cs │ ├── StatisticsModeEventHandler.cs │ ├── StatisticsModePacket.cs │ ├── UnmanagedStructures.cs │ ├── WinPcapDevice.cs │ └── WinPcapDeviceList.cs │ ├── WinPcapRequiredException.cs │ └── docs │ └── Api │ └── SharpPcap.xml ├── README.md ├── ReplayFetcher ├── fetch.py └── requirements.txt ├── ReplayParser ├── ReplayParser.sln └── ReplayParser │ ├── App.config │ ├── Blowfish.cs │ ├── Compression.cs │ ├── Packet.cs │ ├── PacketReader.cs │ ├── PacketWriter.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReplayFile.cs │ ├── ReplayParser.csproj │ ├── ReplayPlayer.cs │ ├── SpectatorPacket.cs │ ├── SpectatorPacketWriter.cs │ ├── SpectatorResponse.cs │ ├── lib │ └── Compression.dll │ └── packages.config ├── Replays.7z ├── run-fetch.bat └── setup-fetch.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/.gitignore -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt.sln -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/App.config -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/B4kIR.lrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/B4kIR.lrf -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Blowfish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Blowfish.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Json/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Json/Packet.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Json/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Json/Player.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Json/Replay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Json/Replay.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/PacketEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/PacketEnums.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/PcapDecrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/PcapDecrypt.csproj -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Program.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/Utils.cs -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/input.txt -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/key.txt: -------------------------------------------------------------------------------- 1 | 1l+9Pcfo6C/1ZadahlsnIg== 2 | -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/lib/libintlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/lib/libintlib.dll -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/lib/libintlib32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/lib/libintlib32.dll -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/lib/libintlib64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/lib/libintlib64.dll -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/packages.config -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/yasuo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/PcapDecrypt/yasuo.txt -------------------------------------------------------------------------------- /PcapDecrypt/PcapDecrypt/yasuoKey.txt: -------------------------------------------------------------------------------- 1 | Bq3irnoqPOarFDdA7I3Q1g== -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/ARP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/ARP.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapAdapterBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapAdapterBus.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapAdapterId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapAdapterId.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapBands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapBands.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapChannelInfo.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapChannelInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapChannelInfoFlags.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDecryptionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDecryptionState.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceCapabilities.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceDescription.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceList.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapDeviceTimestamp.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapKey.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapKeyType.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapLinkTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapLinkTypes.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapMacFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapMacFlags.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapMediumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapMediumType.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapPacketHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapPacketHeader.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapSafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapSafeNativeMethods.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapStatistics.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapUnmanagedStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapUnmanagedStructures.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapValidationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapValidationType.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/AirPcapVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/AirPcapVersion.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AirPcap/Win32SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AirPcap/Win32SafeNativeMethods.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/App.ico -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/AssemblyInfo.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/CaptureDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/CaptureDeviceList.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/CaptureEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/CaptureEventArgs.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/CaptureStoppedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/CaptureStoppedEventHandler.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/CaptureStoppedEventStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/CaptureStoppedEventStatus.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/DeviceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/DeviceMode.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/DeviceNotReadyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/DeviceNotReadyException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/ICaptureDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/ICaptureDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/ICaptureStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/ICaptureStatistics.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/InvalidOperationDuringBackgroundCaptureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/InvalidOperationDuringBackgroundCaptureException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/CaptureFileReaderDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/CaptureFileReaderDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/CaptureFileWriterDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/CaptureFileWriterDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/LibPcapLiveDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/LibPcapLiveDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/LibPcapLiveDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/LibPcapLiveDeviceList.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/LibPcapSafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/LibPcapSafeNativeMethods.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapAddress.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapDeviceCaptureLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapDeviceCaptureLoop.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapHeader.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapInterface.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapStatistics.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/PcapUnmanagedStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/PcapUnmanagedStructures.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/LibPcap/Sockaddr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/LibPcap/Sockaddr.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/NotSupportedOnCaptureFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/NotSupportedOnCaptureFileException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/PacketArrivalEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/PacketArrivalEventHandler.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/PacketDotNet/PacketDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/PacketDotNet/PacketDotNet.dll -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/PacketDotNet/PacketDotNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/PacketDotNet/PacketDotNet.xml -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/Pcap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/Pcap.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/PcapException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/PcapException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/PosixTimeval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/PosixTimeval.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/RawCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/RawCapture.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/Readme.Mono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/Readme.Mono -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/SharpPcap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/SharpPcap.csproj -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/SharpPcap.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/SharpPcap.dll.config -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/StatisticsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/StatisticsException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/Version.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/AuthenticationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/AuthenticationTypes.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/CaptureMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/CaptureMode.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/OpenFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/OpenFlags.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/RemoteAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/RemoteAuthentication.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/SafeNativeMethods.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/SendQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/SendQueue.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/SendQueueTransmitModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/SendQueueTransmitModes.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/StatisticsModeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/StatisticsModeEventArgs.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/StatisticsModeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/StatisticsModeEventHandler.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/StatisticsModePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/StatisticsModePacket.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/UnmanagedStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/UnmanagedStructures.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/WinPcapDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/WinPcapDevice.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcap/WinPcapDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcap/WinPcapDeviceList.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/WinPcapRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/WinPcapRequiredException.cs -------------------------------------------------------------------------------- /PcapDecrypt/SharpPcap/docs/Api/SharpPcap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/PcapDecrypt/SharpPcap/docs/Api/SharpPcap.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Replay inspector 2 | -------------------------------------------------------------------------------- /ReplayFetcher/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayFetcher/fetch.py -------------------------------------------------------------------------------- /ReplayFetcher/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.9.1 2 | -------------------------------------------------------------------------------- /ReplayParser/ReplayParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser.sln -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/App.config -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/Blowfish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/Blowfish.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/Compression.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/Packet.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/PacketReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/PacketReader.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/PacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/PacketWriter.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/Program.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/ReplayFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/ReplayFile.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/ReplayParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/ReplayParser.csproj -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/ReplayPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/ReplayPlayer.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/SpectatorPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/SpectatorPacket.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/SpectatorPacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/SpectatorPacketWriter.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/SpectatorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/SpectatorResponse.cs -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/lib/Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/lib/Compression.dll -------------------------------------------------------------------------------- /ReplayParser/ReplayParser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/ReplayParser/ReplayParser/packages.config -------------------------------------------------------------------------------- /Replays.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/Replays.7z -------------------------------------------------------------------------------- /run-fetch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/run-fetch.bat -------------------------------------------------------------------------------- /setup-fetch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeagueSandbox/ReplayInspector/HEAD/setup-fetch.bat --------------------------------------------------------------------------------