You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to analyze an Office Word document gives an error of directory or file not found.
But it refers to Excel.
I have LibreOffice installed (version 6.3)
===============================================================================
FILE: Facturas de noviembre.doc
INFO Starting emulation...
INFO Emulating an Office (VBA) file.
INFO Reading document metadata...
Traceback (most recent call last):
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 1008, in _process_file
vm.loaded_excel = load_excel(data)
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 898, in load_excel
wb = load_excel_libreoffice(data)
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 815, in load_excel_libreoffice
f = open(out_dir, 'wb')
IOError: [Errno 2] No such file or directory: '/tmp/tmp_excel_file_3513880625'
ERROR [Errno 2] No such file or directory: '/tmp/tmp_excel_file_3513880625'
The text was updated successfully, but these errors were encountered:
I alse have same issues on Windows7 x64,python2.7.18 ,and I have already fixed it like below:
Firstly ,add tempfile module the vmonkey.py
# for loggingfromcore.loggerimportlogfromcore.loggerimportCappedFileHandlerfromloggingimportLogRecordfromloggingimportFileHandler# for tempfile for Windows ,it works importtempfile_,tmpdir=tempfile.mkstemp()
Second,replace all "/tmp/tmp_word_file_" to " tmpdir+""+"tmp_word_file" as below
Trying to analyze an Office Word document gives an error of directory or file not found.
But it refers to Excel.
I have LibreOffice installed (version 6.3)
The file is analyzed here:
https://app.any.run/tasks/47980f8d-f6be-4ec3-bc56-e667fceba9ad
This is text of error:
vmonkey 0.08 - https://github.com/decalage2/ViperMonkey
THIS IS WORK IN PROGRESS - Check updates regularly!
Please report any issue at https://github.com/decalage2/ViperMonkey/issues
===============================================================================
FILE: Facturas de noviembre.doc
INFO Starting emulation...
INFO Emulating an Office (VBA) file.
INFO Reading document metadata...
Traceback (most recent call last):
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 1008, in _process_file
vm.loaded_excel = load_excel(data)
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 898, in load_excel
wb = load_excel_libreoffice(data)
File "C:\pypy\site-packages\vipermonkey-0.8-py2.7.egg\vipermonkey\vmonkey.py", line 815, in load_excel_libreoffice
f = open(out_dir, 'wb')
IOError: [Errno 2] No such file or directory: '/tmp/tmp_excel_file_3513880625'
ERROR [Errno 2] No such file or directory: '/tmp/tmp_excel_file_3513880625'
The text was updated successfully, but these errors were encountered: