Hi,

While using HID attack, I encounter a problem with the letter 'g', that wasn't typed.

After searching, found the solution:

Modify the file "keyseed.py" in "nh_files/modules".
In my case, because I'm using the portuguese language, I have to change:
Code:
    'pt_bin' : {
    },
to
Code:
    'pt_bin' : {
        "\x47": "left-shift g",
        "\x67": "g",
    },
I hope this helps in similar problems.