-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feature request: Display original filename on cuckoo web interface #81
Comments
cuckoo Sandbox should get the file with the original filename. The reason is: Malware could check at start of execution what the own file name/folder is and abort before doing anything malicious. This would also solve the issue with the displayed name :-) |
Allow me to give some background for the decision to use To address the original question I want to reference the database layout. The connection between analysis report in Cuckoo and mail is normally made via For Cuckoo to display the declared filename it would require a lot of checks and to put PeekabooAV/peekaboo/toolbox/cuckoo.py Line 295 in cb54cc4
It would be interesting to learn your routine and how the original filename in Cuckoo would ease your life. Alternatively the declared/original filename could be passed to Cuckoo via the |
...there is this joke about the AV that flagged all files with the name *.vir as malicious. Had a good detection. Do not know if the rumours are true... For static detection the file name should not matter. For dynamic detection where the file is executed everything should look as "normal" as possible. No idea if the filename is top priority or something else.... I created a new issue for the analysis. This Issue here is for the display of the file name. |
Using the idea for getting the original name into Cuckoo without actually giving it that name in the local filesystem using the REST API sketched out in #82, the name displayed in the Web UI should be fixed as a side-effect. Re-reading @Jack28's comment above I think we mean the same and already looked at the same piece of code for the solution. I'd vote to leave it at that and not try to implement any hacks for the (deprecated) embed mode as well. |
When using the REST API, submit the sample with its original filename if available via the new name_declared (meta info) property. Closes scVENUS#81 and scVENUS#82 when using api mode. No plans to add this to embed mode as well since it's deprecated anyway.
When using the REST API, submit the sample with its original filename if available via the new name_declared (meta info) property. Closes scVENUS#81 and scVENUS#82 when using api mode. No plans to add this to embed mode as well since it's deprecated anyway.
Expected Behavior
Original filenames are displayed in cuckoo web instead of their checksum
Current Behavior
Cuckoo web displays some long checksums
Possible Solution
Display the real file name on cuckoo web
Context (Environment)
That makes sometime debugging not easy when you want to find a specific analysis
The text was updated successfully, but these errors were encountered: