| 20 | }; |
| 21 | |
| 22 | class ShellcodeContainer { |
| 23 | public: |
| 24 | UINT32 size; |
| 25 | std::vector<ShellcodeItem *> codes; |
| 26 | |
| 27 | void push(ShellcodeItem *); |
| 28 | |
| 29 | ShellcodeItem *pop(); |
| 30 | |
| 31 | ~ShellcodeContainer(); |
| 32 | }; |
| 33 | |
| 34 | class ShellcodeSplitor { |
| 35 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected