beagle icon indicating copy to clipboard operation
beagle copied to clipboard

File Upload Problem

Open xShuden opened this issue 6 years ago • 5 comments

Hello,

I ran the application using the Docker file, but I'm getting this error when I want to upload a file. Where can I be making a mistake? Can you help me?

Error; Screenshot from 2019-04-05 20-13-04 Screenshot from 2019-04-05 20-13-20

xShuden avatar Apr 05 '19 17:04 xShuden

I'm guessing your procmon events don't fall into any of these categories: https://github.com/yampelo/beagle/blob/master/beagle/transformers/procmon_transformer.py#L15

I only had a handful of procmon exports available, and they may not have been thorough enough to cover all the values of the Operation field

Would you be willing to share your CSV? Or at least let me know the values of the Operation field you have in your CSV, you can do this easily using pandas:

import pandas as pd
df = pdf.read_csv(path_to_procmon_csv)
df.Operation.value_counts()

yampelo avatar Apr 05 '19 18:04 yampelo

I have the same problem in the "Windows Event Log" file. Windows Event and Procman file: https://yadi.sk/d/VsCMFq5_nztO7w

xShuden avatar Apr 08 '19 23:04 xShuden

hey, can you reupload the files?

yampelo avatar Nov 14 '19 00:11 yampelo

I have the same problem. So I edited the csv to only contain readfile events. These are in the https://github.com/yampelo/beagle/blob/master/beagle/transformers/procmon_transformer.py#L15.

I also ran the docker with logger at debug info and added a logger entry to the procmon_transformer. The logger statement never showed up.

So I've attached the csv so you can try. (zipped) Procmon.zip

Alrudin avatar Sep 13 '20 17:09 Alrudin

Found what prevented me from reading in the procmon files. If you use 24-hour convetion in Windows procmon will use that. a bug assumes that if no 'AM' string present in the log line time is PM. If you add 12 hours to 16 the time is 28 hours which is illegal, this causes an non caught exception in the processor threat.

Created a pull request to fix the bug.

Alrudin avatar Sep 14 '20 12:09 Alrudin