(self, pkt, pay)
| 866 | ] |
| 867 | |
| 868 | def post_build(self, pkt, pay): |
| 869 | # type: (bytes, bytes) -> bytes |
| 870 | return ( |
| 871 | _NTLM_post_build( |
| 872 | self, |
| 873 | pkt, |
| 874 | 32 + 22 + len(self.Setup) * 2, |
| 875 | { |
| 876 | "Parameter": 7, |
| 877 | "Data": 13, |
| 878 | }, |
| 879 | config=_SMB_CONFIG, |
| 880 | ) |
| 881 | + pay |
| 882 | ) |
| 883 | |
| 884 | |
| 885 | bind_top_down(SMB_Header, SMBTransaction_Response, Command=0x25, Flags=0x80) |
nothing calls this directly
no test coverage detected