mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Avoid another unsigned vs signed integer overflow in packing
This commit is contained in:
parent
11c2662a40
commit
bd77d65e3b
1 changed files with 1 additions and 1 deletions
|
|
@ -786,7 +786,7 @@ function RmiDataStream:writeMethodCall(out,objNum, hash, op, arguments)
|
|||
-- Send Call:
|
||||
dos:writeByte(0x50)
|
||||
-- Send Magic 0xaced
|
||||
dos:writeShort(0xACED)
|
||||
dos:writeUnsignedShort(0xACED)
|
||||
-- Send version 0x0005
|
||||
dos:writeShort(0x0005)
|
||||
-- Send TC_BLOKDATA
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue