Skip to content

Instantly share code, notes, and snippets.

@psrok1
Created May 19, 2017 12:55
Show Gist options
  • Save psrok1/ec163f03a0dbf0c62bf69dba506eb53d to your computer and use it in GitHub Desktop.
Save psrok1/ec163f03a0dbf0c62bf69dba506eb53d to your computer and use it in GitHub Desktop.
Emotet spam response
message EmailAccount {
required int32 id = 1;
required string mail_server = 2;
required int32 port = 3;
required string login = 4;
required string password = 5;
required string email = 6;
}
message EmailRecipient {
required int32 id=1;
required string to_email=2;
optional string to_name=3;
required string from_email=4;
required string from_name=5;
}
message EmailResponse {
message Template {
required string from = 1 ;
required string subject = 2;
required string unk1 = 3;
required string content_type = 4;
required string msg = 5;
required string unk2 = 6;
}
optional Template template = 1;
repeated EmailAccount accounts = 2 [packed=true];
optional EmailRecipient recipients = 3 [packed=true];
required uint32 timestamp = 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment