├── .actrc ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── actions │ └── python-setup │ │ └── action.yml ├── copilot-instructions.md └── workflows │ ├── antitemplaters.yml_disabled │ ├── auto_answer.yml │ ├── export-requirements.yml │ ├── pip-audit.yml │ ├── python-package-windows.yml │ ├── python-package.yml │ ├── todo.yml_disabled │ └── yara-audit.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .yara-ci.yml ├── CITATION.cff ├── KnowledgeBaseBot ├── all_texts.json ├── auto_answer.yml ├── auto_answer_bot.py ├── build_knowledge_base.py ├── kb_state.json ├── metadata.json ├── readme.md ├── requirements.txt └── unified_index.faiss ├── LICENSE ├── README.md ├── SECURITY.md ├── acknowledgment.md ├── admin ├── admin.py └── admin_conf.py_example ├── agent ├── agent.py ├── pytest.ini ├── test_agent.py └── test_python_architecture.py ├── analyzer ├── linux │ ├── analyzer.py │ ├── dbus_next │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _private │ │ │ ├── __init__.py │ │ │ ├── address.py │ │ │ ├── constants.py │ │ │ ├── marshaller.py │ │ │ ├── unmarshaller.py │ │ │ └── util.py │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── message_bus.py │ │ │ └── proxy_object.py │ │ ├── auth.py │ │ ├── constants.py │ │ ├── errors.py │ │ ├── introspection.py │ │ ├── message.py │ │ ├── message_bus.py │ │ ├── proxy_object.py │ │ ├── py.typed │ │ ├── service.py │ │ ├── signature.py │ │ └── validators.py │ ├── lib │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── process.py │ │ │ └── screenshot.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── abstracts.py │ │ │ ├── common.py │ │ │ ├── constants.py │ │ │ ├── exceptions.py │ │ │ ├── hashing.py │ │ │ ├── rand.py │ │ │ └── results.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── packages.py │ │ │ └── startup.py │ └── modules │ │ ├── __init__.py │ │ ├── auxiliary │ │ ├── __init__.py │ │ ├── filecollector.py │ │ ├── human.py │ │ └── screenshots.py │ │ └── packages │ │ ├── __init__.py │ │ ├── bash.py │ │ ├── deb.py │ │ ├── doc.py │ │ ├── firefox.py │ │ ├── generic.py │ │ ├── jar.py │ │ ├── js.py │ │ ├── pdf.py │ │ ├── perl.py │ │ ├── python.py │ │ ├── python_whl.py │ │ ├── wget.py │ │ └── zip.py └── windows │ ├── analyzer.py │ ├── bin │ ├── PPLinject.exe │ ├── PPLinject64.exe │ ├── autoit3.exe │ ├── loader.exe │ ├── loader_x64.exe │ ├── psexec.exe │ └── signtool.exe │ ├── data │ ├── msix.ps1 │ └── yara │ │ ├── AgentTesla.yar │ │ ├── Amatera.yar │ │ ├── AntiCuckoo.yar │ │ ├── AuraStealer.yar │ │ ├── Blister.yar │ │ ├── BruteRatel.yar │ │ ├── BuerLoader.yar │ │ ├── BumbleBee.yar │ │ ├── CargoBayLoader.yar │ │ ├── DarkGate.yar │ │ ├── DarkGateLoader.yar │ │ ├── DoomedLoader.yar │ │ ├── DridexLoader.yar │ │ ├── EmotetPacker.yar │ │ ├── Formbook.yar │ │ ├── GetTickCountAntiVM.yar │ │ ├── Guloader.yar │ │ ├── HeavensSyscall.yar │ │ ├── IcedID.yar │ │ ├── Latrodectus.yar │ │ ├── Lumma.yar │ │ ├── ModiLoader.yar │ │ ├── MysterySnail.yar │ │ ├── NSIS.yar │ │ ├── NitrogenLoader.yar │ │ ├── Pikabot.yar │ │ ├── PrivateLoader.yar │ │ ├── QakBot.yar │ │ ├── RdtscpAntiVM.yar │ │ ├── Rhadamanthys.yar │ │ ├── RisePro.yar │ │ ├── SingleStepAntiHook.yar │ │ ├── SlowLoader.yar │ │ ├── SmokeLoader.yar │ │ ├── Socks5Systemz.yar │ │ ├── Stealc.yar │ │ ├── Syscall.yar │ │ ├── Themida.yar │ │ ├── UPX.yar │ │ ├── UrsnifV3.yar │ │ ├── VBCrypter.yar │ │ ├── XWorm.yar │ │ └── Zloader.yar │ ├── dll │ ├── capemon.dll │ ├── capemon_x64.dll │ ├── version.dll │ └── version_x64.dll │ ├── lib │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── process.py │ │ ├── screenshot.py │ │ └── utils.py │ ├── common │ │ ├── __init__.py │ │ ├── abstracts.py │ │ ├── common.py │ │ ├── constants.py │ │ ├── defines.py │ │ ├── errors.py │ │ ├── exceptions.py │ │ ├── hashing.py │ │ ├── parse_pe.py │ │ ├── rand.py │ │ ├── registry.py │ │ ├── results.py │ │ └── zip_utils.py │ └── core │ │ ├── __init__.py │ │ ├── compound.py │ │ ├── config.py │ │ ├── log.py │ │ ├── packages.py │ │ ├── pipe.py │ │ ├── privileges.py │ │ └── startup.py │ ├── modules │ ├── __init__.py │ ├── auxiliary │ │ ├── __init__.py │ │ ├── amsi.py │ │ ├── amsi_collector.py │ │ ├── browser.py │ │ ├── browsermonitor.py │ │ ├── digisig.py │ │ ├── disguise.py │ │ ├── dns_etw.py │ │ ├── during_script.py │ │ ├── evtx.py │ │ ├── filepickup.py │ │ ├── human.py │ │ ├── permissions.py │ │ ├── pre_script.py │ │ ├── recentfiles.py │ │ ├── screenshots.py │ │ ├── sslkeylogfile.py │ │ ├── tlsdump.py │ │ ├── usage.py │ │ ├── watchdownloads.py │ │ └── wmi_etw.py │ └── packages │ │ ├── Ie4uinit.py │ │ ├── __init__.py │ │ ├── access.py │ │ ├── applet.py │ │ ├── archive.py │ │ ├── autoit.py │ │ ├── batch.py │ │ ├── chm.py │ │ ├── chrome.py │ │ ├── chromium.py │ │ ├── chromium_ext.py │ │ ├── cpl.py │ │ ├── crx.py │ │ ├── dll.py │ │ ├── doc.py │ │ ├── doc2016.py │ │ ├── doc_antivm.py │ │ ├── edge.py │ │ ├── eml.py │ │ ├── exe.py │ │ ├── firefox.py │ │ ├── firefox_ext.py │ │ ├── generic.py │ │ ├── hta.py │ │ ├── hwp.py │ │ ├── ichitaro.py │ │ ├── ie.py │ │ ├── inf.py │ │ ├── inp.py │ │ ├── jar.py │ │ ├── js.py │ │ ├── js_antivm.py │ │ ├── lnk.py │ │ ├── mht.py │ │ ├── msbuild.py │ │ ├── msg.py │ │ ├── msi.py │ │ ├── msix.py │ │ ├── nodejs.py │ │ ├── nsis.py │ │ ├── ollydbg.py │ │ ├── one.py │ │ ├── pdf.py │ │ ├── ppt.py │ │ ├── ppt2016.py │ │ ├── ps1.py │ │ ├── pub.py │ │ ├── pub2016.py │ │ ├── python.py │ │ ├── rar.py │ │ ├── rdp.py │ │ ├── reg.py │ │ ├── regsvr.py │ │ ├── sct.py │ │ ├── service.py │ │ ├── service_dll.py │ │ ├── shellcode.py │ │ ├── shellcode_x64.py │ │ ├── swf.py │ │ ├── tor_browser.py │ │ ├── vbejse.py │ │ ├── vbs.py │ │ ├── wsf.py │ │ ├── xls.py │ │ ├── xls2016.py │ │ ├── xps.py │ │ ├── xslt.py │ │ ├── zip.py │ │ └── zip_compound.py │ ├── prescripts │ └── prescript_detection.py │ ├── pytest.ini │ └── tests │ ├── lib │ ├── api │ │ └── test_process.py │ └── common │ │ └── test_abstracts.py │ ├── modules │ └── packages │ │ └── test_ps1.py │ ├── test_analysis_packages.py │ ├── test_analyzer.py │ ├── test_analyzer_files.py │ └── test_analyzer_process_list.py ├── changelog.md ├── conf ├── copy_configs.sh ├── default │ ├── api.conf.default │ ├── auxiliary.conf.default │ ├── aws.conf.default │ ├── az.conf.default │ ├── cuckoo.conf.default │ ├── cuckoomx.conf.default │ ├── distributed.conf.default │ ├── esx.conf.default │ ├── externalservices.conf.default │ ├── gcp.conf.default │ ├── hosts.conf.default │ ├── integrations.conf.default │ ├── kvm.conf.default │ ├── logging.conf.default │ ├── malheur.conf.default │ ├── memory.conf.default │ ├── mitmdump.conf.default │ ├── multi.conf.default │ ├── physical.conf.default │ ├── polarproxy.conf.default │ ├── processing.conf.default │ ├── proxmox.conf.default │ ├── qemu.conf.default │ ├── reporting.conf.default │ ├── routing.conf.default │ ├── smtp_sinkhole.conf.default │ ├── virtualbox.conf.default │ ├── vmware.conf.default │ ├── vmwarerest.conf.default │ ├── vmwareserver.conf.default │ ├── vpn.conf.default │ ├── vsphere.conf.default │ ├── web.conf.default │ └── xenserver.conf.default └── readme.md ├── cuckoo.py ├── custom ├── .gitignore ├── parsers │ └── __init__.py ├── signatures │ └── __init__.py └── yara │ ├── CAPE │ └── .placeholder │ ├── binaries │ └── .placeholder │ ├── macro │ └── .placeholder │ ├── memory │ └── .placeholder │ ├── monitor │ └── .placeholder │ └── urls │ └── .placeholder ├── data ├── .gitignore ├── __init__.py ├── dnsbl.py ├── family_detection_names.py ├── google_creds.json ├── html │ ├── base-report.html │ ├── base-web.html │ ├── browse.html │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── style.css │ ├── error.html │ ├── generic │ │ ├── _dotnet.html │ │ ├── _file_info.html │ │ ├── _floss.html │ │ ├── _java.html │ │ ├── _lnk.html │ │ ├── _office.html │ │ ├── _pdf.html │ │ ├── _pe.html │ │ ├── _subfile_info.html │ │ ├── _virustotal.html │ │ └── _xlmmacro.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 │ │ ├── memory │ │ │ ├── _apihooks.html │ │ │ ├── _callbacks.html │ │ │ ├── _devicetree.html │ │ │ ├── _gdt.html │ │ │ ├── _idt.html │ │ │ ├── _malfind.html │ │ │ ├── _messagehooks.html │ │ │ ├── _modscan.html │ │ │ ├── _netscan.html │ │ │ ├── _pslist.html │ │ │ ├── _sockscan.html │ │ │ ├── _ssdt.html │ │ │ ├── _svcscan.html │ │ │ ├── _timers.html │ │ │ └── _yarascan.html │ │ ├── network.html │ │ ├── payloads.html │ │ ├── screenshots.html │ │ ├── signatures.html │ │ ├── url.html │ │ └── volatility.html │ ├── statistics.html │ ├── statistics │ │ └── README │ ├── submit.html │ └── success.html ├── linux │ └── linux-syscalls.json ├── maec_api_call_mappings.json ├── safelist │ ├── __init__.py │ ├── disposable_domain_list.txt │ ├── domains.py │ └── replacepatterns.py ├── signature_overlay.json ├── src │ └── binpackage │ │ ├── Makefile │ │ └── execsc.c └── yara │ ├── CAPE │ ├── AdaptixBeacon.yar │ ├── AgentTesla.yar │ ├── Amadey.yar │ ├── Amatera.yar │ ├── Arkei.yar │ ├── AsyncRAT.yar │ ├── Atlas.yar │ ├── AuraStealer.yar │ ├── AuroraStealer.yar │ ├── Azer.yar │ ├── Azorult.yar │ ├── BadRabbit.yar │ ├── Bazar.yar │ ├── BitPaymer.yar │ ├── BlackDropper.yar │ ├── Blister.yar │ ├── BruteRatel.yar │ ├── BuerLoader.yar │ ├── BumbleBee.yar │ ├── Carbanak.yar │ ├── CargoBayLoader.yar │ ├── Cerber.yar │ ├── ChaosBot.yar │ ├── CobaltStrikeBeacon.yar │ ├── CobaltStrikeStager.yar │ ├── Codoso.yar │ ├── Conti.yar │ ├── Cryptoshield.yar │ ├── DarkCloud.yar │ ├── DarkGate.yar │ ├── DoomedLoader.yar │ ├── DoppelPaymer.yar │ ├── Dreambot.yar │ ├── DridexLoader.yar │ ├── DridexV4.yar │ ├── Emotet.yar │ ├── EmotetLoader.yar │ ├── EternalRomance.yar │ ├── Fareit.yar │ ├── Formbook.yar │ ├── Gandcrab.yar │ ├── Gootkit.yar │ ├── Guloader.yar │ ├── Hancitor.yar │ ├── Hermes.yar │ ├── IcedID.yar │ ├── IcedIDLoader.yar │ ├── Jaff.yar │ ├── KoiLoader.yar │ ├── Kovter.yar │ ├── Kpot.yar │ ├── Kronos.yar │ ├── Latrodectus.yar │ ├── Lockbit.yar │ ├── Locky.yar │ ├── LokiBot.yar │ ├── Lumma.yar │ ├── Magniber.yar │ ├── MassLogger.yar │ ├── MegaCortex.yar │ ├── Mole.yar │ ├── MonsterV2.yar │ ├── MyKings.yar │ ├── NanoLocker.yar │ ├── Nemty.yar │ ├── NetSupport.yar │ ├── NetTraveler.yar │ ├── Nighthawk.yar │ ├── NightshadeC2.yar │ ├── NitroBunnyDownloader.yar │ ├── NitrogenLoader.yar │ ├── Obfuscar.yar │ ├── Origin.yar │ ├── Oyster.yar │ ├── Pafish.yar │ ├── PetrWrap.yar │ ├── Petya.yar │ ├── PikaBot.yar │ ├── QakBot.yar │ ├── Quickbind.yar │ ├── RCSession.yar │ ├── Ramnit.yar │ ├── Remcos.yar │ ├── Rhadamanthys.yar │ ├── RokRat.yar │ ├── Rozena.yar │ ├── Ryuk.yar │ ├── Scarab.yar │ ├── Sedreco.yar │ ├── Seduploader.yar │ ├── SmokeLoader.yar │ ├── Socks5Systemz.yar │ ├── SparkRAT.yar │ ├── SquirrelWaffle.yar │ ├── Stealc.yar │ ├── TClient.yar │ ├── TSCookie.yar │ ├── TrickBot.yar │ ├── Ursnif.yar │ ├── UrsnifV3.yar │ ├── VIPKeyLogger.yar │ ├── Varenyky.yar │ ├── Vidar.yar │ ├── WanaCry.yar │ ├── WinosStager.yar │ ├── XenoRAT.yar │ ├── ZeroT.yar │ ├── ZeusPanda.yar │ └── Zloader.yar │ ├── binaries │ ├── HeavensGate.yar │ └── Themida.yar │ ├── macro │ └── test │ ├── memory │ └── .gitignore │ ├── monitor │ ├── .gitkeep │ └── yara │ ├── readme.md │ └── urls │ └── .gitignore ├── dev_utils ├── __init__.py ├── elasticsearchdb.py ├── mongo_hooks.py ├── mongodb.py └── readme.md ├── docs ├── README ├── book │ └── src │ │ ├── Makefile │ │ ├── _images │ │ ├── logo │ │ │ └── cape.png │ │ ├── schemas │ │ │ └── architecture-main.png │ │ └── screenshots │ │ │ ├── create_kvm_snapshot.png │ │ │ ├── creating_isolated_network_0.png │ │ │ ├── creating_isolated_network_1.png │ │ │ ├── creating_isolated_network_2.png │ │ │ ├── creating_isolated_network_3.png │ │ │ ├── creating_isolated_network_4.png │ │ │ ├── creating_isolated_network_5.png │ │ │ ├── creating_task_scheduler_0.png │ │ │ ├── creating_task_scheduler_1.png │ │ │ ├── creating_task_scheduler_2.png │ │ │ ├── debugger2disassembler.png │ │ │ ├── fog_host_management.png │ │ │ ├── fog_image_management.png │ │ │ ├── fog_scheduled_job.png │ │ │ ├── guest_win10_disable_firewall.png │ │ │ ├── guest_win10_disable_firewall_1.png │ │ │ ├── guest_win10_disable_updates.png │ │ │ ├── guest_win10_static_IP.png │ │ │ ├── guest_win10_static_IP_1.png │ │ │ ├── guest_win10_static_IP_2.png │ │ │ ├── guest_win10_static_IP_3.png │ │ │ ├── internal_external_snapshot.png │ │ │ ├── libvirt_error_virtmanager.png │ │ │ ├── login_error_user_usersprofile.png │ │ │ ├── no_signatures.png │ │ │ ├── python_guest_win10_installation_PATH.png │ │ │ ├── rooter_0.png │ │ │ ├── running_agentpy_within_guest_0.png │ │ │ ├── running_agentpy_within_guest_1.png │ │ │ ├── shared_folders.png │ │ │ ├── signatures.png │ │ │ ├── troubleshooting_0.png │ │ │ ├── troubleshooting_error_0.png │ │ │ ├── troubleshooting_error_1.png │ │ │ ├── troubleshooting_error_2.png │ │ │ ├── troubleshooting_error_3.png │ │ │ ├── windows_network.png │ │ │ ├── windows_registry.png │ │ │ └── windows_security.png │ │ ├── _static │ │ └── .gitkeep │ │ ├── conf.py │ │ ├── customization │ │ ├── auxiliary.rst │ │ ├── index.rst │ │ ├── machinery.rst │ │ ├── packages.rst │ │ ├── processing.rst │ │ ├── reporting.rst │ │ └── signatures.rst │ │ ├── development │ │ ├── code_style.rst │ │ ├── current_module_improvement.rst │ │ ├── development_notes.rst │ │ └── index.rst │ │ ├── faq │ │ └── index.rst │ │ ├── finalremarks │ │ └── index.rst │ │ ├── index.rst │ │ ├── installation │ │ ├── guest │ │ │ ├── additional_configuration.rst │ │ │ ├── agent.rst │ │ │ ├── cloning.rst │ │ │ ├── creation.rst │ │ │ ├── index.rst │ │ │ ├── linux.rst │ │ │ ├── network.rst │ │ │ ├── requirements.rst │ │ │ ├── saving.rst │ │ │ └── troubleshooting.rst │ │ ├── guest_physical │ │ │ ├── creation.rst │ │ │ ├── index.rst │ │ │ ├── network.rst │ │ │ ├── requirements.rst │ │ │ └── saving.rst │ │ ├── host │ │ │ ├── cloud.rst │ │ │ ├── configuration.rst │ │ │ ├── gcs.rst │ │ │ ├── index.rst │ │ │ ├── installation.rst │ │ │ └── routing.rst │ │ ├── index.rst │ │ └── upgrade.rst │ │ ├── integrations │ │ ├── box-js.rst │ │ ├── curtain.rst │ │ ├── index.rst │ │ ├── librenms.rst │ │ ├── suricata.rst │ │ └── tracee-linux.rst │ │ ├── introduction │ │ ├── index.rst │ │ ├── license.rst │ │ ├── sandboxing.rst │ │ └── what.rst │ │ └── usage │ │ ├── api.rst │ │ ├── clean.rst │ │ ├── cluster_administration.rst │ │ ├── dist.rst │ │ ├── index.rst │ │ ├── interactive_desktop.rst │ │ ├── internals.rst │ │ ├── monitor.rst │ │ ├── packages.rst │ │ ├── patterns_replacement.rst │ │ ├── performance.rst │ │ ├── results.rst │ │ ├── rooter.rst │ │ ├── start.rst │ │ ├── submit.rst │ │ ├── utilities.rst │ │ └── web.rst └── requirements.txt ├── extra ├── browser_extension │ ├── README.md │ ├── background.js │ └── manifest.json ├── buildvswitch.sh ├── cape-fluentd.conf ├── guac related │ ├── fstab.in │ └── nginx-site-config.txt ├── libvirt_installer.sh ├── linux_agent.sh ├── optional_dependencies.txt ├── services │ ├── moloch │ └── openvswitch-switch ├── whitelist_domains.txt ├── whitelist_ips.txt ├── whitelist_network.txt └── yara_installer.sh ├── installer ├── README.md ├── cape2.sh ├── choco.bat ├── disable_win7noise.bat ├── kvm-qemu.sh ├── suricata_from_source.sh └── win10_disabler.ps1 ├── lib ├── __init__.py ├── cuckoo │ ├── __init__.py │ ├── common │ │ ├── __init__.py │ │ ├── abstracts.py │ │ ├── admin_utils.py │ │ ├── cape_utils.py │ │ ├── cents │ │ │ └── __init__.py │ │ ├── cleaners_utils.py │ │ ├── colors.py │ │ ├── compare.py │ │ ├── compressor.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── decoders │ │ │ └── __init__.py │ │ ├── defines.py │ │ ├── demux.py │ │ ├── dictionary.py │ │ ├── dist_db.py │ │ ├── dns.py │ │ ├── dotnet_utils.py │ │ ├── email_utils.py │ │ ├── exceptions.py │ │ ├── extractor_utils.py │ │ ├── files.py │ │ ├── fraunhofer_helper.py │ │ ├── gcp.py │ │ ├── hypervisor_config.py │ │ ├── icon.py │ │ ├── integrations │ │ │ ├── XLMMacroDeobfuscator.py │ │ │ ├── __init__.py │ │ │ ├── capa.py │ │ │ ├── clamav.py │ │ │ ├── file_extra_info.py │ │ │ ├── file_extra_info_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── overlay.py │ │ │ │ ├── pyinstaller.py │ │ │ │ └── readme.md │ │ │ ├── floss.py │ │ │ ├── mandiant_intel.py │ │ │ ├── mitre.py │ │ │ ├── office_one.py │ │ │ ├── parse_dotnet.py │ │ │ ├── parse_elf.py │ │ │ ├── parse_encoded_script.py │ │ │ ├── parse_hwp.py │ │ │ ├── parse_java.py │ │ │ ├── parse_lnk.py │ │ │ ├── parse_office.py │ │ │ ├── parse_pdf.py │ │ │ ├── parse_pe.py │ │ │ ├── parse_rdp.py │ │ │ ├── parse_url.py │ │ │ ├── parse_wsf.py │ │ │ ├── pdfminer.py │ │ │ ├── peepdf.py │ │ │ ├── pyinstxtractor.py │ │ │ ├── strings.py │ │ │ ├── vba2graph.py │ │ │ ├── vbadeobf.py │ │ │ ├── vbe_decoder.py │ │ │ └── virustotal.py │ │ ├── iocs.py │ │ ├── irc.py │ │ ├── load_extra_modules.py │ │ ├── logo.py │ │ ├── logtbl.py │ │ ├── mapTTPs.py │ │ ├── misc.py │ │ ├── netlog.py │ │ ├── objects.py │ │ ├── path_utils.py │ │ ├── pcap_utils.py │ │ ├── quarantine.py │ │ ├── replace_patterns_utils.py │ │ ├── safelist.py │ │ ├── saztopcap.py │ │ ├── scoring.py │ │ ├── socket_utils.py │ │ ├── sshclient.py │ │ ├── structures.py │ │ ├── suri_specs.py │ │ ├── suricata_detection.py │ │ ├── suricatasc.py │ │ ├── trim_utils.py │ │ ├── url_validate.py │ │ ├── utils.py │ │ ├── utils_dicts.py │ │ ├── utils_pretty_print_funcs.py │ │ ├── web_utils.py │ │ └── webadmin_utils.py │ └── core │ │ ├── __init__.py │ │ ├── analysis_manager.py │ │ ├── database.py │ │ ├── guest.py │ │ ├── log.py │ │ ├── machinery_manager.py │ │ ├── plugins.py │ │ ├── resultserver.py │ │ ├── rooter.py │ │ ├── scheduler.py │ │ └── startup.py └── downloaders │ ├── __init__.py │ ├── malwarebazaar.py │ └── virustotal.py ├── modules ├── __init__.py ├── auxiliary │ ├── AzSniffer.py │ ├── Mitmdump.py │ ├── PolarProxy.py │ ├── QemuScreenshots.py │ ├── __init__.py │ └── sniffer.py ├── feeds │ └── __init__.py ├── machinery │ ├── __init__.py │ ├── aws.py │ ├── az.py │ ├── esx.py │ ├── gcp.py │ ├── kvm.py │ ├── multi.py │ ├── physical.py │ ├── proxmox.py │ ├── qemu.py │ ├── virtualbox.py │ ├── vmware.py │ ├── vmwarerest.py │ ├── vmwareserver.py │ ├── vsphere.py │ └── xenserver.py ├── processing │ ├── CAPE.py │ ├── __init__.py │ ├── amsi.py │ ├── analysisinfo.py │ ├── antiransomware.py │ ├── behavior.py │ ├── boxjs.py │ ├── debug.py │ ├── decompression.py │ ├── deduplication.py │ ├── dumptls.py │ ├── maliciousmacrobot.py │ ├── memory.py │ ├── network.py │ ├── pcapng.py │ ├── platform │ │ └── linux.py │ ├── polarproxy.py │ ├── procmemory.py │ ├── procmon.py │ ├── reversinglabs.py │ ├── script_log_processing.py │ ├── strace.py │ ├── suricata.py │ ├── url_analysis.py │ └── usage.py ├── reporting │ ├── __init__.py │ ├── bingraph.py │ ├── browserext.py │ ├── callback.py │ ├── compression.py │ ├── elasticsearchdb.py │ ├── gcs.py │ ├── jsondump.py │ ├── litereport.py │ ├── maec41.py │ ├── maec5.py │ ├── mitre.py │ ├── mongodb.py │ ├── report_doc.py │ └── tmpfsclean.py └── signatures │ ├── CAPE.py │ ├── __init__.py │ ├── all │ └── __init__.py │ ├── cape_extracted.py │ ├── https.py │ ├── linux │ └── __init__.py │ └── windows │ └── __init__.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── systemd ├── README.md ├── cape-dist.service ├── cape-fstab.service ├── cape-processor.service ├── cape-rooter.service ├── cape-web.service ├── cape.service ├── guac-web.service ├── guacd.service ├── suricata-update.service ├── suricata-update.timer └── suricata.service ├── tests ├── conftest.py ├── email_test.py ├── grab_samples.py ├── integrity.py ├── processor_tests.py ├── readme.md ├── reporter_tests.py ├── sniffer_tests.py ├── tcr_misc.py ├── test_abstracts.py ├── test_analysis_manager.py ├── test_behavior.py ├── test_bson.bson ├── test_cape_utils.py ├── test_cleaners_utils.py ├── test_colors.py ├── test_compressor.py ├── test_config.py ├── test_data │ ├── 1 │ │ └── reports │ │ │ └── report.json │ ├── 2 │ │ └── reports │ │ │ └── report.json │ └── 3 │ │ └── reports │ │ └── report.json ├── test_database.py ├── test_demux.py ├── test_dist_db.py ├── test_downloaders.py ├── test_file_extra_info.py ├── test_files.py ├── test_icon.py ├── test_logo.py ├── test_mitre.py ├── test_netlog.py ├── test_objects.py ├── test_parse_office.py ├── test_peepdf.py ├── test_processing.py ├── test_quarantine.py ├── test_signature.py ├── test_strings.py ├── test_suricata_naming.py ├── test_tls_utils.py ├── test_utils.py ├── test_utils_pretty_print_funcs.py ├── test_web_utils.py ├── test_yara.py ├── utils_pretty_print_funcs_data.py ├── web │ ├── test_apiv2.py │ └── test_submission_views.py └── zip_compound │ ├── files │ ├── example_config.json │ └── misconfiguration.json │ ├── test_extract_path.py │ ├── test_json_config.py │ └── test_windows_zip_compound.py ├── utils ├── __init__.py ├── admin.py ├── cleaners.py ├── community.py ├── community_blocklist.py ├── db_migration │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 1. add_on_delete_cascade_to_task_tags_.py │ │ ├── 2. Database cleanup.py │ │ └── Deprecated │ │ ├── 1. add_platform_column_for_guests.py │ │ ├── 2. set_guest_platform_to_non_nullable.py │ │ ├── 2.2-cape.py │ │ ├── 2_3_1_square_hammer.py │ │ ├── 2_3_2_custom_auth_usernames.py │ │ ├── 2_3_3_add_arch_to_machine_conf.py │ │ ├── 2_3_3_expand_error_message.py │ │ ├── 2_3_task2user_id.py │ │ ├── 2_4_0_change_options_to_text.py │ │ ├── add_distributed.py │ │ ├── add_reserved_column_for_machines.py │ │ ├── add_sample_parent_id.py │ │ ├── add_shrike_and_parent_id_columns.py │ │ ├── add_source_url.py │ │ ├── add_task_tlp.py │ │ ├── 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_2-accuvant-add_statistics.py │ │ ├── options_255_2_1024.py │ │ └── proper_indexes.py ├── db_migration_dist │ ├── alembic.ini │ ├── env.py │ └── script.py.mako ├── dist.py ├── down.py ├── fstab.py ├── process.py ├── profiling.py ├── proxy2cape.py ├── rooter.py ├── route.py ├── router_manager.py ├── sample_path.py ├── submit.py ├── tcpdumpwrapper.py ├── tls.py ├── vpn2cape.py └── vpncheck.py ├── uwsgi ├── cape.conf ├── cape.ini └── capedist.ini └── web ├── analysis ├── __init__.py ├── forms.py ├── templatetags │ ├── __init__.py │ ├── analysis_tags.py │ ├── generic_tags.py │ ├── key_tags.py │ └── pdf_tags.py ├── urls.py └── views.py ├── apiv2 ├── __init__.py ├── throttling.py ├── urls.py └── views.py ├── captcha_admin ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── mixins.py ├── models.py └── templates │ └── admin │ └── captcha_login.html ├── compare ├── __init__.py ├── urls.py └── views.py ├── dashboard ├── __init__.py ├── urls.py └── views.py ├── guac ├── __init__.py ├── consumers.py ├── routing.py ├── templates │ └── guac │ │ ├── error.html │ │ ├── index.html │ │ └── wait.html ├── urls.py └── views.py ├── manage.py ├── static ├── css │ ├── bootstrap-social.min.css │ ├── bootstrap-social.min.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── datatables.min.css │ ├── fontawesome-all.css │ ├── guac-main.css │ ├── guac-playback.css │ ├── lightbox.css │ └── style.css ├── django_extensions │ ├── css │ │ └── jquery.autocomplete.css │ ├── img │ │ └── indicator.gif │ └── js │ │ ├── jquery.ajaxQueue.js │ │ ├── jquery.autocomplete.js │ │ └── jquery.bgiframe.js ├── generated │ └── README ├── graphic │ ├── background.png │ └── cape.png ├── img │ ├── cape.png │ ├── close.png │ ├── github_login.png │ ├── google_login.png │ ├── loading.gif │ ├── next.png │ └── prev.png ├── js │ ├── bootstrap-fileupload.js │ ├── bootstrap-transition.js │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ ├── crypto-js.min.js │ ├── datatables.min.js │ ├── guac-main.js │ ├── guac-playback.js │ ├── guacamole-1.4.0-all.min.js │ ├── hexdump.js │ ├── jquery-ui.min.js │ ├── jquery.js │ ├── lightbox.js │ ├── moment.min.js │ └── pako_inflate.min.js └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 ├── submission ├── __init__.py ├── urls.py └── views.py ├── templates ├── account │ ├── account_inactive.html │ ├── email.html │ ├── email_confirm.html │ ├── login.html │ ├── logout.html │ ├── password_change.html │ ├── password_reset.html │ ├── password_reset_done.html │ ├── password_reset_from_key.html │ ├── password_reset_from_key_done.html │ ├── signup.html │ ├── signup_closed.html │ ├── verification_sent.html │ └── verified_email_required.html ├── admin │ ├── base_site.html │ └── captcha_login.html ├── analysis │ ├── CAPE │ │ └── index.html │ ├── admin │ │ └── index.html │ ├── antivirus.html │ ├── backscatter.html │ ├── behavior │ │ ├── _api_call.html │ │ ├── _chunk.html │ │ ├── _processes.html │ │ ├── _search.html │ │ ├── _search_results.html │ │ ├── _tree.html │ │ └── index.html │ ├── classification.html │ ├── comments │ │ └── index.html │ ├── debugger │ │ └── index.html │ ├── dropped │ │ └── index.html │ ├── generic │ │ ├── _capeyara.html │ │ ├── _dotnet.html │ │ ├── _file_info.html │ │ ├── _floss.html │ │ ├── _java.html │ │ ├── _lnk.html │ │ ├── _office.html │ │ ├── _pdf.html │ │ ├── _pe.html │ │ ├── _rdp.html │ │ ├── _subfile_capeyara.html │ │ ├── _subfile_info.html │ │ ├── _subfile_yara.html │ │ ├── _virustotal.html │ │ ├── _xlmmacro.html │ │ └── _yara.html │ ├── index.html │ ├── memory │ │ ├── _apihooks.html │ │ ├── _callbacks.html │ │ ├── _devicetree.html │ │ ├── _dlllist.html │ │ ├── _gdt.html │ │ ├── _getsids.html │ │ ├── _handles.html │ │ ├── _idt.html │ │ ├── _malfind.html │ │ ├── _messagehooks.html │ │ ├── _modscan.html │ │ ├── _mutantscan.html │ │ ├── _netscan.html │ │ ├── _privs.html │ │ ├── _pslist.html │ │ ├── _psscan.html │ │ ├── _rootkit.html │ │ ├── _sockscan.html │ │ ├── _ssdt.html │ │ ├── _svcscan.html │ │ ├── _timers.html │ │ ├── _yarascan.html │ │ └── index.html │ ├── misp │ │ └── index.html │ ├── network │ │ ├── _cif.html │ │ ├── _dns.html │ │ ├── _dns_not_ajax.html │ │ ├── _hosts.html │ │ ├── _hosts_not_ajax.html │ │ ├── _http.html │ │ ├── _icmp.html │ │ ├── _irc.html │ │ ├── _smtp.html │ │ ├── _suricata_alerts.html │ │ ├── _suricata_files.html │ │ ├── _suricata_http.html │ │ ├── _suricata_tls.html │ │ ├── _tcp.html │ │ ├── _udp.html │ │ └── index.html │ ├── overview │ │ ├── _capa_summary.html │ │ ├── _curtain.html │ │ ├── _info.html │ │ ├── _mitre.html │ │ ├── _playback.html │ │ ├── _reports.html │ │ ├── _screenshots.html │ │ ├── _signatures.html │ │ ├── _statistics.html │ │ ├── _summary.html │ │ ├── _url.html │ │ ├── _usage.html │ │ └── index.html │ ├── pending.html │ ├── procdump │ │ └── index.html │ ├── procmemory │ │ └── index.html │ ├── report.html │ ├── search.html │ ├── similar │ │ └── index.html │ ├── strace │ │ ├── _api_call.html │ │ ├── _chunk.html │ │ ├── _processes.html │ │ ├── _search.html │ │ ├── _syscall.html │ │ ├── _tree.html │ │ └── index.html │ ├── surialert.html │ ├── surifiles.html │ ├── surihttp.html │ ├── suritls.html │ └── tracee │ │ └── index.html ├── apiv2 │ └── index.html ├── auth │ ├── base.html │ ├── base_site.html │ ├── login.html │ └── logout.html ├── base.html ├── compare │ ├── _info.html │ ├── _summary_table.html │ ├── both.html │ ├── hash.html │ └── left.html ├── dashboard │ └── index.html ├── error.html ├── footer.html ├── header.html ├── robots.txt ├── socialaccount │ ├── authentication_error.html │ ├── connections.html │ ├── login_cancelled.html │ └── signup.html ├── standalone_error.html ├── statistics.html ├── submission │ ├── complete.html │ ├── index.html │ ├── remote_status.html │ └── status.html ├── success.html ├── success_simple.html └── success_vtup.html ├── users ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_reports.py │ ├── 0003_rename_field_subscription.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── web ├── __init__.py ├── allauth_adapters.py ├── allauth_forms.py ├── asgi.py ├── guac_settings.py ├── guac_urls.py ├── headers.py ├── local_settings.py ├── middleware ├── __init__.py ├── custom_auth.py ├── db_transaction.py └── disable_auth_in_local.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py /.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.actrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/actions/python-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/actions/python-setup/action.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/auto_answer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/auto_answer.yml -------------------------------------------------------------------------------- /.github/workflows/export-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/export-requirements.yml -------------------------------------------------------------------------------- /.github/workflows/pip-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/pip-audit.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/todo.yml_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/todo.yml_disabled -------------------------------------------------------------------------------- /.github/workflows/yara-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.github/workflows/yara-audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yara-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/.yara-ci.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/CITATION.cff -------------------------------------------------------------------------------- /KnowledgeBaseBot/all_texts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/all_texts.json -------------------------------------------------------------------------------- /KnowledgeBaseBot/auto_answer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/auto_answer.yml -------------------------------------------------------------------------------- /KnowledgeBaseBot/auto_answer_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/auto_answer_bot.py -------------------------------------------------------------------------------- /KnowledgeBaseBot/build_knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/build_knowledge_base.py -------------------------------------------------------------------------------- /KnowledgeBaseBot/kb_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/kb_state.json -------------------------------------------------------------------------------- /KnowledgeBaseBot/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/metadata.json -------------------------------------------------------------------------------- /KnowledgeBaseBot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/readme.md -------------------------------------------------------------------------------- /KnowledgeBaseBot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/requirements.txt -------------------------------------------------------------------------------- /KnowledgeBaseBot/unified_index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/KnowledgeBaseBot/unified_index.faiss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/SECURITY.md -------------------------------------------------------------------------------- /acknowledgment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/acknowledgment.md -------------------------------------------------------------------------------- /admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/admin/admin.py -------------------------------------------------------------------------------- /admin/admin_conf.py_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/admin/admin_conf.py_example -------------------------------------------------------------------------------- /agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/agent/agent.py -------------------------------------------------------------------------------- /agent/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/agent/pytest.ini -------------------------------------------------------------------------------- /agent/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/agent/test_agent.py -------------------------------------------------------------------------------- /agent/test_python_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/agent/test_python_architecture.py -------------------------------------------------------------------------------- /analyzer/linux/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/analyzer.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/__version__.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/_private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/_private/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/_private/util.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/aio/__init__.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/auth.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/constants.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/errors.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/introspection.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/message.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/message_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/message_bus.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/proxy_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/proxy_object.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/service.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/signature.py -------------------------------------------------------------------------------- /analyzer/linux/dbus_next/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/dbus_next/validators.py -------------------------------------------------------------------------------- /analyzer/linux/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/lib/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/lib/api/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/api/process.py -------------------------------------------------------------------------------- /analyzer/linux/lib/api/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/api/screenshot.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/lib/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/abstracts.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/common.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/constants.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/exceptions.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/hashing.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/rand.py -------------------------------------------------------------------------------- /analyzer/linux/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/lib/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/core/config.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/core/packages.py -------------------------------------------------------------------------------- /analyzer/linux/lib/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/lib/core/startup.py -------------------------------------------------------------------------------- /analyzer/linux/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/modules/auxiliary/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/auxiliary/human.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/bash.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/deb.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/doc.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/firefox.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/generic.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/jar.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/js.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/pdf.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/perl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/perl.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/python.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/wget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/wget.py -------------------------------------------------------------------------------- /analyzer/linux/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/linux/modules/packages/zip.py -------------------------------------------------------------------------------- /analyzer/windows/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/analyzer.py -------------------------------------------------------------------------------- /analyzer/windows/bin/PPLinject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/PPLinject.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/PPLinject64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/PPLinject64.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/autoit3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/autoit3.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/loader.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/loader_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/loader_x64.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/psexec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/psexec.exe -------------------------------------------------------------------------------- /analyzer/windows/bin/signtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/bin/signtool.exe -------------------------------------------------------------------------------- /analyzer/windows/data/msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/msix.ps1 -------------------------------------------------------------------------------- /analyzer/windows/data/yara/AgentTesla.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/AgentTesla.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Amatera.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Amatera.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/AntiCuckoo.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/AntiCuckoo.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/AuraStealer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/AuraStealer.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Blister.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Blister.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/BruteRatel.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/BruteRatel.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/BuerLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/BuerLoader.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/BumbleBee.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/BumbleBee.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/DarkGate.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/DarkGate.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Formbook.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Formbook.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Guloader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Guloader.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/IcedID.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/IcedID.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Latrodectus.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Latrodectus.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Lumma.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Lumma.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/ModiLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/ModiLoader.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/NSIS.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/NSIS.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Pikabot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Pikabot.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/QakBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/QakBot.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/RisePro.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/RisePro.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/SlowLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/SlowLoader.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/SmokeLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/SmokeLoader.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Stealc.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Stealc.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Syscall.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Syscall.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Themida.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Themida.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/UPX.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/UPX.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/UrsnifV3.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/UrsnifV3.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/VBCrypter.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/VBCrypter.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/XWorm.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/XWorm.yar -------------------------------------------------------------------------------- /analyzer/windows/data/yara/Zloader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/data/yara/Zloader.yar -------------------------------------------------------------------------------- /analyzer/windows/dll/capemon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/dll/capemon.dll -------------------------------------------------------------------------------- /analyzer/windows/dll/capemon_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/dll/capemon_x64.dll -------------------------------------------------------------------------------- /analyzer/windows/dll/version.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/dll/version.dll -------------------------------------------------------------------------------- /analyzer/windows/dll/version_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/dll/version_x64.dll -------------------------------------------------------------------------------- /analyzer/windows/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/api/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/api/process.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/api/screenshot.py -------------------------------------------------------------------------------- /analyzer/windows/lib/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/api/utils.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/abstracts.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/common.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/constants.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/defines.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/errors.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/exceptions.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/hashing.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/parse_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/parse_pe.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/rand.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/registry.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/results.py -------------------------------------------------------------------------------- /analyzer/windows/lib/common/zip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/common/zip_utils.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/compound.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/config.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/log.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/packages.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/pipe.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/privileges.py -------------------------------------------------------------------------------- /analyzer/windows/lib/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/lib/core/startup.py -------------------------------------------------------------------------------- /analyzer/windows/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/__init__.py -------------------------------------------------------------------------------- /analyzer/windows/modules/auxiliary/amsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/auxiliary/amsi.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/chm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/chm.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/cpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/cpl.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/crx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/crx.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/dll.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/doc.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/eml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/eml.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/exe.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/hta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/hta.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/hwp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/hwp.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/ie.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/inf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/inf.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/inp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/inp.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/jar.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/js.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/lnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/lnk.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/mht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/mht.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/msg.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/msi.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/one.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/pdf.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/ppt.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/ps1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/ps1.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/pub.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/rar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/rar.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/rdp.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/reg.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/sct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/sct.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/swf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/swf.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/vbs.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/wsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/wsf.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/xls.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/xps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/xps.py -------------------------------------------------------------------------------- /analyzer/windows/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/modules/packages/zip.py -------------------------------------------------------------------------------- /analyzer/windows/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = . 3 | -------------------------------------------------------------------------------- /analyzer/windows/tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/analyzer/windows/tests/test_analyzer.py -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/changelog.md -------------------------------------------------------------------------------- /conf/copy_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/copy_configs.sh -------------------------------------------------------------------------------- /conf/default/api.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/api.conf.default -------------------------------------------------------------------------------- /conf/default/auxiliary.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/auxiliary.conf.default -------------------------------------------------------------------------------- /conf/default/aws.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/aws.conf.default -------------------------------------------------------------------------------- /conf/default/az.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/az.conf.default -------------------------------------------------------------------------------- /conf/default/cuckoo.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/cuckoo.conf.default -------------------------------------------------------------------------------- /conf/default/cuckoomx.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/cuckoomx.conf.default -------------------------------------------------------------------------------- /conf/default/distributed.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/distributed.conf.default -------------------------------------------------------------------------------- /conf/default/esx.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/esx.conf.default -------------------------------------------------------------------------------- /conf/default/gcp.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/gcp.conf.default -------------------------------------------------------------------------------- /conf/default/hosts.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/hosts.conf.default -------------------------------------------------------------------------------- /conf/default/integrations.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/integrations.conf.default -------------------------------------------------------------------------------- /conf/default/kvm.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/kvm.conf.default -------------------------------------------------------------------------------- /conf/default/logging.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/logging.conf.default -------------------------------------------------------------------------------- /conf/default/malheur.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/malheur.conf.default -------------------------------------------------------------------------------- /conf/default/memory.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/memory.conf.default -------------------------------------------------------------------------------- /conf/default/mitmdump.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/mitmdump.conf.default -------------------------------------------------------------------------------- /conf/default/multi.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/multi.conf.default -------------------------------------------------------------------------------- /conf/default/physical.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/physical.conf.default -------------------------------------------------------------------------------- /conf/default/polarproxy.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/polarproxy.conf.default -------------------------------------------------------------------------------- /conf/default/processing.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/processing.conf.default -------------------------------------------------------------------------------- /conf/default/proxmox.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/proxmox.conf.default -------------------------------------------------------------------------------- /conf/default/qemu.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/qemu.conf.default -------------------------------------------------------------------------------- /conf/default/reporting.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/reporting.conf.default -------------------------------------------------------------------------------- /conf/default/routing.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/routing.conf.default -------------------------------------------------------------------------------- /conf/default/smtp_sinkhole.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/smtp_sinkhole.conf.default -------------------------------------------------------------------------------- /conf/default/virtualbox.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/virtualbox.conf.default -------------------------------------------------------------------------------- /conf/default/vmware.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/vmware.conf.default -------------------------------------------------------------------------------- /conf/default/vmwarerest.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/vmwarerest.conf.default -------------------------------------------------------------------------------- /conf/default/vmwareserver.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/vmwareserver.conf.default -------------------------------------------------------------------------------- /conf/default/vpn.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/vpn.conf.default -------------------------------------------------------------------------------- /conf/default/vsphere.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/vsphere.conf.default -------------------------------------------------------------------------------- /conf/default/web.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/web.conf.default -------------------------------------------------------------------------------- /conf/default/xenserver.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/default/xenserver.conf.default -------------------------------------------------------------------------------- /conf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/conf/readme.md -------------------------------------------------------------------------------- /cuckoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/cuckoo.py -------------------------------------------------------------------------------- /custom/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/README.md 3 | !/.gitignore 4 | -------------------------------------------------------------------------------- /custom/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/signatures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/CAPE/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/binaries/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/macro/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/memory/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/monitor/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/yara/urls/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/dnsbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/dnsbl.py -------------------------------------------------------------------------------- /data/family_detection_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/family_detection_names.py -------------------------------------------------------------------------------- /data/google_creds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/google_creds.json -------------------------------------------------------------------------------- /data/html/base-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/base-report.html -------------------------------------------------------------------------------- /data/html/base-web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/base-web.html -------------------------------------------------------------------------------- /data/html/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/browse.html -------------------------------------------------------------------------------- /data/html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /data/html/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /data/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/css/style.css -------------------------------------------------------------------------------- /data/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/error.html -------------------------------------------------------------------------------- /data/html/generic/_dotnet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_dotnet.html -------------------------------------------------------------------------------- /data/html/generic/_file_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_file_info.html -------------------------------------------------------------------------------- /data/html/generic/_floss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_floss.html -------------------------------------------------------------------------------- /data/html/generic/_java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_java.html -------------------------------------------------------------------------------- /data/html/generic/_lnk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_lnk.html -------------------------------------------------------------------------------- /data/html/generic/_office.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_office.html -------------------------------------------------------------------------------- /data/html/generic/_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_pdf.html -------------------------------------------------------------------------------- /data/html/generic/_pe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_pe.html -------------------------------------------------------------------------------- /data/html/generic/_subfile_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_subfile_info.html -------------------------------------------------------------------------------- /data/html/generic/_virustotal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_virustotal.html -------------------------------------------------------------------------------- /data/html/generic/_xlmmacro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/generic/_xlmmacro.html -------------------------------------------------------------------------------- /data/html/graphic/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/graphic/logo.html -------------------------------------------------------------------------------- /data/html/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /data/html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /data/html/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/js/functions.js -------------------------------------------------------------------------------- /data/html/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/js/jquery.min.js -------------------------------------------------------------------------------- /data/html/pagination-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/pagination-menu.html -------------------------------------------------------------------------------- /data/html/pagination-rpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/pagination-rpp.html -------------------------------------------------------------------------------- /data/html/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/report.html -------------------------------------------------------------------------------- /data/html/sections/behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/behavior.html -------------------------------------------------------------------------------- /data/html/sections/dropped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/dropped.html -------------------------------------------------------------------------------- /data/html/sections/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/errors.html -------------------------------------------------------------------------------- /data/html/sections/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/file.html -------------------------------------------------------------------------------- /data/html/sections/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/info.html -------------------------------------------------------------------------------- /data/html/sections/memory/_apihooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_apihooks.html -------------------------------------------------------------------------------- /data/html/sections/memory/_gdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_gdt.html -------------------------------------------------------------------------------- /data/html/sections/memory/_idt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_idt.html -------------------------------------------------------------------------------- /data/html/sections/memory/_malfind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_malfind.html -------------------------------------------------------------------------------- /data/html/sections/memory/_modscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_modscan.html -------------------------------------------------------------------------------- /data/html/sections/memory/_netscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_netscan.html -------------------------------------------------------------------------------- /data/html/sections/memory/_pslist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_pslist.html -------------------------------------------------------------------------------- /data/html/sections/memory/_sockscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_sockscan.html -------------------------------------------------------------------------------- /data/html/sections/memory/_ssdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_ssdt.html -------------------------------------------------------------------------------- /data/html/sections/memory/_svcscan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_svcscan.html -------------------------------------------------------------------------------- /data/html/sections/memory/_timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_timers.html -------------------------------------------------------------------------------- /data/html/sections/memory/_yarascan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/memory/_yarascan.html -------------------------------------------------------------------------------- /data/html/sections/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/network.html -------------------------------------------------------------------------------- /data/html/sections/payloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/payloads.html -------------------------------------------------------------------------------- /data/html/sections/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/screenshots.html -------------------------------------------------------------------------------- /data/html/sections/signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/signatures.html -------------------------------------------------------------------------------- /data/html/sections/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/url.html -------------------------------------------------------------------------------- /data/html/sections/volatility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/sections/volatility.html -------------------------------------------------------------------------------- /data/html/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/statistics.html -------------------------------------------------------------------------------- /data/html/statistics/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/statistics/README -------------------------------------------------------------------------------- /data/html/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/submit.html -------------------------------------------------------------------------------- /data/html/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/html/success.html -------------------------------------------------------------------------------- /data/linux/linux-syscalls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/linux/linux-syscalls.json -------------------------------------------------------------------------------- /data/maec_api_call_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/maec_api_call_mappings.json -------------------------------------------------------------------------------- /data/safelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/safelist/disposable_domain_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/safelist/disposable_domain_list.txt -------------------------------------------------------------------------------- /data/safelist/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/safelist/domains.py -------------------------------------------------------------------------------- /data/safelist/replacepatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/safelist/replacepatterns.py -------------------------------------------------------------------------------- /data/signature_overlay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/signature_overlay.json -------------------------------------------------------------------------------- /data/src/binpackage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/src/binpackage/Makefile -------------------------------------------------------------------------------- /data/src/binpackage/execsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/src/binpackage/execsc.c -------------------------------------------------------------------------------- /data/yara/CAPE/AdaptixBeacon.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/AdaptixBeacon.yar -------------------------------------------------------------------------------- /data/yara/CAPE/AgentTesla.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/AgentTesla.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Amadey.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Amadey.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Amatera.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Amatera.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Arkei.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Arkei.yar -------------------------------------------------------------------------------- /data/yara/CAPE/AsyncRAT.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/AsyncRAT.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Atlas.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Atlas.yar -------------------------------------------------------------------------------- /data/yara/CAPE/AuraStealer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/AuraStealer.yar -------------------------------------------------------------------------------- /data/yara/CAPE/AuroraStealer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/AuroraStealer.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Azer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Azer.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Azorult.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Azorult.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BadRabbit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BadRabbit.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Bazar.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Bazar.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BitPaymer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BitPaymer.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BlackDropper.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BlackDropper.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Blister.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Blister.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BruteRatel.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BruteRatel.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BuerLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BuerLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/BumbleBee.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/BumbleBee.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Carbanak.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Carbanak.yar -------------------------------------------------------------------------------- /data/yara/CAPE/CargoBayLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/CargoBayLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Cerber.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Cerber.yar -------------------------------------------------------------------------------- /data/yara/CAPE/ChaosBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/ChaosBot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/CobaltStrikeBeacon.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/CobaltStrikeBeacon.yar -------------------------------------------------------------------------------- /data/yara/CAPE/CobaltStrikeStager.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/CobaltStrikeStager.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Codoso.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Codoso.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Conti.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Conti.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Cryptoshield.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Cryptoshield.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DarkCloud.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DarkCloud.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DarkGate.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DarkGate.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DoomedLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DoomedLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DoppelPaymer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DoppelPaymer.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Dreambot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Dreambot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DridexLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DridexLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/DridexV4.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/DridexV4.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Emotet.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Emotet.yar -------------------------------------------------------------------------------- /data/yara/CAPE/EmotetLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/EmotetLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/EternalRomance.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/EternalRomance.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Fareit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Fareit.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Formbook.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Formbook.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Gandcrab.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Gandcrab.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Gootkit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Gootkit.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Guloader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Guloader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Hancitor.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Hancitor.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Hermes.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Hermes.yar -------------------------------------------------------------------------------- /data/yara/CAPE/IcedID.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/IcedID.yar -------------------------------------------------------------------------------- /data/yara/CAPE/IcedIDLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/IcedIDLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Jaff.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Jaff.yar -------------------------------------------------------------------------------- /data/yara/CAPE/KoiLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/KoiLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Kovter.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Kovter.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Kpot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Kpot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Kronos.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Kronos.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Latrodectus.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Latrodectus.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Lockbit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Lockbit.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Locky.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Locky.yar -------------------------------------------------------------------------------- /data/yara/CAPE/LokiBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/LokiBot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Lumma.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Lumma.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Magniber.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Magniber.yar -------------------------------------------------------------------------------- /data/yara/CAPE/MassLogger.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/MassLogger.yar -------------------------------------------------------------------------------- /data/yara/CAPE/MegaCortex.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/MegaCortex.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Mole.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Mole.yar -------------------------------------------------------------------------------- /data/yara/CAPE/MonsterV2.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/MonsterV2.yar -------------------------------------------------------------------------------- /data/yara/CAPE/MyKings.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/MyKings.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NanoLocker.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NanoLocker.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Nemty.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Nemty.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NetSupport.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NetSupport.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NetTraveler.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NetTraveler.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Nighthawk.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Nighthawk.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NightshadeC2.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NightshadeC2.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NitroBunnyDownloader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NitroBunnyDownloader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/NitrogenLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/NitrogenLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Obfuscar.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Obfuscar.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Origin.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Origin.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Oyster.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Oyster.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Pafish.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Pafish.yar -------------------------------------------------------------------------------- /data/yara/CAPE/PetrWrap.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/PetrWrap.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Petya.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Petya.yar -------------------------------------------------------------------------------- /data/yara/CAPE/PikaBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/PikaBot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/QakBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/QakBot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Quickbind.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Quickbind.yar -------------------------------------------------------------------------------- /data/yara/CAPE/RCSession.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/RCSession.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Ramnit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Ramnit.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Remcos.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Remcos.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Rhadamanthys.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Rhadamanthys.yar -------------------------------------------------------------------------------- /data/yara/CAPE/RokRat.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/RokRat.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Rozena.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Rozena.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Ryuk.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Ryuk.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Scarab.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Scarab.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Sedreco.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Sedreco.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Seduploader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Seduploader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/SmokeLoader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/SmokeLoader.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Socks5Systemz.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Socks5Systemz.yar -------------------------------------------------------------------------------- /data/yara/CAPE/SparkRAT.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/SparkRAT.yar -------------------------------------------------------------------------------- /data/yara/CAPE/SquirrelWaffle.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/SquirrelWaffle.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Stealc.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Stealc.yar -------------------------------------------------------------------------------- /data/yara/CAPE/TClient.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/TClient.yar -------------------------------------------------------------------------------- /data/yara/CAPE/TSCookie.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/TSCookie.yar -------------------------------------------------------------------------------- /data/yara/CAPE/TrickBot.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/TrickBot.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Ursnif.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Ursnif.yar -------------------------------------------------------------------------------- /data/yara/CAPE/UrsnifV3.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/UrsnifV3.yar -------------------------------------------------------------------------------- /data/yara/CAPE/VIPKeyLogger.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/VIPKeyLogger.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Varenyky.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Varenyky.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Vidar.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Vidar.yar -------------------------------------------------------------------------------- /data/yara/CAPE/WanaCry.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/WanaCry.yar -------------------------------------------------------------------------------- /data/yara/CAPE/WinosStager.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/WinosStager.yar -------------------------------------------------------------------------------- /data/yara/CAPE/XenoRAT.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/XenoRAT.yar -------------------------------------------------------------------------------- /data/yara/CAPE/ZeroT.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/ZeroT.yar -------------------------------------------------------------------------------- /data/yara/CAPE/ZeusPanda.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/ZeusPanda.yar -------------------------------------------------------------------------------- /data/yara/CAPE/Zloader.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/CAPE/Zloader.yar -------------------------------------------------------------------------------- /data/yara/binaries/HeavensGate.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/binaries/HeavensGate.yar -------------------------------------------------------------------------------- /data/yara/binaries/Themida.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/binaries/Themida.yar -------------------------------------------------------------------------------- /data/yara/macro/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/yara/memory/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/yara/monitor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/yara/monitor/yara: -------------------------------------------------------------------------------- 1 | analyzer/windows/data/yara/ -------------------------------------------------------------------------------- /data/yara/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/data/yara/readme.md -------------------------------------------------------------------------------- /data/yara/urls/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/dev_utils/__init__.py -------------------------------------------------------------------------------- /dev_utils/elasticsearchdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/dev_utils/elasticsearchdb.py -------------------------------------------------------------------------------- /dev_utils/mongo_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/dev_utils/mongo_hooks.py -------------------------------------------------------------------------------- /dev_utils/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/dev_utils/mongodb.py -------------------------------------------------------------------------------- /dev_utils/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/dev_utils/readme.md -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/README -------------------------------------------------------------------------------- /docs/book/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/Makefile -------------------------------------------------------------------------------- /docs/book/src/_images/logo/cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/_images/logo/cape.png -------------------------------------------------------------------------------- /docs/book/src/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/book/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/conf.py -------------------------------------------------------------------------------- /docs/book/src/customization/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/customization/index.rst -------------------------------------------------------------------------------- /docs/book/src/customization/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/customization/packages.rst -------------------------------------------------------------------------------- /docs/book/src/development/code_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/development/code_style.rst -------------------------------------------------------------------------------- /docs/book/src/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/development/index.rst -------------------------------------------------------------------------------- /docs/book/src/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/faq/index.rst -------------------------------------------------------------------------------- /docs/book/src/finalremarks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/finalremarks/index.rst -------------------------------------------------------------------------------- /docs/book/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/host/gcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/installation/host/gcs.rst -------------------------------------------------------------------------------- /docs/book/src/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/installation/index.rst -------------------------------------------------------------------------------- /docs/book/src/installation/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/installation/upgrade.rst -------------------------------------------------------------------------------- /docs/book/src/integrations/box-js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/integrations/box-js.rst -------------------------------------------------------------------------------- /docs/book/src/integrations/curtain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/integrations/curtain.rst -------------------------------------------------------------------------------- /docs/book/src/integrations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/integrations/index.rst -------------------------------------------------------------------------------- /docs/book/src/integrations/librenms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/integrations/librenms.rst -------------------------------------------------------------------------------- /docs/book/src/integrations/suricata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/integrations/suricata.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/introduction/index.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/introduction/license.rst -------------------------------------------------------------------------------- /docs/book/src/introduction/what.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/introduction/what.rst -------------------------------------------------------------------------------- /docs/book/src/usage/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/api.rst -------------------------------------------------------------------------------- /docs/book/src/usage/clean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/clean.rst -------------------------------------------------------------------------------- /docs/book/src/usage/dist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/dist.rst -------------------------------------------------------------------------------- /docs/book/src/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/index.rst -------------------------------------------------------------------------------- /docs/book/src/usage/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/internals.rst -------------------------------------------------------------------------------- /docs/book/src/usage/monitor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/monitor.rst -------------------------------------------------------------------------------- /docs/book/src/usage/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/packages.rst -------------------------------------------------------------------------------- /docs/book/src/usage/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/performance.rst -------------------------------------------------------------------------------- /docs/book/src/usage/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/results.rst -------------------------------------------------------------------------------- /docs/book/src/usage/rooter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/rooter.rst -------------------------------------------------------------------------------- /docs/book/src/usage/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/start.rst -------------------------------------------------------------------------------- /docs/book/src/usage/submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/submit.rst -------------------------------------------------------------------------------- /docs/book/src/usage/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/utilities.rst -------------------------------------------------------------------------------- /docs/book/src/usage/web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/docs/book/src/usage/web.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme==2.0.0 2 | -------------------------------------------------------------------------------- /extra/browser_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/browser_extension/README.md -------------------------------------------------------------------------------- /extra/browser_extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/browser_extension/background.js -------------------------------------------------------------------------------- /extra/browser_extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/browser_extension/manifest.json -------------------------------------------------------------------------------- /extra/buildvswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/buildvswitch.sh -------------------------------------------------------------------------------- /extra/cape-fluentd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/cape-fluentd.conf -------------------------------------------------------------------------------- /extra/guac related/fstab.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/guac related/fstab.in -------------------------------------------------------------------------------- /extra/guac related/nginx-site-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/guac related/nginx-site-config.txt -------------------------------------------------------------------------------- /extra/libvirt_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/libvirt_installer.sh -------------------------------------------------------------------------------- /extra/linux_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/linux_agent.sh -------------------------------------------------------------------------------- /extra/optional_dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/optional_dependencies.txt -------------------------------------------------------------------------------- /extra/services/moloch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/services/moloch -------------------------------------------------------------------------------- /extra/services/openvswitch-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/services/openvswitch-switch -------------------------------------------------------------------------------- /extra/whitelist_domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/whitelist_domains.txt -------------------------------------------------------------------------------- /extra/whitelist_ips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/whitelist_ips.txt -------------------------------------------------------------------------------- /extra/whitelist_network.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yara_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/extra/yara_installer.sh -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- 1 | # From @doomedraven with love. 2 | * Use `sudo cape2.sh -h` 3 | -------------------------------------------------------------------------------- /installer/cape2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/cape2.sh -------------------------------------------------------------------------------- /installer/choco.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/choco.bat -------------------------------------------------------------------------------- /installer/disable_win7noise.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/disable_win7noise.bat -------------------------------------------------------------------------------- /installer/kvm-qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/kvm-qemu.sh -------------------------------------------------------------------------------- /installer/suricata_from_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/suricata_from_source.sh -------------------------------------------------------------------------------- /installer/win10_disabler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/installer/win10_disabler.ps1 -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/abstracts.py -------------------------------------------------------------------------------- /lib/cuckoo/common/admin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/admin_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/cape_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/cape_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/cents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cuckoo/common/cleaners_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/cleaners_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/colors.py -------------------------------------------------------------------------------- /lib/cuckoo/common/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/compare.py -------------------------------------------------------------------------------- /lib/cuckoo/common/compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/compressor.py -------------------------------------------------------------------------------- /lib/cuckoo/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/config.py -------------------------------------------------------------------------------- /lib/cuckoo/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/constants.py -------------------------------------------------------------------------------- /lib/cuckoo/common/decoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/decoders/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/common/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/defines.py -------------------------------------------------------------------------------- /lib/cuckoo/common/demux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/demux.py -------------------------------------------------------------------------------- /lib/cuckoo/common/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/dictionary.py -------------------------------------------------------------------------------- /lib/cuckoo/common/dist_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/dist_db.py -------------------------------------------------------------------------------- /lib/cuckoo/common/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/dns.py -------------------------------------------------------------------------------- /lib/cuckoo/common/dotnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/dotnet_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/email_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/email_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/exceptions.py -------------------------------------------------------------------------------- /lib/cuckoo/common/extractor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/extractor_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/files.py -------------------------------------------------------------------------------- /lib/cuckoo/common/fraunhofer_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/fraunhofer_helper.py -------------------------------------------------------------------------------- /lib/cuckoo/common/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/gcp.py -------------------------------------------------------------------------------- /lib/cuckoo/common/hypervisor_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/hypervisor_config.py -------------------------------------------------------------------------------- /lib/cuckoo/common/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/icon.py -------------------------------------------------------------------------------- /lib/cuckoo/common/integrations/capa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/integrations/capa.py -------------------------------------------------------------------------------- /lib/cuckoo/common/integrations/clamav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/integrations/clamav.py -------------------------------------------------------------------------------- /lib/cuckoo/common/integrations/floss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/integrations/floss.py -------------------------------------------------------------------------------- /lib/cuckoo/common/integrations/mitre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/integrations/mitre.py -------------------------------------------------------------------------------- /lib/cuckoo/common/integrations/peepdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/integrations/peepdf.py -------------------------------------------------------------------------------- /lib/cuckoo/common/iocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/iocs.py -------------------------------------------------------------------------------- /lib/cuckoo/common/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/irc.py -------------------------------------------------------------------------------- /lib/cuckoo/common/load_extra_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/load_extra_modules.py -------------------------------------------------------------------------------- /lib/cuckoo/common/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/logo.py -------------------------------------------------------------------------------- /lib/cuckoo/common/logtbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/logtbl.py -------------------------------------------------------------------------------- /lib/cuckoo/common/mapTTPs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/mapTTPs.py -------------------------------------------------------------------------------- /lib/cuckoo/common/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/misc.py -------------------------------------------------------------------------------- /lib/cuckoo/common/netlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/netlog.py -------------------------------------------------------------------------------- /lib/cuckoo/common/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/objects.py -------------------------------------------------------------------------------- /lib/cuckoo/common/path_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/path_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/pcap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/pcap_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/quarantine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/quarantine.py -------------------------------------------------------------------------------- /lib/cuckoo/common/safelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/safelist.py -------------------------------------------------------------------------------- /lib/cuckoo/common/saztopcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/saztopcap.py -------------------------------------------------------------------------------- /lib/cuckoo/common/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/scoring.py -------------------------------------------------------------------------------- /lib/cuckoo/common/socket_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/socket_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/sshclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/sshclient.py -------------------------------------------------------------------------------- /lib/cuckoo/common/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/structures.py -------------------------------------------------------------------------------- /lib/cuckoo/common/suri_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/suri_specs.py -------------------------------------------------------------------------------- /lib/cuckoo/common/suricata_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/suricata_detection.py -------------------------------------------------------------------------------- /lib/cuckoo/common/suricatasc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/suricatasc.py -------------------------------------------------------------------------------- /lib/cuckoo/common/trim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/trim_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/url_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/url_validate.py -------------------------------------------------------------------------------- /lib/cuckoo/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/utils_dicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/utils_dicts.py -------------------------------------------------------------------------------- /lib/cuckoo/common/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/web_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/common/webadmin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/common/webadmin_utils.py -------------------------------------------------------------------------------- /lib/cuckoo/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/__init__.py -------------------------------------------------------------------------------- /lib/cuckoo/core/analysis_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/analysis_manager.py -------------------------------------------------------------------------------- /lib/cuckoo/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/database.py -------------------------------------------------------------------------------- /lib/cuckoo/core/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/guest.py -------------------------------------------------------------------------------- /lib/cuckoo/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/log.py -------------------------------------------------------------------------------- /lib/cuckoo/core/machinery_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/machinery_manager.py -------------------------------------------------------------------------------- /lib/cuckoo/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/plugins.py -------------------------------------------------------------------------------- /lib/cuckoo/core/resultserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/resultserver.py -------------------------------------------------------------------------------- /lib/cuckoo/core/rooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/rooter.py -------------------------------------------------------------------------------- /lib/cuckoo/core/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/scheduler.py -------------------------------------------------------------------------------- /lib/cuckoo/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/cuckoo/core/startup.py -------------------------------------------------------------------------------- /lib/downloaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/downloaders/__init__.py -------------------------------------------------------------------------------- /lib/downloaders/malwarebazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/downloaders/malwarebazaar.py -------------------------------------------------------------------------------- /lib/downloaders/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/lib/downloaders/virustotal.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/auxiliary/AzSniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/AzSniffer.py -------------------------------------------------------------------------------- /modules/auxiliary/Mitmdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/Mitmdump.py -------------------------------------------------------------------------------- /modules/auxiliary/PolarProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/PolarProxy.py -------------------------------------------------------------------------------- /modules/auxiliary/QemuScreenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/QemuScreenshots.py -------------------------------------------------------------------------------- /modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/__init__.py -------------------------------------------------------------------------------- /modules/auxiliary/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/auxiliary/sniffer.py -------------------------------------------------------------------------------- /modules/feeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/feeds/__init__.py -------------------------------------------------------------------------------- /modules/machinery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/__init__.py -------------------------------------------------------------------------------- /modules/machinery/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/aws.py -------------------------------------------------------------------------------- /modules/machinery/az.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/az.py -------------------------------------------------------------------------------- /modules/machinery/esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/esx.py -------------------------------------------------------------------------------- /modules/machinery/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/gcp.py -------------------------------------------------------------------------------- /modules/machinery/kvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/kvm.py -------------------------------------------------------------------------------- /modules/machinery/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/multi.py -------------------------------------------------------------------------------- /modules/machinery/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/physical.py -------------------------------------------------------------------------------- /modules/machinery/proxmox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/proxmox.py -------------------------------------------------------------------------------- /modules/machinery/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/qemu.py -------------------------------------------------------------------------------- /modules/machinery/virtualbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/virtualbox.py -------------------------------------------------------------------------------- /modules/machinery/vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/vmware.py -------------------------------------------------------------------------------- /modules/machinery/vmwarerest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/vmwarerest.py -------------------------------------------------------------------------------- /modules/machinery/vmwareserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/vmwareserver.py -------------------------------------------------------------------------------- /modules/machinery/vsphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/vsphere.py -------------------------------------------------------------------------------- /modules/machinery/xenserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/machinery/xenserver.py -------------------------------------------------------------------------------- /modules/processing/CAPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/CAPE.py -------------------------------------------------------------------------------- /modules/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/__init__.py -------------------------------------------------------------------------------- /modules/processing/amsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/amsi.py -------------------------------------------------------------------------------- /modules/processing/analysisinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/analysisinfo.py -------------------------------------------------------------------------------- /modules/processing/antiransomware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/antiransomware.py -------------------------------------------------------------------------------- /modules/processing/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/behavior.py -------------------------------------------------------------------------------- /modules/processing/boxjs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/boxjs.py -------------------------------------------------------------------------------- /modules/processing/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/debug.py -------------------------------------------------------------------------------- /modules/processing/decompression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/decompression.py -------------------------------------------------------------------------------- /modules/processing/deduplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/deduplication.py -------------------------------------------------------------------------------- /modules/processing/dumptls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/dumptls.py -------------------------------------------------------------------------------- /modules/processing/maliciousmacrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/maliciousmacrobot.py -------------------------------------------------------------------------------- /modules/processing/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/memory.py -------------------------------------------------------------------------------- /modules/processing/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/network.py -------------------------------------------------------------------------------- /modules/processing/pcapng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/pcapng.py -------------------------------------------------------------------------------- /modules/processing/platform/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/platform/linux.py -------------------------------------------------------------------------------- /modules/processing/polarproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/polarproxy.py -------------------------------------------------------------------------------- /modules/processing/procmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/procmemory.py -------------------------------------------------------------------------------- /modules/processing/procmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/procmon.py -------------------------------------------------------------------------------- /modules/processing/reversinglabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/reversinglabs.py -------------------------------------------------------------------------------- /modules/processing/strace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/strace.py -------------------------------------------------------------------------------- /modules/processing/suricata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/suricata.py -------------------------------------------------------------------------------- /modules/processing/url_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/url_analysis.py -------------------------------------------------------------------------------- /modules/processing/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/processing/usage.py -------------------------------------------------------------------------------- /modules/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/__init__.py -------------------------------------------------------------------------------- /modules/reporting/bingraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/bingraph.py -------------------------------------------------------------------------------- /modules/reporting/browserext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/browserext.py -------------------------------------------------------------------------------- /modules/reporting/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/callback.py -------------------------------------------------------------------------------- /modules/reporting/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/compression.py -------------------------------------------------------------------------------- /modules/reporting/elasticsearchdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/elasticsearchdb.py -------------------------------------------------------------------------------- /modules/reporting/gcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/gcs.py -------------------------------------------------------------------------------- /modules/reporting/jsondump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/jsondump.py -------------------------------------------------------------------------------- /modules/reporting/litereport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/litereport.py -------------------------------------------------------------------------------- /modules/reporting/maec41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/maec41.py -------------------------------------------------------------------------------- /modules/reporting/maec5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/maec5.py -------------------------------------------------------------------------------- /modules/reporting/mitre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/mitre.py -------------------------------------------------------------------------------- /modules/reporting/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/mongodb.py -------------------------------------------------------------------------------- /modules/reporting/report_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/report_doc.py -------------------------------------------------------------------------------- /modules/reporting/tmpfsclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/reporting/tmpfsclean.py -------------------------------------------------------------------------------- /modules/signatures/CAPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/CAPE.py -------------------------------------------------------------------------------- /modules/signatures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/__init__.py -------------------------------------------------------------------------------- /modules/signatures/all/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/all/__init__.py -------------------------------------------------------------------------------- /modules/signatures/cape_extracted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/cape_extracted.py -------------------------------------------------------------------------------- /modules/signatures/https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/https.py -------------------------------------------------------------------------------- /modules/signatures/linux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/linux/__init__.py -------------------------------------------------------------------------------- /modules/signatures/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/modules/signatures/windows/__init__.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/requirements.txt -------------------------------------------------------------------------------- /systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/README.md -------------------------------------------------------------------------------- /systemd/cape-dist.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape-dist.service -------------------------------------------------------------------------------- /systemd/cape-fstab.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape-fstab.service -------------------------------------------------------------------------------- /systemd/cape-processor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape-processor.service -------------------------------------------------------------------------------- /systemd/cape-rooter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape-rooter.service -------------------------------------------------------------------------------- /systemd/cape-web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape-web.service -------------------------------------------------------------------------------- /systemd/cape.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/cape.service -------------------------------------------------------------------------------- /systemd/guac-web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/guac-web.service -------------------------------------------------------------------------------- /systemd/guacd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/guacd.service -------------------------------------------------------------------------------- /systemd/suricata-update.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/suricata-update.service -------------------------------------------------------------------------------- /systemd/suricata-update.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/suricata-update.timer -------------------------------------------------------------------------------- /systemd/suricata.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/systemd/suricata.service -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/email_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/email_test.py -------------------------------------------------------------------------------- /tests/grab_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/grab_samples.py -------------------------------------------------------------------------------- /tests/integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/integrity.py -------------------------------------------------------------------------------- /tests/processor_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/processor_tests.py -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/reporter_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/reporter_tests.py -------------------------------------------------------------------------------- /tests/sniffer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/sniffer_tests.py -------------------------------------------------------------------------------- /tests/tcr_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/tcr_misc.py -------------------------------------------------------------------------------- /tests/test_abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_abstracts.py -------------------------------------------------------------------------------- /tests/test_analysis_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_analysis_manager.py -------------------------------------------------------------------------------- /tests/test_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_behavior.py -------------------------------------------------------------------------------- /tests/test_bson.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_bson.bson -------------------------------------------------------------------------------- /tests/test_cape_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_cape_utils.py -------------------------------------------------------------------------------- /tests/test_cleaners_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_cleaners_utils.py -------------------------------------------------------------------------------- /tests/test_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_colors.py -------------------------------------------------------------------------------- /tests/test_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_compressor.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_data/1/reports/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_data/1/reports/report.json -------------------------------------------------------------------------------- /tests/test_data/2/reports/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_data/2/reports/report.json -------------------------------------------------------------------------------- /tests/test_data/3/reports/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_data/3/reports/report.json -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_demux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_demux.py -------------------------------------------------------------------------------- /tests/test_dist_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_dist_db.py -------------------------------------------------------------------------------- /tests/test_downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_downloaders.py -------------------------------------------------------------------------------- /tests/test_file_extra_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_file_extra_info.py -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_files.py -------------------------------------------------------------------------------- /tests/test_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_icon.py -------------------------------------------------------------------------------- /tests/test_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_logo.py -------------------------------------------------------------------------------- /tests/test_mitre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_mitre.py -------------------------------------------------------------------------------- /tests/test_netlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_netlog.py -------------------------------------------------------------------------------- /tests/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_objects.py -------------------------------------------------------------------------------- /tests/test_parse_office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_parse_office.py -------------------------------------------------------------------------------- /tests/test_peepdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_peepdf.py -------------------------------------------------------------------------------- /tests/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_processing.py -------------------------------------------------------------------------------- /tests/test_quarantine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_quarantine.py -------------------------------------------------------------------------------- /tests/test_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_signature.py -------------------------------------------------------------------------------- /tests/test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_strings.py -------------------------------------------------------------------------------- /tests/test_suricata_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_suricata_naming.py -------------------------------------------------------------------------------- /tests/test_tls_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_tls_utils.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_utils_pretty_print_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_utils_pretty_print_funcs.py -------------------------------------------------------------------------------- /tests/test_web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_web_utils.py -------------------------------------------------------------------------------- /tests/test_yara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/test_yara.py -------------------------------------------------------------------------------- /tests/utils_pretty_print_funcs_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/utils_pretty_print_funcs_data.py -------------------------------------------------------------------------------- /tests/web/test_apiv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/web/test_apiv2.py -------------------------------------------------------------------------------- /tests/web/test_submission_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/web/test_submission_views.py -------------------------------------------------------------------------------- /tests/zip_compound/test_extract_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/zip_compound/test_extract_path.py -------------------------------------------------------------------------------- /tests/zip_compound/test_json_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/tests/zip_compound/test_json_config.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/admin.py -------------------------------------------------------------------------------- /utils/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/cleaners.py -------------------------------------------------------------------------------- /utils/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/community.py -------------------------------------------------------------------------------- /utils/community_blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/community_blocklist.py -------------------------------------------------------------------------------- /utils/db_migration/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration/alembic.ini -------------------------------------------------------------------------------- /utils/db_migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration/env.py -------------------------------------------------------------------------------- /utils/db_migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration/script.py.mako -------------------------------------------------------------------------------- /utils/db_migration_dist/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration_dist/alembic.ini -------------------------------------------------------------------------------- /utils/db_migration_dist/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration_dist/env.py -------------------------------------------------------------------------------- /utils/db_migration_dist/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/db_migration_dist/script.py.mako -------------------------------------------------------------------------------- /utils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/dist.py -------------------------------------------------------------------------------- /utils/down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/down.py -------------------------------------------------------------------------------- /utils/fstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/fstab.py -------------------------------------------------------------------------------- /utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/process.py -------------------------------------------------------------------------------- /utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/profiling.py -------------------------------------------------------------------------------- /utils/proxy2cape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/proxy2cape.py -------------------------------------------------------------------------------- /utils/rooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/rooter.py -------------------------------------------------------------------------------- /utils/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/route.py -------------------------------------------------------------------------------- /utils/router_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/router_manager.py -------------------------------------------------------------------------------- /utils/sample_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/sample_path.py -------------------------------------------------------------------------------- /utils/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/submit.py -------------------------------------------------------------------------------- /utils/tcpdumpwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/tcpdumpwrapper.py -------------------------------------------------------------------------------- /utils/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/tls.py -------------------------------------------------------------------------------- /utils/vpn2cape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/vpn2cape.py -------------------------------------------------------------------------------- /utils/vpncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/utils/vpncheck.py -------------------------------------------------------------------------------- /uwsgi/cape.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/uwsgi/cape.conf -------------------------------------------------------------------------------- /uwsgi/cape.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/uwsgi/cape.ini -------------------------------------------------------------------------------- /uwsgi/capedist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/uwsgi/capedist.ini -------------------------------------------------------------------------------- /web/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/__init__.py -------------------------------------------------------------------------------- /web/analysis/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/forms.py -------------------------------------------------------------------------------- /web/analysis/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/templatetags/__init__.py -------------------------------------------------------------------------------- /web/analysis/templatetags/key_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/templatetags/key_tags.py -------------------------------------------------------------------------------- /web/analysis/templatetags/pdf_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/templatetags/pdf_tags.py -------------------------------------------------------------------------------- /web/analysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/urls.py -------------------------------------------------------------------------------- /web/analysis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/analysis/views.py -------------------------------------------------------------------------------- /web/apiv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/apiv2/throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/apiv2/throttling.py -------------------------------------------------------------------------------- /web/apiv2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/apiv2/urls.py -------------------------------------------------------------------------------- /web/apiv2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/apiv2/views.py -------------------------------------------------------------------------------- /web/captcha_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/captcha_admin/__init__.py -------------------------------------------------------------------------------- /web/captcha_admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/captcha_admin/admin.py -------------------------------------------------------------------------------- /web/captcha_admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/captcha_admin/apps.py -------------------------------------------------------------------------------- /web/captcha_admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/captcha_admin/forms.py -------------------------------------------------------------------------------- /web/captcha_admin/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/captcha_admin/mixins.py -------------------------------------------------------------------------------- /web/captcha_admin/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/compare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/compare/__init__.py -------------------------------------------------------------------------------- /web/compare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/compare/urls.py -------------------------------------------------------------------------------- /web/compare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/compare/views.py -------------------------------------------------------------------------------- /web/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/dashboard/urls.py -------------------------------------------------------------------------------- /web/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/dashboard/views.py -------------------------------------------------------------------------------- /web/guac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/guac/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/consumers.py -------------------------------------------------------------------------------- /web/guac/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/routing.py -------------------------------------------------------------------------------- /web/guac/templates/guac/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/templates/guac/error.html -------------------------------------------------------------------------------- /web/guac/templates/guac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/templates/guac/index.html -------------------------------------------------------------------------------- /web/guac/templates/guac/wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/templates/guac/wait.html -------------------------------------------------------------------------------- /web/guac/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/urls.py -------------------------------------------------------------------------------- /web/guac/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/guac/views.py -------------------------------------------------------------------------------- /web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/manage.py -------------------------------------------------------------------------------- /web/static/css/bootstrap-social.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/bootstrap-social.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/static/css/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/datatables.min.css -------------------------------------------------------------------------------- /web/static/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/fontawesome-all.css -------------------------------------------------------------------------------- /web/static/css/guac-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/guac-main.css -------------------------------------------------------------------------------- /web/static/css/guac-playback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/guac-playback.css -------------------------------------------------------------------------------- /web/static/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/lightbox.css -------------------------------------------------------------------------------- /web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/css/style.css -------------------------------------------------------------------------------- /web/static/generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/generated/README -------------------------------------------------------------------------------- /web/static/graphic/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/graphic/background.png -------------------------------------------------------------------------------- /web/static/graphic/cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/graphic/cape.png -------------------------------------------------------------------------------- /web/static/img/cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/cape.png -------------------------------------------------------------------------------- /web/static/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/close.png -------------------------------------------------------------------------------- /web/static/img/github_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/github_login.png -------------------------------------------------------------------------------- /web/static/img/google_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/google_login.png -------------------------------------------------------------------------------- /web/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/loading.gif -------------------------------------------------------------------------------- /web/static/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/next.png -------------------------------------------------------------------------------- /web/static/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/img/prev.png -------------------------------------------------------------------------------- /web/static/js/bootstrap-fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/bootstrap-fileupload.js -------------------------------------------------------------------------------- /web/static/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/bootstrap-transition.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /web/static/js/crypto-js.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/crypto-js.min.js -------------------------------------------------------------------------------- /web/static/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/datatables.min.js -------------------------------------------------------------------------------- /web/static/js/guac-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/guac-main.js -------------------------------------------------------------------------------- /web/static/js/guac-playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/guac-playback.js -------------------------------------------------------------------------------- /web/static/js/guacamole-1.4.0-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/guacamole-1.4.0-all.min.js -------------------------------------------------------------------------------- /web/static/js/hexdump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/hexdump.js -------------------------------------------------------------------------------- /web/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /web/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/jquery.js -------------------------------------------------------------------------------- /web/static/js/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/lightbox.js -------------------------------------------------------------------------------- /web/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/moment.min.js -------------------------------------------------------------------------------- /web/static/js/pako_inflate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/js/pako_inflate.min.js -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web/submission/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/submission/__init__.py -------------------------------------------------------------------------------- /web/submission/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/submission/urls.py -------------------------------------------------------------------------------- /web/submission/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/submission/views.py -------------------------------------------------------------------------------- /web/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/email.html -------------------------------------------------------------------------------- /web/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/email_confirm.html -------------------------------------------------------------------------------- /web/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/login.html -------------------------------------------------------------------------------- /web/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/logout.html -------------------------------------------------------------------------------- /web/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/signup.html -------------------------------------------------------------------------------- /web/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/account/signup_closed.html -------------------------------------------------------------------------------- /web/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/admin/base_site.html -------------------------------------------------------------------------------- /web/templates/admin/captcha_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/admin/captcha_login.html -------------------------------------------------------------------------------- /web/templates/analysis/CAPE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/CAPE/index.html -------------------------------------------------------------------------------- /web/templates/analysis/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/admin/index.html -------------------------------------------------------------------------------- /web/templates/analysis/antivirus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/antivirus.html -------------------------------------------------------------------------------- /web/templates/analysis/backscatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/backscatter.html -------------------------------------------------------------------------------- /web/templates/analysis/generic/_lnk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/generic/_lnk.html -------------------------------------------------------------------------------- /web/templates/analysis/generic/_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/generic/_pdf.html -------------------------------------------------------------------------------- /web/templates/analysis/generic/_pe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/generic/_pe.html -------------------------------------------------------------------------------- /web/templates/analysis/generic/_rdp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/generic/_rdp.html -------------------------------------------------------------------------------- /web/templates/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/index.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_gdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/memory/_gdt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_idt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/memory/_idt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/_ssdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/memory/_ssdt.html -------------------------------------------------------------------------------- /web/templates/analysis/memory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/memory/index.html -------------------------------------------------------------------------------- /web/templates/analysis/misp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/misp/index.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_cif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/network/_cif.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_dns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/network/_dns.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_irc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/network/_irc.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/network/_tcp.html -------------------------------------------------------------------------------- /web/templates/analysis/network/_udp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/network/_udp.html -------------------------------------------------------------------------------- /web/templates/analysis/pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/pending.html -------------------------------------------------------------------------------- /web/templates/analysis/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/report.html -------------------------------------------------------------------------------- /web/templates/analysis/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/search.html -------------------------------------------------------------------------------- /web/templates/analysis/strace/_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/strace/_tree.html -------------------------------------------------------------------------------- /web/templates/analysis/strace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/strace/index.html -------------------------------------------------------------------------------- /web/templates/analysis/surialert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/surialert.html -------------------------------------------------------------------------------- /web/templates/analysis/surifiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/surifiles.html -------------------------------------------------------------------------------- /web/templates/analysis/surihttp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/surihttp.html -------------------------------------------------------------------------------- /web/templates/analysis/suritls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/suritls.html -------------------------------------------------------------------------------- /web/templates/analysis/tracee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/analysis/tracee/index.html -------------------------------------------------------------------------------- /web/templates/apiv2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/apiv2/index.html -------------------------------------------------------------------------------- /web/templates/auth/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/auth/base.html -------------------------------------------------------------------------------- /web/templates/auth/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/auth/base_site.html -------------------------------------------------------------------------------- /web/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/auth/login.html -------------------------------------------------------------------------------- /web/templates/auth/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/auth/logout.html -------------------------------------------------------------------------------- /web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/base.html -------------------------------------------------------------------------------- /web/templates/compare/_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/compare/_info.html -------------------------------------------------------------------------------- /web/templates/compare/both.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/compare/both.html -------------------------------------------------------------------------------- /web/templates/compare/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/compare/hash.html -------------------------------------------------------------------------------- /web/templates/compare/left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/compare/left.html -------------------------------------------------------------------------------- /web/templates/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/dashboard/index.html -------------------------------------------------------------------------------- /web/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/error.html -------------------------------------------------------------------------------- /web/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/footer.html -------------------------------------------------------------------------------- /web/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/header.html -------------------------------------------------------------------------------- /web/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/robots.txt -------------------------------------------------------------------------------- /web/templates/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/socialaccount/signup.html -------------------------------------------------------------------------------- /web/templates/standalone_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/standalone_error.html -------------------------------------------------------------------------------- /web/templates/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/statistics.html -------------------------------------------------------------------------------- /web/templates/submission/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/submission/complete.html -------------------------------------------------------------------------------- /web/templates/submission/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/submission/index.html -------------------------------------------------------------------------------- /web/templates/submission/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/submission/status.html -------------------------------------------------------------------------------- /web/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/success.html -------------------------------------------------------------------------------- /web/templates/success_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/success_simple.html -------------------------------------------------------------------------------- /web/templates/success_vtup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/templates/success_vtup.html -------------------------------------------------------------------------------- /web/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/users/admin.py -------------------------------------------------------------------------------- /web/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/users/apps.py -------------------------------------------------------------------------------- /web/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/users/migrations/0002_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/users/migrations/0002_reports.py -------------------------------------------------------------------------------- /web/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/users/models.py -------------------------------------------------------------------------------- /web/users/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /web/users/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /web/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/__init__.py -------------------------------------------------------------------------------- /web/web/allauth_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/allauth_adapters.py -------------------------------------------------------------------------------- /web/web/allauth_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/allauth_forms.py -------------------------------------------------------------------------------- /web/web/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/asgi.py -------------------------------------------------------------------------------- /web/web/guac_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/guac_settings.py -------------------------------------------------------------------------------- /web/web/guac_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/guac_urls.py -------------------------------------------------------------------------------- /web/web/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/headers.py -------------------------------------------------------------------------------- /web/web/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/local_settings.py -------------------------------------------------------------------------------- /web/web/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/middleware/__init__.py -------------------------------------------------------------------------------- /web/web/middleware/custom_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/middleware/custom_auth.py -------------------------------------------------------------------------------- /web/web/middleware/db_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/middleware/db_transaction.py -------------------------------------------------------------------------------- /web/web/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/settings.py -------------------------------------------------------------------------------- /web/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/urls.py -------------------------------------------------------------------------------- /web/web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/views.py -------------------------------------------------------------------------------- /web/web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevoreilly/CAPEv2/HEAD/web/web/wsgi.py --------------------------------------------------------------------------------