utimaco
utimaco copied to clipboard
NameError: global name 'msg' is not defined
Hi @fotisl,
Really nice talk on RECON BRUSSELS 2017! Thanks a lot for sharing knowledge with everybody. I'm trying to play a little bit with the exploit but I'm getting the error below.
$ python readvmbk1.py
Traceback (most recent call last):
File "readvmbk1.py", line 114, in <module>
c.connect()
File "readvmbk1.py", line 90, in connect
return self._connect_net(msg)
NameError: global name 'msg' is not defined
In my case I'm trying to retrieve the "FLASH\VMBK1.db" from a remote CryptoServer device so I changed the line below in your python script with my device IP address before run it.
c = cs2('192.168.1.35')
I took a look on the code and I couldn't figure out where or how the "msg" should be assigned a value. Could you please help me to get this exploit working? Thanks!