| 629 | ) |
| 630 | |
| 631 | class SMB2Packet(SMBPacketBase): |
| 632 | structure = ( |
| 633 | ('ProtocolID','"\xfeSMB'), |
| 634 | ('StructureSize','<H=64'), |
| 635 | ('CreditCharge','<H=0'), |
| 636 | ('Status','<L=0'), |
| 637 | ('Command','<H=0'), |
| 638 | ('CreditRequestResponse','<H=0'), |
| 639 | ('Flags','<L=0'), |
| 640 | ('NextCommand','<L=0'), |
| 641 | ('MessageID','<Q=0'), |
| 642 | ('Reserved','<L=0'), |
| 643 | ('TreeID','<L=0'), |
| 644 | ('SessionID','<Q=0'), |
| 645 | ('Signature','16s=""'), |
| 646 | ('Data',':=""'), |
| 647 | ) |
| 648 | |
| 649 | class SMB3Packet(SMBPacketBase): |
| 650 | structure = ( |
no outgoing calls
no test coverage detected
searching dependent graphs…