Fibocom FM350-GL Support

In case anyone needs to FCC unlock their Dell DW5931e / DW5931e-eSIM, I've found the vendor ID hash that will do that: 4909b5a4

I couldn't get the script with the 3df8c719 hash to work with my modem even after changing the hash, but when I execute the AT commands manually the same calculation with the 4909b5a4 hash does work and unlocks the modem for use.

For those who are curious, the vendor ID hashes can be generated with the following commands:

# Lenovo (and others?): 3df8c719
printf "%.8s" $(echo -n "KHOIHGIUCCHHII" | sha256sum | cut -d ' ' -f 1)

# Dell DW5931e / DW5931e-eSIM: 4909b5a4
printf "%.8s" $(echo -n "DW5931EFCCLOCK" | sha256sum | cut -d ' ' -f 1)
4 Likes