0

How can i get the "To" and "From" categories from a SMTP packet isolated from a stream.

import pyshark

fileBuffer = pyshark.FileCapture(pcapDirectory)
samplePacket = fileBuffer[SMTP_Packet_Location]

# Get to and from fields
Ruxaroh -
  • 1
  • 2

1 Answers1

0

I found the following solution:

fileBuffer = pyshark.FileCapture(pcapDirectory)
samplePacket = fileBuffer[SMTP_Packet_Location]
print(samplePacket.smtp.get_field_value("req_parameter"))

Output:

TO: <exampleEmail@provider.com>
Ruxaroh -
  • 1
  • 2