CS6035 pcapanalysis
# You may NOT alter the import list!!!! import pyshark import hashlib class MITMException(Exception): “””A class to throw if you come across incorrect syntax or other issues””” def __init__(self, value): self.value = value def __str__(self): return repr(self.value) class MITMProject(object): def __init__(self): self.cap = pyshark.FileCapture(‘TCP.reflection_fall2023.pcap’) self.class_id = “CS60353257” # TODO: Change this to YOUR Georgia Tech […]
CS6035 pcapanalysis Read More »