modules.processing.network.Pcap2:
Interprets the PCAP file through the httpreplay library which
parses the various protocols, decrypts and decodes them, and then
provides us with the high level representation of it.
modules.processing.network.SortCap:
SortCap is a wrapper around the packet lib (dpkt) that allows us to
sort pcaps together with the batch_sort function above.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.