22 lines
805 B
Python
22 lines
805 B
Python
import os
|
|
import re
|
|
import datetime
|
|
from bs4 import BeautifulSoup
|
|
from hackingscripts.pcap_file_extract import PcapExtractor, HttpRequest, HttpResponse
|
|
|
|
if __name__ == "__main__":
|
|
|
|
chars = []
|
|
pcap_extractor = PcapExtractor("secret_capture.pcapng")
|
|
for response in pcap_extractor:
|
|
match = re.match(r"/\?door=(\d)", response.get_file_path())
|
|
if match and isinstance(response, HttpResponse):
|
|
request = response.response_to
|
|
ip, port = request.socket.split(":")
|
|
port = int(port)
|
|
c = chr(port - 56700)
|
|
dt = datetime.datetime.strptime(response.headers["Date"], "%a, %d %b %Y %H:%M:%S %Z").timestamp()
|
|
chars.append((dt, c))
|
|
|
|
flag = "".join(entry[1] for entry in sorted(chars))
|
|
print("[+] Flag:", flag) |