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 found a issue of Version 1.8.2.
Noriben will crash with the following message, when I specify "--pml".
Traceback (most recent call last):
File "Noriben.py", line 1488, in
main()
File "Noriben.py", line 1365, in main
with open(timeline_file, newline='', encoding='utf-8') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'Noriben_06_Jul_18__12_31_034122_timeline.csv'
I found a bug around 1364 line.
print('[*] Saving timeline to: {}'.format(timeline_file))
# codecs.open(timeline_file, 'w', 'utf-8').write('\r\n'.join(timeline))
with open(timeline_file, newline='', encoding='utf-8') as f:
writer = csv.writer(f)
writer.writerows(timeline)
I modified it such as following. It seems to work.
print('[*] Saving timeline to: {}'.format(timeline_file))
codecs.open(timeline_file, 'w', 'utf-8').write('\r\n'.join(timeline))
# with open(timeline_file, newline='', encoding='utf-8') as f:
# writer = csv.writer(f)
# writer.writerows(timeline)
The text was updated successfully, but these errors were encountered:
The bug was that I left out the 'w' from the open() on line , which made the code try to read an existing file instead of create a new one. From your error message, it appears your code is 1.8.1?
I found a issue of Version 1.8.2.
Noriben will crash with the following message, when I specify "--pml".
I found a bug around 1364 line.
I modified it such as following. It seems to work.
The text was updated successfully, but these errors were encountered: