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
I encountered an encoding error when opening the files_exploits.csv. When opening the current up-to-date csv from the ExploitDB Repo (Commit cbe784b0 from 09.09.2023), I got an UnicodeDecodeError 'charmap' codec can't decode byte 0x9d in position 3767: character maps to <undefined>.
Solution was to change main.py, line 33 to with open(pdir + "/exploitdb/files_exploits.csv", encoding="utf8") as files:
If the encoding variable was not left out intentionally, maybe add this to the repo? If it was left out intentionally, you can close the issue :)
The text was updated successfully, but these errors were encountered:
I encountered an encoding error when opening the files_exploits.csv. When opening the current up-to-date csv from the ExploitDB Repo (Commit cbe784b0 from 09.09.2023), I got an UnicodeDecodeError
'charmap' codec can't decode byte 0x9d in position 3767: character maps to <undefined>
.Solution was to change main.py, line 33 to
with open(pdir + "/exploitdb/files_exploits.csv", encoding="utf8") as files:
If the encoding variable was not left out intentionally, maybe add this to the repo? If it was left out intentionally, you can close the issue :)
The text was updated successfully, but these errors were encountered: