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
- ``executiondir``: Sets directory to launch the file from. Need not be the same as the directory of sample file. Defaults to %TEMP% if both executiondir and curdir are not specified. Only supports full paths
121
-
- ``free``: Run without monitoring (disables many capabilities) Ex: free=1
122
-
- ``force-sleepskip``: Override default sleep skipping behavior: 0 disables all sleep skipping, 1 skips all sleeps.
123
-
- ``full-logs``: By default, logs prior to network activity for URL analyses and prior to access of the file in question for non-executable formats are suppressed. Set to 1 to disable log suppression.
124
-
- ``force-flush``: For performance reasons, logs are buffered before being sent back to the result server. We make every attempt to flush the buffer at critical points including when exceptions occur, but in some rare termination scenarios, logs may be lost. Set to 1 to force flushing of the log buffers after any non-duplicate API is called, set to 2 to force flushing of every log.
125
-
- ``no-stealth``: Set to 1 to disable anti-anti-VM/sandbox code enabled by default.
126
-
- ``buffer-max``: When set to an integer of your choice, changes the maximum number of bytes that can be logged for most API buffers.
127
-
- ``large-buffer-max``: Some hooked APIs permit larger buffers to be logged. To change the limit for this, set this to an integer of your choice.
128
-
- ``norefer``: Disables use of a fake referrer when performing URL analyses
129
-
- ``file``: When using the zip or rar package, set the name of the file to execute
130
-
- ``password``: When using the zip or rar package, set the password to use for extraction. Also used when analyzing password-protected Office documents.
131
-
- ``function``: When using the dll package, set the name of the exported function to execute
132
-
- ``dllloader``: When using the dll package, set the name of the process loading the DLL (defaults to rundll32.exe).
133
-
- ``arguments``: When using the dll, exe, or python packages, set the arguments to be passed to the executable or exported function.
134
-
- ``appdata``: When using the exe package, set to 1 to run the executable out of the Application Data path instead of the Temp directory.
135
-
- ``startbrowser``: Setting this option to 1 will launch a browser 30 seconds into the analysis (useful for some banking trojans).
136
-
- ``browserdelay``: Sets the number of seconds to wait before starting the browser with the startbrowser option. Defaults to 30 seconds.
137
-
- ``url``: When used with the startbrowser option, this will determine the URL the started browser will access.
138
-
- ``debug``: Set to 1 to enable reporting of critical exceptions occurring during analysis, set to 2 to enable reporting of all exceptions.
139
-
- ``disable_hook_content``: Set to 1 to remove functionality of all hooks except those critical for monitoring other processes. Set to 2 to apply to all hooks.
140
-
- ``hook-type``: Valid for 32-bit analyses only. Specifies the hook type to use: direct, indirect, or safe. Safe attempts a Detours-style hook.
141
-
- ``serial``: Spoof the serial of the system volume as the provided hex value
142
-
- ``single-process``: When set to 1 this will limit behavior monitoring to the initial process only.
143
-
- ``exclude-apis``: Exclude the colon-separated list of APIs from being hooked
144
-
- ``exclude-dlls``: Exclude the colon-separated list of DLLs from being hooked
145
-
- ``dropped-limit``: Override the default dropped file limit of 100 files
146
-
- ``compression``: When set to 1 this will enable CAPE's extraction of compressed payloads
147
-
- ``extraction``: When set to 1 this will enable CAPE's extraction of payloads from within each process
148
-
- ``injection``: When set to 1 this will enable CAPE's capture of injected payloads between processes
149
-
- ``combo``: This combines compression, injection and extraction with process dumps
150
-
- ``dump-on-api``: Dump the calling module when a function from the colon-separated list of APIs is used
151
-
- ``bp0``: Sets breakpoint 0 (processor/hardware) to a VA or RVA value (or module::export). Applies also to bp1-bp3.
152
-
- ``file-offsets``: Breakpoints in bp0-bp3 will be interpreted as PE file offsets rather than RVAs
153
-
- ``break-on-return``: Sets breakpoints on the return address(es) from a colon-separated list of APIs
154
-
- ``base-on-api``: Sets the base address to which breakpoints will be applied (and sets breakpoints)
155
-
- ``depth``: Sets the depth an instruction trace will step into (defaults to 0, requires Trace package)
156
-
- ``count``: Sets the number of instructions in a trace (defaults to 128, requires Trace package)
157
-
- ``referrer``: Specify the referrer to be used for URL tasks, overriding the default Google referrer
158
-
- ``loop_detection``: Set this option to 1 to enable loop detection (compress call logs - behavior analysis)
159
-
- ``static``: Check if config can be extracted statically, if not, send to vm
160
-
- ``Dl&Exec add headers``: Example: dnl_user_agent: "CAPE Sandbox", dnl_referrer: google
161
-
- ``servicedesc`` - for service package: Service description
162
-
- ``arguments`` - for service package: Service arguments
163
-
- ``store_memdump``: Will force STORE memdump, only when submitting to analyzer node directly, as distributed cluster can modify this
164
-
- ``pre_script_args``: Command line arguments for pre_script. Example: pre_script_args=file1 file2 file3
165
-
- ``pre_script_timeout``: pre_script_timeout will default to 60 seconds. Script will stop after timeout Example: pre_script_timeout=30
166
-
- ``during_script_args``: Command line arguments for during_script. Example: during_script_args=file1 file2 file3
167
-
- ``pwsh``: - for ps1 package: prefer PowerShell Core, if available in the vm
168
-
- ``check_shellcode``: - Setting check_shellcode=0 will disable checking for shellcode during package identification and extracting from archive
169
-
- ``unhook-apis``: - capability to dynamically unhook previously hooked functions (unhook-apis option takes colon-separated list e.g. unhook-apis=NtSetInformationThread:NtDelayExecution)
170
-
- ``ttd``: - ttd=1. TTD integration (Microsoft Time Travel Debugging). Place TTD binaries in analyzer/windows/bin (with wow64 subdirectory for 32-bit). .trc files output to TTD directory in results folder for manual retrieval
116
+
117
+
Analysis options can be specified at submission time in the format ``option1=val1,option2=val2``. These options control the behavior of the monitor and analyzer during detonation.
118
+
119
+
Submission & General
120
+
^^^^^^^^^^^^^^^^^^^^
121
+
- ``filename``: Rename the sample file within the guest environment.
122
+
- ``name``: Force family extractor to run for a specific family (e.g., ``name=trickbot``).
123
+
- ``curdir``: Change the execution directory (default is ``%TEMP%``). Supports environment variables like ``%APPDATA%``.
124
+
- ``executiondir``: Sets the directory to launch the file from. Must be a full path.
125
+
- ``arguments``: Command line arguments to pass to the initial process or exported function.
126
+
- ``appdata``: Set to ``1`` to run the executable from the ``AppData`` path instead of ``Temp``.
127
+
- ``file``: For Zip/Rar packages, specify which file within the archive to execute.
128
+
- ``password``: Password for archive extraction or protected Office documents.
129
+
- ``function``: For DLL packages, specify exported function name(s) or ordinals (colon-separated).
130
+
- ``dllloader``: Specify a process name to fake the DLL launcher (default is ``rundll32.exe``).
131
+
- ``pwsh``: For PS1 package, prefer PowerShell Core (``pwsh.exe``) if available.
132
+
- ``ignore_size_check``: Allow ignoring file size limits (must be enabled in ``conf/web.conf``).
133
+
- ``check_shellcode``: Set to ``0`` to disable shellcode detection during package identification.
134
+
- ``pre_script_args`` / ``during_script_args``: Command line arguments for pre/during-execution scripts.
135
+
- ``pre_script_timeout``: Timeout for pre-execution script (default 60s).
136
+
- ``servicedesc`` / ``servicename``: Custom name and description for Service packages.
137
+
- ``lang``: Override the system language code (LCID).
138
+
- ``standalone``: Run in standalone mode without a Cuckoo pipe.
139
+
- ``monitor``: Inject the monitor into a specific PID or explorer (useful for interactive mode).
140
+
- ``shutdown-mutex``: Name of the mutex that signals a shutdown/termination.
141
+
- ``terminate-event``: Name of the event set by the analyzer to signal termination.
142
+
- ``terminate-processes``: If true, terminate processes when ``terminate-event`` is signaled.
143
+
- ``first-process``: (Internal) Flag indicating if this is the first process in the analysis tree.
144
+
- ``startup-time``: Milliseconds since system startup.
145
+
146
+
Monitor & Evasion
147
+
^^^^^^^^^^^^^^^^^
148
+
- ``free``: Run without monitoring (disables many capabilities for stealth or performance).
149
+
- ``no-stealth``: Set to ``1`` to disable built-in anti-anti-VM/sandbox tricks.
0 commit comments