This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.
Problem Analysis Analyzing the pcap file, we shall see that there are a lot of /anticheat?x={x_coordinate}?y={y_coordinate} requests. Given the amount of coordinate data, it would make sense to plot these. Solution Required python modules: parse: The opposite of format, used as a convinent replacement of regex. numpy: Numerica processing matplotib: Plotting Data processing from parse import * with…
Problem Analysis Analyzing the pcap file, we shall see that there are a lot of /anticheat?x={x_coordinate}?y={y_coordinate} requests.
Given the amount of coordinate data, it would make sense to plot these.
Solution Required python modules:
parse: The opposite of format, used as a convinent replacement of regex. numpy: Numerica processing matplotib: Plotting Data processing from parse import * with open('whacking-the-froggers.pcap', 'rb') as f: lines = f.readlines() valids = [] for l in lines: if b'anticheat' in l: valids.Read on /posts/whack-a-frog/ ↗
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.