├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── INSTALL.md ├── README.md ├── agent ├── agent.py └── agent.sh ├── analyzer ├── __init__.py ├── android │ ├── __init__.py │ ├── analyzer.py │ ├── config │ │ └── hooks.json │ ├── lib │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── adb.py │ │ │ └── screenshot.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── abstracts.py │ │ │ ├── constants.py │ │ │ ├── exceptions.py │ │ │ ├── results.py │ │ │ └── utils.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── packages.py │ │ │ └── startup.py │ └── modules │ │ ├── __init__.py │ │ ├── auxiliary │ │ ├── __init__.py │ │ └── screenshots.py │ │ └── packages │ │ ├── __init__.py │ │ ├── apk.py │ │ └── default_browser.py ├── darwin │ ├── __init__.py │ ├── analyzer.py │ ├── lib │ │ ├── __init__.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── hashing.py │ │ │ ├── rand.py │ │ │ └── results.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── data │ │ │ │ ├── signatures.yml │ │ │ │ └── types.yml │ │ │ ├── filetimes.py │ │ │ ├── host.py │ │ │ ├── osx.py │ │ │ └── packages.py │ │ └── dtrace │ │ │ ├── __init__.py │ │ │ ├── apicalls.d │ │ │ ├── apicalls.py │ │ │ ├── autoprobes.py │ │ │ ├── common.py │ │ │ ├── dtruss.py │ │ │ ├── dtruss.sh │ │ │ ├── follow_children.d │ │ │ ├── ipconnections.d │ │ │ └── ipconnections.py │ └── modules │ │ ├── __init__.py │ │ └── packages │ │ ├── __init__.py │ │ ├── app.py │ │ ├── bash.py │ │ ├── macho.py │ │ └── zip.py ├── linux │ ├── analyzer.py │ ├── lib │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── process.py │ │ │ └── tracer.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── abstracts.py │ │ │ ├── constants.py │ │ │ ├── exceptions.py │ │ │ ├── hashing.py │ │ │ ├── results.py │ │ │ └── utils.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── netlog.py │ │ │ └── startup.py │ └── modules │ │ ├── __init__.py │ │ ├── auxiliary │ │ ├── __init__.py │ │ ├── lkm.py │ │ └── stap.py │ │ └── packages │ │ ├── __init__.py │ │ └── generic.py └── windows │ ├── analyzer.py │ ├── bin │ ├── cuckoomon.dll │ ├── cuckoomon_bson.dll │ ├── cuckoomon_netlog.dll │ ├── execsc.exe │ ├── inject-x64.exe │ ├── inject-x86.exe │ ├── is32bit.exe │ ├── monitor-x64.dll │ └── monitor-x86.dll │ ├── lib │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── process.py │ │ └── screenshot.py │ ├── common │ │ ├── __init__.py │ │ ├── abstracts.py │ │ ├── constants.py │ │ ├── defines.py │ │ ├── errors.py │ │ ├── exceptions.py │ │ ├── hashing.py │ │ ├── rand.py │ │ └── results.py │ └── core │ │ ├── __init__.py │ │ ├── config.py │ │ ├── packages.py │ │ ├── pipe.py │ │ ├── privileges.py │ │ └── startup.py │ └── modules │ ├── __init__.py │ ├── auxiliary │ ├── __init__.py │ ├── disguise.py │ ├── dumptls.py │ ├── human.py │ ├── installcert.py │ └── screenshots.py │ └── packages │ ├── __init__.py │ ├── applet.py │ ├── bin.py │ ├── com.py │ ├── cpl.py │ ├── dll.py │ ├── doc.py │ ├── exe.py │ ├── ff.py │ ├── generic.py │ ├── ie.py │ ├── jar.py │ ├── js.py │ ├── msi.py │ ├── pdf.py │ ├── ppt.py │ ├── ps1.py │ ├── python.py │ ├── vbs.py │ ├── xls.py │ └── zip.py ├── conf ├── auxiliary.conf ├── avd.conf ├── cuckoo.conf ├── esx.conf ├── kvm.conf ├── memory.conf ├── physical.conf ├── processing.conf ├── qemu.conf ├── reporting.conf ├── virtualbox.conf ├── vmware.conf ├── vsphere.conf └── xenserver.conf ├── cuckoo.py ├── data ├── __init__.py ├── android │ ├── anti-vm │ │ ├── fake-build.prop │ │ ├── fake-cpuinfo │ │ └── fake-drivers │ ├── apps │ │ ├── ImportContacts.apk │ │ ├── Superuser.apk │ │ └── de.robv.android.xposed.installer_v33_36570c.apk │ ├── binaries │ │ └── su │ ├── create_guest_avd.sh │ └── hooking │ │ ├── Droidmon.apk │ │ └── EmulatorAntiDetect.apk ├── html │ ├── base-report.html │ ├── base-web.html │ ├── browse.html │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap.min.css │ ├── error.html │ ├── graphic │ │ └── logo.html │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── bootstrap.min.js │ │ ├── functions.js │ │ └── jquery.min.js │ ├── pagination-menu.html │ ├── pagination-rpp.html │ ├── report.html │ ├── sections │ │ ├── behavior.html │ │ ├── dropped.html │ │ ├── errors.html │ │ ├── file.html │ │ ├── info.html │ │ ├── network.html │ │ ├── screenshots.html │ │ ├── signatures.html │ │ ├── static.html │ │ ├── url.html │ │ └── volatility.html │ ├── submit.html │ └── success.html ├── mitm.py ├── peutils │ └── UserDB.TXT ├── src │ └── binpackage │ │ ├── Makefile │ │ └── execsc.c ├── strace.stp ├── test-internet.vbs └── yara │ ├── binaries │ ├── embedded.yar │ ├── shellcodes.yar │ └── vmdetect.yar │ ├── memory │ ├── .gitignore │ └── index_memory.yar │ └── urls │ └── .gitignore ├── distributed ├── alembic.ini ├── app.py ├── distributed │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── db.py │ ├── exception.py │ └── views │ │ ├── __init__.py │ │ └── api.py ├── instance.py ├── migration │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 151400d38e03_node_status_timestamp_index.py │ │ ├── 166078eb1311_change_node_id_to_name.py │ │ ├── 2aa59981b59d_node_task_not_unique.py │ │ ├── 37c08c9655bb_initial_database.py │ │ ├── 3cc1509b7fdc_node_status.py │ │ ├── 3d1d8fd2cdbb_timestamps.py │ │ ├── 4b86bc0d40aa_node_mode.py │ │ ├── 4d0a2590e997_node_task_index.py │ │ └── 69ecf07a99b_finished_to_status.py ├── requirements.txt └── settings.py ├── docs ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── README └── book │ └── src │ ├── Makefile │ ├── _images │ ├── logo │ │ └── cuckoo.png │ ├── schemas │ │ └── architecture-main.png │ └── screenshots │ │ ├── fog_host_management.png │ │ ├── fog_image_management.png │ │ ├── fog_scheduled_job.png │ │ ├── shared_folders.png │ │ ├── windows_network.png │ │ ├── windows_registry.png │ │ └── windows_security.png │ ├── conf.py │ ├── customization │ ├── auxiliary.rst │ ├── index.rst │ ├── machinery.rst │ ├── packages.rst │ ├── processing.rst │ ├── reporting.rst │ └── signatures.rst │ ├── development │ ├── code_style.rst │ ├── development_notes.rst │ └── index.rst │ ├── faq │ └── index.rst │ ├── finalremarks │ └── index.rst │ ├── index.rst │ ├── installation │ ├── guest │ │ ├── agent.rst │ │ ├── cloning.rst │ │ ├── creation.rst │ │ ├── index.rst │ │ ├── network.rst │ │ ├── requirements.rst │ │ └── saving.rst │ ├── guest_physical │ │ ├── creation.rst │ │ ├── index.rst │ │ ├── network.rst │ │ ├── requirements.rst │ │ └── saving.rst │ ├── host │ │ ├── configuration.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ └── requirements.rst │ ├── index.rst │ └── upgrade.rst │ ├── introduction │ ├── index.rst │ ├── license.rst │ ├── sandboxing.rst │ └── what.rst │ └── usage │ ├── api.rst │ ├── clean.rst │ ├── dist.rst │ ├── index.rst │ ├── packages.rst │ ├── results.rst │ ├── start.rst │ ├── submit.rst │ ├── utilities.rst │ └── web.rst ├── lib ├── __init__.py └── cuckoo │ ├── __init__.py │ ├── common │ ├── __init__.py │ ├── abstracts.py │ ├── colors.py │ ├── compare.py │ ├── config.py │ ├── constants.py │ ├── defines.py │ ├── dns.py │ ├── exceptions.py │ ├── irc.py │ ├── logo.py │ ├── netlog.py │ ├── objects.py │ ├── utils.py │ └── virustotal.py │ └── core │ ├── __init__.py │ ├── database.py │ ├── guest.py │ ├── plugins.py │ ├── resultserver.py │ ├── scheduler.py │ └── startup.py ├── modules ├── __init__.py ├── auxiliary │ ├── __init__.py │ ├── mitm.py │ └── sniffer.py ├── machinery │ ├── __init__.py │ ├── avd.py │ ├── esx.py │ ├── kvm.py │ ├── physical.py │ ├── qemu.py │ ├── virtualbox.py │ ├── vmware.py │ ├── vsphere.py │ └── xenserver.py ├── processing │ ├── __init__.py │ ├── analysisinfo.py │ ├── apkinfo.py │ ├── behavior.py │ ├── buffer.py │ ├── debug.py │ ├── droidmon.py │ ├── dropped.py │ ├── dumptls.py │ ├── googleplay.py │ ├── memory.py │ ├── network.py │ ├── platform │ │ ├── __init__.py │ │ ├── linux.py │ │ └── windows.py │ ├── procmemory.py │ ├── screenshots.py │ ├── static.py │ ├── strings.py │ ├── targetinfo.py │ └── virustotal.py ├── reporting │ ├── __init__.py │ ├── jsondump.py │ ├── mongodb.py │ └── reporthtml.py └── signatures │ ├── __init__.py │ ├── creates_exe.py │ └── generic_metrics.py ├── requirements.txt ├── tests ├── abstracts_tests.py ├── assets │ ├── probes │ │ └── test_probes_integration.d.reference │ ├── test_apicalls_basic.c │ ├── test_apicalls_children.c │ ├── test_apicalls_children_root.c │ ├── test_apicalls_errno.c │ ├── test_apicalls_errno_root.c │ ├── test_apicalls_from_dynamic_library.c │ ├── test_apicalls_from_dynamic_library_root.c │ ├── test_apicalls_root.c │ ├── test_apicalls_timeout.c │ ├── test_apicalls_timeout_root.c │ ├── test_apicalls_with_args.c │ ├── test_apicalls_with_args_root.c │ ├── test_apicalls_without_target.c │ ├── test_cuckoo_dropped_files │ ├── test_cuckoo_dropped_files.c │ ├── test_cuckoo_parents_and_children │ ├── test_cuckoo_parents_and_children.c │ ├── test_dtruss_children.c │ ├── test_dtruss_helloworld.c │ ├── test_dtruss_non_root.c │ ├── test_dtruss_root.c │ ├── test_dtruss_specific_syscall.c │ ├── test_dtruss_timeout.c │ ├── test_dtruss_with_args.c │ ├── test_dtruss_without_target.c │ ├── test_ipconnections_empty.c │ ├── test_ipconnections_target_with_args.c │ ├── test_ipconnections_tcp.c │ ├── test_ipconnections_tcp_with_timeout.c │ └── test_ipconnections_udp.c ├── colors_tests.py ├── common.py ├── config_tests.py ├── database_tests.py ├── integrity.py ├── objects_tests.py ├── processor_tests.py ├── reporter_tests.py ├── sniffer_tests.py ├── test_analyzer.py ├── test_apicalls.py ├── test_cuckoo.py ├── test_dtruss.py ├── test_ipconnections.py ├── test_packages.py ├── test_probesgenerator.py └── utils_tests.py ├── utils ├── api.py ├── community.py ├── darwin │ ├── bootstrap_guest.sh │ └── bootstrap_host.sh ├── db_migration │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── from_0_6_to_1_1.py │ │ ├── from_1_1_to_1_2-added_states.py │ │ ├── from_1_1_to_1_2-extend_file_type.py │ │ └── from_1_2_to_1_3-add_task_owner.py ├── machine.py ├── process.py ├── process2.py ├── service.sh ├── setup.sh ├── start-distributed.sh ├── stats.py ├── stop-distributed.sh ├── submit.py └── web.py └── web ├── analysis ├── __init__.py ├── forms.py ├── templatetags │ ├── __init__.py │ └── analysis_tags.py ├── urls.py └── views.py ├── compare ├── __init__.py ├── urls.py └── views.py ├── dashboard ├── __init__.py ├── urls.py └── views.py ├── manage.py ├── static ├── css │ ├── bootstrap.min.css │ ├── lightbox.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── graphic │ ├── background.png │ └── cuckoo.png ├── img │ ├── close.png │ ├── loading.gif │ ├── next.png │ └── prev.png └── js │ ├── bootstrap-fileupload.js │ ├── bootstrap.min.js │ ├── hexdump.js │ ├── jquery.js │ └── lightbox.js ├── submission ├── __init__.py ├── urls.py └── views.py ├── templates ├── analysis │ ├── admin │ │ └── index.html │ ├── behavior │ │ ├── _api_call.html │ │ ├── _chunk.html │ │ ├── _processes.html │ │ ├── _search.html │ │ ├── _search_results.html │ │ ├── _tree.html │ │ ├── _tree_process.html │ │ └── index.html │ ├── buffers │ │ └── index.html │ ├── dropped │ │ └── index.html │ ├── index.html │ ├── memory │ │ ├── _apihooks.html │ │ ├── _callbacks.html │ │ ├── _devicetree.html │ │ ├── _gdt.html │ │ ├── _idt.html │ │ ├── _malfind.html │ │ ├── _messagehooks.html │ │ ├── _modscan.html │ │ ├── _pslist.html │ │ ├── _ssdt.html │ │ ├── _svcscan.html │ │ ├── _timers.html │ │ ├── _yarascan.html │ │ └── index.html │ ├── network │ │ ├── _dns.html │ │ ├── _hosts.html │ │ ├── _http.html │ │ ├── _icmp.html │ │ ├── _irc.html │ │ ├── _tcp.html │ │ ├── _udp.html │ │ └── index.html │ ├── overview │ │ ├── _file.html │ │ ├── _info.html │ │ ├── _screenshots.html │ │ ├── _signatures.html │ │ ├── _summary.html │ │ ├── _url.html │ │ └── index.html │ ├── pending.html │ ├── procmemory │ │ └── index.html │ ├── report.html │ ├── search.html │ └── static │ │ ├── _antivirus.html │ │ ├── _pe32.html │ │ ├── _strings.html │ │ └── index.html ├── base.html ├── compare │ ├── _info.html │ ├── _summary_table.html │ ├── both.html │ ├── hash.html │ └── left.html ├── dashboard │ └── index.html ├── error.html ├── footer.html ├── header.html ├── standalone_error.html ├── submission │ ├── complete.html │ ├── index.html │ └── status.html └── success.html └── web ├── __init__.py ├── headers.py ├── local_settings.py ├── settings.py ├── urls.py └── wsgi.py /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | languages: 2 | Python: true 3 | exclude_paths: 4 | - "tests/*" 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/README.md -------------------------------------------------------------------------------- /agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/agent/agent.py -------------------------------------------------------------------------------- /agent/agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/agent/agent.sh -------------------------------------------------------------------------------- /analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/android/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/__init__.py -------------------------------------------------------------------------------- /analyzer/android/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/analyzer.py -------------------------------------------------------------------------------- /analyzer/android/config/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/config/hooks.json -------------------------------------------------------------------------------- /analyzer/android/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/__init__.py -------------------------------------------------------------------------------- /analyzer/android/lib/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/api/__init__.py -------------------------------------------------------------------------------- /analyzer/android/lib/api/adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/api/adb.py -------------------------------------------------------------------------------- /analyzer/android/lib/api/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/api/screenshot.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/__init__.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/abstracts.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/constants.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/exceptions.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/android/lib/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/common/utils.py -------------------------------------------------------------------------------- /analyzer/android/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/core/__init__.py -------------------------------------------------------------------------------- /analyzer/android/lib/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/core/config.py -------------------------------------------------------------------------------- /analyzer/android/lib/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/core/packages.py -------------------------------------------------------------------------------- /analyzer/android/lib/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/lib/core/startup.py -------------------------------------------------------------------------------- /analyzer/android/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/__init__.py -------------------------------------------------------------------------------- /analyzer/android/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/auxiliary/__init__.py -------------------------------------------------------------------------------- /analyzer/android/modules/auxiliary/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/auxiliary/screenshots.py -------------------------------------------------------------------------------- /analyzer/android/modules/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/packages/__init__.py -------------------------------------------------------------------------------- /analyzer/android/modules/packages/apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/packages/apk.py -------------------------------------------------------------------------------- /analyzer/android/modules/packages/default_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/android/modules/packages/default_browser.py -------------------------------------------------------------------------------- /analyzer/darwin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/analyzer.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/lib/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/common/__init__.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/common/config.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/common/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/common/hashing.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/common/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/common/rand.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/constants.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/data/signatures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/data/signatures.yml -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/data/types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/data/types.yml -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/filetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/filetimes.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/host.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/osx.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/core/packages.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/apicalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/apicalls.d -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/apicalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/apicalls.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/autoprobes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/autoprobes.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/common.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/dtruss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/dtruss.py -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/dtruss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/dtruss.sh -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/follow_children.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/follow_children.d -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/ipconnections.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/ipconnections.d -------------------------------------------------------------------------------- /analyzer/darwin/lib/dtrace/ipconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/lib/dtrace/ipconnections.py -------------------------------------------------------------------------------- /analyzer/darwin/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/modules/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/darwin/modules/packages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/modules/packages/app.py -------------------------------------------------------------------------------- /analyzer/darwin/modules/packages/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/modules/packages/bash.py -------------------------------------------------------------------------------- /analyzer/darwin/modules/packages/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/modules/packages/macho.py -------------------------------------------------------------------------------- /analyzer/darwin/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/darwin/modules/packages/zip.py -------------------------------------------------------------------------------- /analyzer/linux/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/analyzer.py -------------------------------------------------------------------------------- /analyzer/linux/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/lib/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/api/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/lib/api/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/api/process.py -------------------------------------------------------------------------------- /analyzer/linux/lib/api/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/api/tracer.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/abstracts.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/constants.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/exceptions.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/hashing.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/common/utils.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/core/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/core/config.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/netlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/core/netlog.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/lib/core/startup.py -------------------------------------------------------------------------------- /analyzer/linux/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/modules/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/modules/auxiliary/lkm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/modules/auxiliary/lkm.py -------------------------------------------------------------------------------- /analyzer/linux/modules/auxiliary/stap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/modules/auxiliary/stap.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/modules/packages/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/linux/modules/packages/generic.py -------------------------------------------------------------------------------- /analyzer/windows/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/analyzer.py -------------------------------------------------------------------------------- /analyzer/windows/bin/cuckoomon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/cuckoomon.dll -------------------------------------------------------------------------------- /analyzer/windows/bin/cuckoomon_bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/cuckoomon_bson.dll -------------------------------------------------------------------------------- /analyzer/windows/bin/cuckoomon_netlog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/cuckoomon_netlog.dll -------------------------------------------------------------------------------- /analyzer/windows/bin/execsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/execsc.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/inject-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/inject-x64.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/inject-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/inject-x86.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/is32bit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/is32bit.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/monitor-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/monitor-x64.dll -------------------------------------------------------------------------------- /analyzer/windows/bin/monitor-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/bin/monitor-x86.dll -------------------------------------------------------------------------------- /analyzer/windows/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/api/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/api/process.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/api/screenshot.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/abstracts.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/constants.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/defines.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/errors.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/exceptions.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/hashing.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/rand.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/config.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/packages.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/pipe.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/privileges.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/lib/core/startup.py -------------------------------------------------------------------------------- /analyzer/windows/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/disguise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/disguise.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/dumptls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/dumptls.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/human.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/installcert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/installcert.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/auxiliary/screenshots.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/applet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/applet.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/bin.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/com.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/cpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/cpl.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/dll.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/doc.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/exe.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/ff.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/generic.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/ie.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/jar.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/js.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/msi.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/pdf.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/ppt.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ps1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/ps1.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/python.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/vbs.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/xls.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/analyzer/windows/modules/packages/zip.py -------------------------------------------------------------------------------- /conf/auxiliary.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/auxiliary.conf -------------------------------------------------------------------------------- /conf/avd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/avd.conf -------------------------------------------------------------------------------- /conf/cuckoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/cuckoo.conf -------------------------------------------------------------------------------- /conf/esx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/esx.conf -------------------------------------------------------------------------------- /conf/kvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/kvm.conf -------------------------------------------------------------------------------- /conf/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/memory.conf -------------------------------------------------------------------------------- /conf/physical.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/physical.conf -------------------------------------------------------------------------------- /conf/processing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/processing.conf -------------------------------------------------------------------------------- /conf/qemu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/qemu.conf -------------------------------------------------------------------------------- /conf/reporting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/reporting.conf -------------------------------------------------------------------------------- /conf/virtualbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/virtualbox.conf -------------------------------------------------------------------------------- /conf/vmware.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/vmware.conf -------------------------------------------------------------------------------- /conf/vsphere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/vsphere.conf -------------------------------------------------------------------------------- /conf/xenserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/conf/xenserver.conf -------------------------------------------------------------------------------- /cuckoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/cuckoo.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/android/anti-vm/fake-build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/anti-vm/fake-build.prop -------------------------------------------------------------------------------- /data/android/anti-vm/fake-cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/anti-vm/fake-cpuinfo -------------------------------------------------------------------------------- /data/android/anti-vm/fake-drivers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/anti-vm/fake-drivers -------------------------------------------------------------------------------- /data/android/apps/ImportContacts.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/apps/ImportContacts.apk -------------------------------------------------------------------------------- /data/android/apps/Superuser.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/apps/Superuser.apk -------------------------------------------------------------------------------- /data/android/apps/de.robv.android.xposed.installer_v33_36570c.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/apps/de.robv.android.xposed.installer_v33_36570c.apk -------------------------------------------------------------------------------- /data/android/binaries/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/binaries/su -------------------------------------------------------------------------------- /data/android/create_guest_avd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/create_guest_avd.sh -------------------------------------------------------------------------------- /data/android/hooking/Droidmon.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/hooking/Droidmon.apk -------------------------------------------------------------------------------- /data/android/hooking/EmulatorAntiDetect.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/android/hooking/EmulatorAntiDetect.apk -------------------------------------------------------------------------------- /data/html/base-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/base-report.html -------------------------------------------------------------------------------- /data/html/base-web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/base-web.html -------------------------------------------------------------------------------- /data/html/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/browse.html -------------------------------------------------------------------------------- /data/html/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /data/html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /data/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/error.html -------------------------------------------------------------------------------- /data/html/graphic/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/graphic/logo.html -------------------------------------------------------------------------------- /data/html/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /data/html/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /data/html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /data/html/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/js/functions.js -------------------------------------------------------------------------------- /data/html/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/js/jquery.min.js -------------------------------------------------------------------------------- /data/html/pagination-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/pagination-menu.html -------------------------------------------------------------------------------- /data/html/pagination-rpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/pagination-rpp.html -------------------------------------------------------------------------------- /data/html/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/report.html -------------------------------------------------------------------------------- /data/html/sections/behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/behavior.html -------------------------------------------------------------------------------- /data/html/sections/dropped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/dropped.html -------------------------------------------------------------------------------- /data/html/sections/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/errors.html -------------------------------------------------------------------------------- /data/html/sections/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/file.html -------------------------------------------------------------------------------- /data/html/sections/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/info.html -------------------------------------------------------------------------------- /data/html/sections/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/network.html -------------------------------------------------------------------------------- /data/html/sections/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/screenshots.html -------------------------------------------------------------------------------- /data/html/sections/signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/signatures.html -------------------------------------------------------------------------------- /data/html/sections/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/static.html -------------------------------------------------------------------------------- /data/html/sections/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/url.html -------------------------------------------------------------------------------- /data/html/sections/volatility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/sections/volatility.html -------------------------------------------------------------------------------- /data/html/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/submit.html -------------------------------------------------------------------------------- /data/html/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/html/success.html -------------------------------------------------------------------------------- /data/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/mitm.py -------------------------------------------------------------------------------- /data/peutils/UserDB.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/peutils/UserDB.TXT -------------------------------------------------------------------------------- /data/src/binpackage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/src/binpackage/Makefile -------------------------------------------------------------------------------- /data/src/binpackage/execsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/src/binpackage/execsc.c -------------------------------------------------------------------------------- /data/strace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/strace.stp -------------------------------------------------------------------------------- /data/test-internet.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/test-internet.vbs -------------------------------------------------------------------------------- /data/yara/binaries/embedded.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/yara/binaries/embedded.yar -------------------------------------------------------------------------------- /data/yara/binaries/shellcodes.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/yara/binaries/shellcodes.yar -------------------------------------------------------------------------------- /data/yara/binaries/vmdetect.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/yara/binaries/vmdetect.yar -------------------------------------------------------------------------------- /data/yara/memory/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/yara/memory/index_memory.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/data/yara/memory/index_memory.yar -------------------------------------------------------------------------------- /data/yara/urls/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distributed/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/alembic.ini -------------------------------------------------------------------------------- /distributed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/app.py -------------------------------------------------------------------------------- /distributed/distributed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/__init__.py -------------------------------------------------------------------------------- /distributed/distributed/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/api.py -------------------------------------------------------------------------------- /distributed/distributed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/app.py -------------------------------------------------------------------------------- /distributed/distributed/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/db.py -------------------------------------------------------------------------------- /distributed/distributed/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/exception.py -------------------------------------------------------------------------------- /distributed/distributed/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/views/__init__.py -------------------------------------------------------------------------------- /distributed/distributed/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/distributed/views/api.py -------------------------------------------------------------------------------- /distributed/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/instance.py -------------------------------------------------------------------------------- /distributed/migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/env.py -------------------------------------------------------------------------------- /distributed/migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/script.py.mako -------------------------------------------------------------------------------- /distributed/migration/versions/151400d38e03_node_status_timestamp_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/151400d38e03_node_status_timestamp_index.py -------------------------------------------------------------------------------- /distributed/migration/versions/166078eb1311_change_node_id_to_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/166078eb1311_change_node_id_to_name.py -------------------------------------------------------------------------------- /distributed/migration/versions/2aa59981b59d_node_task_not_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/2aa59981b59d_node_task_not_unique.py -------------------------------------------------------------------------------- /distributed/migration/versions/37c08c9655bb_initial_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/37c08c9655bb_initial_database.py -------------------------------------------------------------------------------- /distributed/migration/versions/3cc1509b7fdc_node_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/3cc1509b7fdc_node_status.py -------------------------------------------------------------------------------- /distributed/migration/versions/3d1d8fd2cdbb_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/3d1d8fd2cdbb_timestamps.py -------------------------------------------------------------------------------- /distributed/migration/versions/4b86bc0d40aa_node_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/4b86bc0d40aa_node_mode.py -------------------------------------------------------------------------------- /distributed/migration/versions/4d0a2590e997_node_task_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/4d0a2590e997_node_task_index.py -------------------------------------------------------------------------------- /distributed/migration/versions/69ecf07a99b_finished_to_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/migration/versions/69ecf07a99b_finished_to_status.py -------------------------------------------------------------------------------- /distributed/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/requirements.txt -------------------------------------------------------------------------------- /distributed/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/distributed/settings.py -------------------------------------------------------------------------------- /docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/AUTHORS -------------------------------------------------------------------------------- /docs/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/CHANGELOG -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/README -------------------------------------------------------------------------------- /docs/book/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/Makefile -------------------------------------------------------------------------------- /docs/book/src/_images/logo/cuckoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/logo/cuckoo.png -------------------------------------------------------------------------------- /docs/book/src/_images/schemas/architecture-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/schemas/architecture-main.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/fog_host_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/fog_host_management.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/fog_image_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/fog_image_management.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/fog_scheduled_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/fog_scheduled_job.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/shared_folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/shared_folders.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/windows_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/windows_network.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/windows_registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/windows_registry.png -------------------------------------------------------------------------------- /docs/book/src/_images/screenshots/windows_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/_images/screenshots/windows_security.png -------------------------------------------------------------------------------- /docs/book/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/conf.py -------------------------------------------------------------------------------- /docs/book/src/customization/auxiliary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/auxiliary.rst -------------------------------------------------------------------------------- /docs/book/src/customization/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/index.rst -------------------------------------------------------------------------------- /docs/book/src/customization/machinery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/machinery.rst -------------------------------------------------------------------------------- /docs/book/src/customization/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/packages.rst -------------------------------------------------------------------------------- /docs/book/src/customization/processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/processing.rst -------------------------------------------------------------------------------- /docs/book/src/customization/reporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/reporting.rst -------------------------------------------------------------------------------- /docs/book/src/customization/signatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/customization/signatures.rst -------------------------------------------------------------------------------- /docs/book/src/development/code_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/development/code_style.rst -------------------------------------------------------------------------------- /docs/book/src/development/development_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/development/development_notes.rst -------------------------------------------------------------------------------- /docs/book/src/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/development/index.rst -------------------------------------------------------------------------------- /docs/book/src/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/faq/index.rst -------------------------------------------------------------------------------- /docs/book/src/finalremarks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/finalremarks/index.rst -------------------------------------------------------------------------------- /docs/book/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/agent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/agent.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/cloning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/cloning.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/creation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/creation.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/network.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/requirements.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest/saving.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest/saving.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest_physical/creation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest_physical/creation.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest_physical/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest_physical/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest_physical/network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest_physical/network.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest_physical/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest_physical/requirements.rst -------------------------------------------------------------------------------- /docs/book/src/installation/guest_physical/saving.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/guest_physical/saving.rst -------------------------------------------------------------------------------- /docs/book/src/installation/host/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/host/configuration.rst -------------------------------------------------------------------------------- /docs/book/src/installation/host/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/host/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/host/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/host/installation.rst -------------------------------------------------------------------------------- /docs/book/src/installation/host/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/host/requirements.rst -------------------------------------------------------------------------------- /docs/book/src/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/installation/upgrade.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/introduction/index.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/introduction/license.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/sandboxing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/introduction/sandboxing.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/what.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/introduction/what.rst -------------------------------------------------------------------------------- /docs/book/src/usage/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/api.rst -------------------------------------------------------------------------------- /docs/book/src/usage/clean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/clean.rst -------------------------------------------------------------------------------- /docs/book/src/usage/dist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/dist.rst -------------------------------------------------------------------------------- /docs/book/src/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/index.rst -------------------------------------------------------------------------------- /docs/book/src/usage/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/packages.rst -------------------------------------------------------------------------------- /docs/book/src/usage/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/results.rst -------------------------------------------------------------------------------- /docs/book/src/usage/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/start.rst -------------------------------------------------------------------------------- /docs/book/src/usage/submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/submit.rst -------------------------------------------------------------------------------- /docs/book/src/usage/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/utilities.rst -------------------------------------------------------------------------------- /docs/book/src/usage/web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/docs/book/src/usage/web.rst -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/abstracts.py -------------------------------------------------------------------------------- /lib/cuckoo/common/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/colors.py -------------------------------------------------------------------------------- /lib/cuckoo/common/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/compare.py -------------------------------------------------------------------------------- /lib/cuckoo/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/config.py -------------------------------------------------------------------------------- /lib/cuckoo/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/constants.py -------------------------------------------------------------------------------- /lib/cuckoo/common/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/defines.py -------------------------------------------------------------------------------- /lib/cuckoo/common/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/dns.py -------------------------------------------------------------------------------- /lib/cuckoo/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/exceptions.py -------------------------------------------------------------------------------- /lib/cuckoo/common/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/irc.py -------------------------------------------------------------------------------- /lib/cuckoo/common/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/logo.py -------------------------------------------------------------------------------- /lib/cuckoo/common/netlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/netlog.py -------------------------------------------------------------------------------- /lib/cuckoo/common/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/objects.py -------------------------------------------------------------------------------- /lib/cuckoo/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/common/virustotal.py -------------------------------------------------------------------------------- /lib/cuckoo/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/database.py -------------------------------------------------------------------------------- /lib/cuckoo/core/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/guest.py -------------------------------------------------------------------------------- /lib/cuckoo/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/plugins.py -------------------------------------------------------------------------------- /lib/cuckoo/core/resultserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/resultserver.py -------------------------------------------------------------------------------- /lib/cuckoo/core/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/scheduler.py -------------------------------------------------------------------------------- /lib/cuckoo/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/lib/cuckoo/core/startup.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/auxiliary/__init__.py -------------------------------------------------------------------------------- /modules/auxiliary/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/auxiliary/mitm.py -------------------------------------------------------------------------------- /modules/auxiliary/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/auxiliary/sniffer.py -------------------------------------------------------------------------------- /modules/machinery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/__init__.py -------------------------------------------------------------------------------- /modules/machinery/avd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/avd.py -------------------------------------------------------------------------------- /modules/machinery/esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/esx.py -------------------------------------------------------------------------------- /modules/machinery/kvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/kvm.py -------------------------------------------------------------------------------- /modules/machinery/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/physical.py -------------------------------------------------------------------------------- /modules/machinery/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/qemu.py -------------------------------------------------------------------------------- /modules/machinery/virtualbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/virtualbox.py -------------------------------------------------------------------------------- /modules/machinery/vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/vmware.py -------------------------------------------------------------------------------- /modules/machinery/vsphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/vsphere.py -------------------------------------------------------------------------------- /modules/machinery/xenserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/machinery/xenserver.py -------------------------------------------------------------------------------- /modules/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/__init__.py -------------------------------------------------------------------------------- /modules/processing/analysisinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/analysisinfo.py -------------------------------------------------------------------------------- /modules/processing/apkinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/apkinfo.py -------------------------------------------------------------------------------- /modules/processing/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/behavior.py -------------------------------------------------------------------------------- /modules/processing/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/buffer.py -------------------------------------------------------------------------------- /modules/processing/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/debug.py -------------------------------------------------------------------------------- /modules/processing/droidmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/droidmon.py -------------------------------------------------------------------------------- /modules/processing/dropped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/dropped.py -------------------------------------------------------------------------------- /modules/processing/dumptls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/dumptls.py -------------------------------------------------------------------------------- /modules/processing/googleplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/googleplay.py -------------------------------------------------------------------------------- /modules/processing/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/memory.py -------------------------------------------------------------------------------- /modules/processing/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/network.py -------------------------------------------------------------------------------- /modules/processing/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/platform/__init__.py -------------------------------------------------------------------------------- /modules/processing/platform/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/platform/linux.py -------------------------------------------------------------------------------- /modules/processing/platform/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/platform/windows.py -------------------------------------------------------------------------------- /modules/processing/procmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/procmemory.py -------------------------------------------------------------------------------- /modules/processing/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/screenshots.py -------------------------------------------------------------------------------- /modules/processing/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/static.py -------------------------------------------------------------------------------- /modules/processing/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/strings.py -------------------------------------------------------------------------------- /modules/processing/targetinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/targetinfo.py -------------------------------------------------------------------------------- /modules/processing/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/processing/virustotal.py -------------------------------------------------------------------------------- /modules/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/reporting/__init__.py -------------------------------------------------------------------------------- /modules/reporting/jsondump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/reporting/jsondump.py -------------------------------------------------------------------------------- /modules/reporting/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/reporting/mongodb.py -------------------------------------------------------------------------------- /modules/reporting/reporthtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/reporting/reporthtml.py -------------------------------------------------------------------------------- /modules/signatures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/signatures/__init__.py -------------------------------------------------------------------------------- /modules/signatures/creates_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/signatures/creates_exe.py -------------------------------------------------------------------------------- /modules/signatures/generic_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/modules/signatures/generic_metrics.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/abstracts_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/abstracts_tests.py -------------------------------------------------------------------------------- /tests/assets/probes/test_probes_integration.d.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/probes/test_probes_integration.d.reference -------------------------------------------------------------------------------- /tests/assets/test_apicalls_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_basic.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_children.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_children_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_children_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_errno.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_errno_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_errno_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_from_dynamic_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_from_dynamic_library.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_from_dynamic_library_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_from_dynamic_library_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_timeout.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_timeout_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_timeout_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_with_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_with_args.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_with_args_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_with_args_root.c -------------------------------------------------------------------------------- /tests/assets/test_apicalls_without_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_apicalls_without_target.c -------------------------------------------------------------------------------- /tests/assets/test_cuckoo_dropped_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_cuckoo_dropped_files -------------------------------------------------------------------------------- /tests/assets/test_cuckoo_dropped_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_cuckoo_dropped_files.c -------------------------------------------------------------------------------- /tests/assets/test_cuckoo_parents_and_children: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_cuckoo_parents_and_children -------------------------------------------------------------------------------- /tests/assets/test_cuckoo_parents_and_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_cuckoo_parents_and_children.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_children.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_helloworld.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_non_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_non_root.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_root.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_specific_syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_specific_syscall.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_timeout.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_with_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_with_args.c -------------------------------------------------------------------------------- /tests/assets/test_dtruss_without_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_dtruss_without_target.c -------------------------------------------------------------------------------- /tests/assets/test_ipconnections_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_ipconnections_empty.c -------------------------------------------------------------------------------- /tests/assets/test_ipconnections_target_with_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_ipconnections_target_with_args.c -------------------------------------------------------------------------------- /tests/assets/test_ipconnections_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_ipconnections_tcp.c -------------------------------------------------------------------------------- /tests/assets/test_ipconnections_tcp_with_timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_ipconnections_tcp_with_timeout.c -------------------------------------------------------------------------------- /tests/assets/test_ipconnections_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/assets/test_ipconnections_udp.c -------------------------------------------------------------------------------- /tests/colors_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/colors_tests.py -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/config_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/config_tests.py -------------------------------------------------------------------------------- /tests/database_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/database_tests.py -------------------------------------------------------------------------------- /tests/integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/integrity.py -------------------------------------------------------------------------------- /tests/objects_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/objects_tests.py -------------------------------------------------------------------------------- /tests/processor_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/processor_tests.py -------------------------------------------------------------------------------- /tests/reporter_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/reporter_tests.py -------------------------------------------------------------------------------- /tests/sniffer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/sniffer_tests.py -------------------------------------------------------------------------------- /tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_analyzer.py -------------------------------------------------------------------------------- /tests/test_apicalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_apicalls.py -------------------------------------------------------------------------------- /tests/test_cuckoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_cuckoo.py -------------------------------------------------------------------------------- /tests/test_dtruss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_dtruss.py -------------------------------------------------------------------------------- /tests/test_ipconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_ipconnections.py -------------------------------------------------------------------------------- /tests/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_packages.py -------------------------------------------------------------------------------- /tests/test_probesgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/test_probesgenerator.py -------------------------------------------------------------------------------- /tests/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/tests/utils_tests.py -------------------------------------------------------------------------------- /utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/api.py -------------------------------------------------------------------------------- /utils/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/community.py -------------------------------------------------------------------------------- /utils/darwin/bootstrap_guest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/darwin/bootstrap_guest.sh -------------------------------------------------------------------------------- /utils/darwin/bootstrap_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/darwin/bootstrap_host.sh -------------------------------------------------------------------------------- /utils/db_migration/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/alembic.ini -------------------------------------------------------------------------------- /utils/db_migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/env.py -------------------------------------------------------------------------------- /utils/db_migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/script.py.mako -------------------------------------------------------------------------------- /utils/db_migration/versions/from_0_6_to_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/versions/from_0_6_to_1_1.py -------------------------------------------------------------------------------- /utils/db_migration/versions/from_1_1_to_1_2-added_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/versions/from_1_1_to_1_2-added_states.py -------------------------------------------------------------------------------- /utils/db_migration/versions/from_1_1_to_1_2-extend_file_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/versions/from_1_1_to_1_2-extend_file_type.py -------------------------------------------------------------------------------- /utils/db_migration/versions/from_1_2_to_1_3-add_task_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/db_migration/versions/from_1_2_to_1_3-add_task_owner.py -------------------------------------------------------------------------------- /utils/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/machine.py -------------------------------------------------------------------------------- /utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/process.py -------------------------------------------------------------------------------- /utils/process2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/process2.py -------------------------------------------------------------------------------- /utils/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/service.sh -------------------------------------------------------------------------------- /utils/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/setup.sh -------------------------------------------------------------------------------- /utils/start-distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/start-distributed.sh -------------------------------------------------------------------------------- /utils/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/stats.py -------------------------------------------------------------------------------- /utils/stop-distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/stop-distributed.sh -------------------------------------------------------------------------------- /utils/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/submit.py -------------------------------------------------------------------------------- /utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/utils/web.py -------------------------------------------------------------------------------- /web/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/__init__.py -------------------------------------------------------------------------------- /web/analysis/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/forms.py -------------------------------------------------------------------------------- /web/analysis/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/templatetags/__init__.py -------------------------------------------------------------------------------- /web/analysis/templatetags/analysis_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/templatetags/analysis_tags.py -------------------------------------------------------------------------------- /web/analysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/urls.py -------------------------------------------------------------------------------- /web/analysis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/analysis/views.py -------------------------------------------------------------------------------- /web/compare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/compare/__init__.py -------------------------------------------------------------------------------- /web/compare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/compare/urls.py -------------------------------------------------------------------------------- /web/compare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/compare/views.py -------------------------------------------------------------------------------- /web/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/dashboard/urls.py -------------------------------------------------------------------------------- /web/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/dashboard/views.py -------------------------------------------------------------------------------- /web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/manage.py -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/css/lightbox.css -------------------------------------------------------------------------------- /web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/css/style.css -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/static/graphic/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/graphic/background.png -------------------------------------------------------------------------------- /web/static/graphic/cuckoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/graphic/cuckoo.png -------------------------------------------------------------------------------- /web/static/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/img/close.png -------------------------------------------------------------------------------- /web/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/img/loading.gif -------------------------------------------------------------------------------- /web/static/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/img/next.png -------------------------------------------------------------------------------- /web/static/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/img/prev.png -------------------------------------------------------------------------------- /web/static/js/bootstrap-fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/js/bootstrap-fileupload.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/hexdump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/js/hexdump.js -------------------------------------------------------------------------------- /web/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/js/jquery.js -------------------------------------------------------------------------------- /web/static/js/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/static/js/lightbox.js -------------------------------------------------------------------------------- /web/submission/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/submission/__init__.py -------------------------------------------------------------------------------- /web/submission/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/submission/urls.py -------------------------------------------------------------------------------- /web/submission/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/submission/views.py -------------------------------------------------------------------------------- /web/templates/analysis/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/admin/index.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_api_call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_api_call.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_chunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_chunk.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_processes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_processes.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_search.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_search_results.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_tree.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/_tree_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/_tree_process.html -------------------------------------------------------------------------------- /web/templates/analysis/behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/behavior/index.html -------------------------------------------------------------------------------- /web/templates/analysis/buffers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/buffers/index.html -------------------------------------------------------------------------------- /web/templates/analysis/dropped/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/dropped/index.html -------------------------------------------------------------------------------- /web/templates/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/index.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_apihooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_apihooks.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_callbacks.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_devicetree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_devicetree.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_gdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_gdt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_idt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_idt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_malfind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_malfind.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_messagehooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_messagehooks.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_modscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_modscan.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_pslist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_pslist.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_ssdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_ssdt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_svcscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_svcscan.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_timers.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_yarascan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/_yarascan.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/memory/index.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_dns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_dns.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_hosts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_hosts.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_http.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_icmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_icmp.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_irc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_irc.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_tcp.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_udp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/_udp.html -------------------------------------------------------------------------------- /web/templates/analysis/network/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/network/index.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_file.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_info.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_screenshots.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_signatures.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_summary.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/_url.html -------------------------------------------------------------------------------- /web/templates/analysis/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/overview/index.html -------------------------------------------------------------------------------- /web/templates/analysis/pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/pending.html -------------------------------------------------------------------------------- /web/templates/analysis/procmemory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/procmemory/index.html -------------------------------------------------------------------------------- /web/templates/analysis/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/report.html -------------------------------------------------------------------------------- /web/templates/analysis/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/search.html -------------------------------------------------------------------------------- /web/templates/analysis/static/_antivirus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/static/_antivirus.html -------------------------------------------------------------------------------- /web/templates/analysis/static/_pe32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/static/_pe32.html -------------------------------------------------------------------------------- /web/templates/analysis/static/_strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/static/_strings.html -------------------------------------------------------------------------------- /web/templates/analysis/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/analysis/static/index.html -------------------------------------------------------------------------------- /web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/base.html -------------------------------------------------------------------------------- /web/templates/compare/_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/compare/_info.html -------------------------------------------------------------------------------- /web/templates/compare/_summary_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/compare/_summary_table.html -------------------------------------------------------------------------------- /web/templates/compare/both.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/compare/both.html -------------------------------------------------------------------------------- /web/templates/compare/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/compare/hash.html -------------------------------------------------------------------------------- /web/templates/compare/left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/compare/left.html -------------------------------------------------------------------------------- /web/templates/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/dashboard/index.html -------------------------------------------------------------------------------- /web/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/error.html -------------------------------------------------------------------------------- /web/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/footer.html -------------------------------------------------------------------------------- /web/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/header.html -------------------------------------------------------------------------------- /web/templates/standalone_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/standalone_error.html -------------------------------------------------------------------------------- /web/templates/submission/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/submission/complete.html -------------------------------------------------------------------------------- /web/templates/submission/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/submission/index.html -------------------------------------------------------------------------------- /web/templates/submission/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/submission/status.html -------------------------------------------------------------------------------- /web/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/templates/success.html -------------------------------------------------------------------------------- /web/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/__init__.py -------------------------------------------------------------------------------- /web/web/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/headers.py -------------------------------------------------------------------------------- /web/web/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/local_settings.py -------------------------------------------------------------------------------- /web/web/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/settings.py -------------------------------------------------------------------------------- /web/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/urls.py -------------------------------------------------------------------------------- /web/web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x71/cuckoo-linux/HEAD/web/web/wsgi.py --------------------------------------------------------------------------------