some progress on HID injection

This commit is contained in:
evilsocket 2019-02-20 12:24:05 +01:00
parent 6458a438db
commit e0853ade9b
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
5 changed files with 2254 additions and 38 deletions

View file

@ -0,0 +1,11 @@
package hid_recon
type Frame []byte
type Command struct {
Mode byte
HID byte
Char string
Sleep byte
Frames []Frame
}