Module ops

Source
Expand description

All operations available for writing shellcodes.

Structs§

Advance
An operation that moves the cursor ahead by n bytes. The gap will be filled by zeroes.
Fill
An operation that fills with a value.
WriteBuffer
An operation that writes a buffer. The cursor will be moved ahead by the length in bytes of the given buffer.

Enums§

WriteInteger
An operation that writes an integer. The cursor will be moved ahead by n bytes, n depending on the integer’s encoded size.

Traits§

EncodableInteger
An integer that is encodable.
WithOrWithoutSerde