Questions tagged [cuckoo]

Cuckoo Sandbox is an open source automated malware analysis system

Cuckoo Sandbox

Cuckoo is an open source automated malware analysis system. You can throw any suspicious file at it and in a matter of minutes Cuckoo will provide a detailed report outlining the behavior of the file when executed inside a realistic but isolated environment.

Cuckoo Sandbox is free software that automated the task of analyzing any malicious file under Windows, OS X, Linux, and Android.

What can it do?

Cuckoo is an advanced, extremely modular, and 100% open source automated malware analysis system with infinite application opportunities. By default it is able to:

  • Analyze many different malicious files (executables, office documents, pdf files, emails, etc) as well as malicious websites under Windows, Linux, Mac OS X, and Android virtualized environments.

  • Trace API calls and general behavior of the file and distill this into high level information and signatures comprehensible by anyone.

  • Dump and analyze network traffic, even when encrypted with SSL/TLS. With native network routing support to drop all traffic or route it through InetSIM, a network interface, or a VPN.

  • Perform advanced memory analysis of the infected virtualized system through Volatility as well as on a process memory granularity using YARA. Due to Cuckoo's open source nature and extensive modular design one may customize any aspect of the analysis environment, analysis results processing, and reporting stage. Cuckoo provides you all the requirements to easily integrate the sandbox into your existing framework and backend in the way you want, with the format you want, and all of that without licensing requirements.

References

40 questions
12
votes
3 answers

AttributeError: 'Request' object has no attribute 'is_xhr'

I am trying to run cuckoo api. Cuckoo web is working fine on my system. But when I tried cuckoo api, I got the following error: File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1982, in wsgi_app response =…
Meena Bharti
  • 161
  • 1
  • 2
  • 6
7
votes
2 answers

Add module inside cuckoo sandbox

For malware dynamic malware analysis, I am using Automated Malware Analysis - Cuckoo Sandbox. Now I wan to add new modules for analysis on malware. I have studied cuckoo sandbox's development documentation. But currently I am unable to add my custom…
3
votes
1 answer

Cannot call value of non-function type, swift + cuckoo mocking framework

I'm trying to mock a service with cuckoo in swift. Here's the original function in the service: typealias GetAppConfigCompletionHandler = (_ response: AppConfig) -> Void func getAppConfig(delegate: ErrorCoordinatorDelegate, …
Async-
  • 3,140
  • 4
  • 27
  • 49
3
votes
1 answer

Using Cuckoo sandbox platform for dynamically analyzing multiple file samples

I'm trying to run more than one sample at the same time in a single guest VM, for efficiency reasons, something that will be even more efficient than the distributed cuckoo solution, or using a few guest VMs. For example, to submit a few URLs, so…
Michael
  • 796
  • 11
  • 27
2
votes
2 answers

Cuckoo version 2.0.3 installation: agent.py not installing on virtualbox guest windows7

I'm completely new in malware research analysis field. I am trying to install cuckoo sandbox 2.0.3. It looks like it has been installed, because when I run the command $cuckoo it shows: I have windows 7 as guest in the VirtualBox and I have copied…
Es91ar
  • 29
  • 6
2
votes
1 answer

Cuckoo sandbox: shows "Configuration details about machine windows_7 are missing" error

I have installed cuckoo sandbox in ubuntu environment with windows7 32 bit as guest os. I have followed the instructions given in their website.The vm is named windows_7. I have edited the "machine" and "label" field properly in "virtualbox.conf".…
Kevin Ð Alwis
  • 165
  • 1
  • 1
  • 13
2
votes
2 answers

Cuckoo sandbox: showing CuckooCriticalError:Please update your configuration

I have installed cuckoo sandbox with windows7 32 bit as guest os. I have edited the "machine" and "label" field properly in "virtualbox.conf". The vm is named yo-7. But I am getting this error "[root] CRITICAL: CuckooCriticalError: Please update…
1
vote
1 answer

MongoDB: command SON([('listCollections', 1), ('cursor', {})]) on namespace cuckoo.$cmd failed: Unsupported OP_QUERY command

I am trying to connect cuckoo and mongodb. I download mongodb and cuckoo. When I write cuckoo command to start cuckoo it gives error: 2023-01-09 04:21:22,515 [cuckoo] CRITICAL: CuckooCriticalError: Unable to connect to MongoDB: command…
1
vote
0 answers

cuckoo-ERROR: AttributeError: 'NoneType' object has no attribute 'shutdown'

I run cuckoo,but it stopped,display like this: ''' 2021-12-09 18:50:38,135 [cuckoo.core.scheduler] INFO: Using "virtualbox" as machine manager Oops! Cuckoo failed in an unhandled exception! Sometimes bugs are already fixed in the development…
1
vote
1 answer

Problems with initialize Cuckoo

I tryed to install last Cuckoo version on my physical machine Windows 10. And I use python 2.7.16. I have Cuckoo installed and its dependencies too, but I cann't initialize it: File "c:\python27\lib\runpy.py", line 174, in _run_module_as_main …
1
vote
0 answers

cuckoo sandbox integration in java

Please can anyone help for cuckoo sandbox integration for file and URL scan and than how to get the analysis report after the scan, i haven't got any idea for cuckoo sandbox integration in java even the official documentation and git repository used…
Satya Prakash
  • 676
  • 7
  • 15
1
vote
1 answer

Cuckoo sandbox, api error after installation

I'm investigating the possibility of using cuckoo sandbox as a malware detonator in series with Cortex. I've (seemingly) installed all of the dependencies, enabled reporting, and elasticsearch in the config files, and started the webserver using…
1
vote
1 answer

How to clear pending analysis in Cuckoo sandbox platform

I am testing malware detection on guest VM using Cuckoo sandbox platform. To speed up the analysis, I want to remove pending analysis but keep completed analysis. Cuckoo have --clean option but it will clean all tasks and samples. Can you think of…
1
vote
1 answer

Cuckoo file analysis issue

When submitting a binary for analysis in cuckoo, it doesn't appear to do anything. I am able to ping between the VM and host OS (Ubuntu 14.04 LTS), python 2.7 and PIL is installed on the VM (Windows 7 32bit). Cuckoo is able to spin up the VM…
0
votes
0 answers

cuckoo service web Unable to connect to MongoDB

I am following to install cuckoo sandbox with docker: https://github.com/blacktop/docker-cuckoo I did docker-compose up -d. Mongo start but web service does not start it tryes to connect mongo. I got: CuckooCriticalError: Unable to connect to…
Raul Cejas
  • 399
  • 4
  • 13
1
2 3