File tree 2 files changed +30
-0
lines changed
python/samba/tests/blackbox
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -110,3 +110,32 @@ def test_ndrdump_with_binary_struct_number(self):
110
110
# check_output will return bytes
111
111
# convert expected to bytes for python 3
112
112
self .assertEqual (actual , expected .encode ('utf-8' ))
113
+
114
+ def test_ndrdump_fuzzed_clusapi_QueryAllValues (self ):
115
+ expected = b'''pull returned Success
116
+ WARNING! 53 unread bytes
117
+ [0000] 00 FF 00 00 FF 00 00 00 00 09 00 00 00 08 00 33 ........ .......3
118
+ [0010] 33 32 37 36 32 36 39 33 32 37 36 38 34 01 00 00 32762693 27684...
119
+ [0020] 80 32 0D FF 00 00 FF 00 00 00 00 08 00 00 00 1C .2...... ........
120
+ [0030] F1 29 08 00 00 .)... ''' \
121
+ b'''
122
+ clusapi_QueryAllValues: struct clusapi_QueryAllValues
123
+ out: struct clusapi_QueryAllValues
124
+ pcbData : *
125
+ pcbData : 0x01000000 (16777216)
126
+ ppData : *
127
+ ppData: ARRAY(1)
128
+ ppData : NULL
129
+ rpc_status : *
130
+ rpc_status : WERR_OK
131
+ result : WERR_NOT_ENOUGH_MEMORY
132
+ dump OK
133
+ '''
134
+ try :
135
+ actual = self .check_output (
136
+ 'ndrdump clusapi clusapi_QueryAllValues out ' + \
137
+ '--base64-input --input=' + \
138
+ 'AAAAAQEAAAAAAAAAAAAAAAgAAAAA/wAA/wAAAAAJAAAACAAzMzI3NjI2OTMyNzY4NAEAAIAyDf8AAP8AAAAACAAAABzxKQgAAA==' )
139
+ except BlackboxProcessError as e :
140
+ self .fail (e )
141
+ self .assertEqual (actual , expected )
Original file line number Diff line number Diff line change
1
+ ^samba.tests.blackbox.ndrdump.samba.tests.blackbox.ndrdump.NdrDumpTests.test_ndrdump_clusapi_QueryAllValues
You can’t perform that action at this time.
0 commit comments