├── .gitignore ├── Dependencies └── yara-3.5.0 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── COPYING │ ├── Makefile.am │ ├── README.md │ ├── args.c │ ├── args.h │ ├── bootstrap.sh │ ├── build.sh │ ├── configure.ac │ ├── docs │ ├── capi.rst │ ├── commandline.rst │ ├── conf.py │ ├── gettingstarted.rst │ ├── index.rst │ ├── make.bat │ ├── modules.rst │ ├── modules │ │ ├── cuckoo.rst │ │ ├── elf.rst │ │ ├── hash.rst │ │ ├── magic.rst │ │ ├── math.rst │ │ └── pe.rst │ ├── writingmodules.rst │ ├── writingrules.rst │ └── yarapython.rst │ ├── extra │ ├── TextMate-bundle.zip │ ├── UltraEdit-wordfile.txt │ ├── logo.ai │ ├── logo.svg │ ├── old-logo.png │ └── old-logo.psd │ ├── libyara │ ├── Makefile.am │ ├── ahocorasick.c │ ├── arena.c │ ├── atoms.c │ ├── compiler.c │ ├── exception.h │ ├── exec.c │ ├── exefiles.c │ ├── filemap.c │ ├── grammar.c │ ├── grammar.h │ ├── grammar.y │ ├── hash.c │ ├── hex_grammar.c │ ├── hex_grammar.h │ ├── hex_grammar.y │ ├── hex_lexer.c │ ├── hex_lexer.l │ ├── include │ │ ├── yara.h │ │ └── yara │ │ │ ├── ahocorasick.h │ │ │ ├── arena.h │ │ │ ├── atoms.h │ │ │ ├── compiler.h │ │ │ ├── elf.h │ │ │ ├── error.h │ │ │ ├── exec.h │ │ │ ├── exefiles.h │ │ │ ├── filemap.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── hex_lexer.h │ │ │ ├── integers.h │ │ │ ├── lexer.h │ │ │ ├── libyara.h │ │ │ ├── limits.h │ │ │ ├── mem.h │ │ │ ├── modules.h │ │ │ ├── object.h │ │ │ ├── parser.h │ │ │ ├── pe.h │ │ │ ├── proc.h │ │ │ ├── re.h │ │ │ ├── re_lexer.h │ │ │ ├── rules.h │ │ │ ├── scan.h │ │ │ ├── sizedstr.h │ │ │ ├── stream.h │ │ │ ├── strutils.h │ │ │ ├── threading.h │ │ │ ├── types.h │ │ │ └── utils.h │ ├── lexer.c │ ├── lexer.l │ ├── libyara.c │ ├── mem.c │ ├── modules.c │ ├── modules │ │ ├── cuckoo.c │ │ ├── demo.c │ │ ├── elf.c │ │ ├── hash.c │ │ ├── magic.c │ │ ├── math.c │ │ ├── module_list │ │ ├── pe.c │ │ ├── pe_utils.c │ │ └── tests.c │ ├── object.c │ ├── parser.c │ ├── proc.c │ ├── re.c │ ├── re_grammar.c │ ├── re_grammar.h │ ├── re_grammar.y │ ├── re_lexer.c │ ├── re_lexer.l │ ├── rules.c │ ├── scan.c │ ├── sizedstr.c │ ├── stino.settings │ ├── stream.c │ ├── strutils.c │ ├── threading.c │ ├── yara.pc │ └── yara.pc.in │ ├── sample.file │ ├── sample.rules │ ├── tests │ ├── .dirstamp │ ├── blob.h │ ├── data │ │ ├── tiny │ │ ├── tiny-idata-51ff │ │ ├── tiny-idata-5200 │ │ └── tiny.notes │ ├── test-alignment.c │ ├── test-pe.c │ ├── test-rules.c │ ├── util.c │ └── util.h │ ├── threading.c │ ├── threading.h │ ├── windows │ ├── include │ │ ├── config.h │ │ ├── jansson.h │ │ ├── jansson_config.h │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── vs2010 │ │ ├── libyara │ │ │ └── libyara.vcxproj │ │ ├── yara.sln │ │ ├── yara │ │ │ ├── getopt.c │ │ │ └── yara.vcxproj │ │ └── yarac │ │ │ ├── getopt.c │ │ │ └── yarac.vcxproj │ └── vs2015 │ │ ├── libyara │ │ ├── libyara.vcxproj │ │ └── packages.config │ │ ├── yara.sln │ │ ├── yara │ │ ├── packages.config │ │ └── yara.vcxproj │ │ └── yarac │ │ ├── packages.config │ │ └── yarac.vcxproj │ ├── yara.c │ ├── yara.man │ ├── yarac.c │ └── yarac.man ├── LICENSE ├── Malware Detection with Machine Learning.ipynb ├── README.md ├── cuckoo ├── README.md ├── agent │ ├── agent.py │ └── agent.sh ├── analyzer │ ├── __init__.py │ ├── android │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── config │ │ │ └── hooks.json │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── auxiliary │ │ │ ├── __init__.py │ │ │ └── screenshots.py │ │ │ └── packages │ │ │ ├── __init__.py │ │ │ ├── apk.py │ │ │ └── default_browser.py │ ├── darwin │ │ ├── __init__.py │ │ ├── analyzer.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── auxiliary │ │ │ ├── __init__.py │ │ │ └── screenshots.py │ │ │ └── packages │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── bash.py │ │ │ ├── macho.py │ │ │ └── zip.py │ ├── linux │ │ ├── analyzer.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── auxiliary │ │ │ ├── __init__.py │ │ │ ├── lkm.py │ │ │ └── stap.py │ │ │ └── packages │ │ │ ├── __init__.py │ │ │ └── generic.py │ └── windows │ │ ├── analyzer.py │ │ ├── bin │ │ └── execsc.exe │ │ └── modules │ │ ├── __init__.py │ │ ├── auxiliary │ │ ├── __init__.py │ │ ├── disguise.py │ │ ├── dumptls.py │ │ ├── human.py │ │ ├── installcert.py │ │ ├── procmon.py │ │ ├── reboot.py │ │ ├── recentfiles.py │ │ └── screenshots.py │ │ └── packages │ │ ├── __init__.py │ │ ├── applet.py │ │ ├── bin.py │ │ ├── com.py │ │ ├── cpl.py │ │ ├── dll.py │ │ ├── doc.py │ │ ├── exe.py │ │ ├── ff.py │ │ ├── generic.py │ │ ├── ie.py │ │ ├── jar.py │ │ ├── js.py │ │ ├── msi.py │ │ ├── pdf.py │ │ ├── ppt.py │ │ ├── ps1.py │ │ ├── pub.py │ │ ├── python.py │ │ ├── reboot.py │ │ ├── vbs.py │ │ ├── wsf.py │ │ ├── xls.py │ │ └── zip.py ├── conf │ ├── auxiliary.conf │ ├── avd.conf │ ├── cuckoo.conf │ ├── esx.conf │ ├── kvm.conf │ ├── memory.conf │ ├── physical.conf │ ├── processing.conf │ ├── qemu.conf │ ├── reporting.conf │ ├── virtualbox.conf │ ├── vmware.conf │ ├── vpn.conf │ ├── vsphere.conf │ └── xenserver.conf ├── cuckoo.py ├── data │ ├── __init__.py │ ├── android │ │ ├── anti-vm │ │ │ ├── fake-build.prop │ │ │ ├── fake-cpuinfo │ │ │ └── fake-drivers │ │ ├── apps │ │ │ ├── ImportContacts.apk │ │ │ ├── Superuser.apk │ │ │ └── de.robv.android.xposed.installer_v33_36570c.apk │ │ ├── binaries │ │ │ └── su │ │ ├── create_guest_avd.sh │ │ └── hooking │ │ │ ├── Droidmon.apk │ │ │ └── EmulatorAntiDetect.apk │ ├── elasticsearch │ │ └── template.json │ ├── gatherer.py │ ├── guids.txt │ ├── html │ │ ├── base-report.html │ │ ├── base-web.html │ │ ├── browse.html │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ └── bootstrap.min.css │ │ ├── error.html │ │ ├── graphic │ │ │ └── logo.html │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── functions.js │ │ │ └── jquery.min.js │ │ ├── pagination-menu.html │ │ ├── pagination-rpp.html │ │ ├── report.html │ │ ├── sections │ │ │ ├── behavior.html │ │ │ ├── dropped.html │ │ │ ├── errors.html │ │ │ ├── file.html │ │ │ ├── info.html │ │ │ ├── network.html │ │ │ ├── screenshots.html │ │ │ ├── signatures.html │ │ │ ├── static.html │ │ │ ├── url.html │ │ │ └── volatility.html │ │ ├── submit.html │ │ └── success.html │ ├── mitm.py │ ├── monitor │ │ ├── 097f73e170a3482e0602efc2518ad91cebbc3763 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 12f1663c8f947bc841147adbe685db8cfd659a38 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 14b2b875dbfa50d19f5967c4b150a7a2e9465e39 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 2904ecd8163e96db69fe2ac8f48c5935e194fb08 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 579f57961915e0cf0b4716d993e374169bd08f5e │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 5892c58f567293c86eab8ccb0a491d80b48eab08 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 6fddfdc86ef18dda769a0120caeecbed76703f0e │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 952f69a1d4d04988062819cb81ba3948ab4439cf │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 98b5eef740c2a0756f7c7be5a3dc5e169714227d │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── 9e90535ed89363bd424d6788e4341f468b7155d2 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── a2124fa789dc8eaf021a0e1eea07486964e7bc43 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── a9afb9b28219ac6ed5cf54826adcd3f48909892f │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── bfb0802f5458c52a2b2e292711a39a25a36e6067 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── cf3b0957e39242885f7e5a7d6f49245b3a88a2fd │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── d40171f0ad2d8599d201b927ddb73f16f4ff2482 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── d8c5f2986e5bd4598cf7bf3b30d43b7f7f5b7856 │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── dbf1c3a938c1be68815d1ec5625e2c0e99c3b9bf │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ ├── df40a9acd421568461bbe23191883da56942b8fc │ │ │ ├── inject-x64.exe │ │ │ ├── inject-x86.exe │ │ │ ├── is32bit.exe │ │ │ ├── monitor-x64.dll │ │ │ └── monitor-x86.dll │ │ └── latest │ ├── peutils │ │ └── UserDB.TXT │ ├── src │ │ └── binpackage │ │ │ ├── Makefile │ │ │ └── execsc.c │ ├── strace.stp │ ├── test-internet.vbs │ ├── whitelist │ │ └── domain.txt │ └── yara │ │ ├── binaries │ │ ├── embedded.yar │ │ ├── shellcodes.yar │ │ └── vmdetect.yar │ │ ├── index_binaries.yar │ │ ├── index_memory.yar │ │ ├── memory │ │ ├── .gitignore │ │ └── index_memory.yar │ │ └── urls │ │ └── .gitignore ├── db │ └── cuckoo.db ├── distributed │ ├── alembic.ini │ ├── app.py │ ├── distributed │ │ ├── __init__.py │ │ ├── api.py │ │ ├── app.py │ │ ├── db.py │ │ ├── exception.py │ │ └── views │ │ │ ├── __init__.py │ │ │ └── api.py │ ├── instance.py │ ├── migration │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 151400d38e03_node_status_timestamp_index.py │ │ │ ├── 166078eb1311_change_node_id_to_name.py │ │ │ ├── 2aa59981b59d_node_task_not_unique.py │ │ │ ├── 37c08c9655bb_initial_database.py │ │ │ ├── 3cc1509b7fdc_node_status.py │ │ │ ├── 3d1d8fd2cdbb_timestamps.py │ │ │ ├── 4b86bc0d40aa_node_mode.py │ │ │ ├── 4d0a2590e997_node_task_index.py │ │ │ └── 69ecf07a99b_finished_to_status.py │ ├── requirements.txt │ └── settings.py ├── docs │ ├── AUTHORS │ ├── CHANGELOG │ ├── LICENSE │ ├── README │ ├── book │ │ ├── html │ │ │ ├── .buildinfo │ │ │ ├── _images │ │ │ │ ├── architecture-main.png │ │ │ │ ├── error_template_rendering.png │ │ │ │ ├── fog_host_management.png │ │ │ │ ├── fog_image_management.png │ │ │ │ ├── fog_scheduled_job.png │ │ │ │ ├── unsupported_method.png │ │ │ │ ├── windows_network.png │ │ │ │ ├── windows_security.png │ │ │ │ └── windows_security1.png │ │ │ ├── _sources │ │ │ │ ├── customization │ │ │ │ │ ├── auxiliary.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── machinery.txt │ │ │ │ │ ├── packages.txt │ │ │ │ │ ├── processing.txt │ │ │ │ │ ├── reporting.txt │ │ │ │ │ └── signatures.txt │ │ │ │ ├── development │ │ │ │ │ ├── code_style.txt │ │ │ │ │ ├── development_notes.txt │ │ │ │ │ └── index.txt │ │ │ │ ├── faq │ │ │ │ │ └── index.txt │ │ │ │ ├── finalremarks │ │ │ │ │ └── index.txt │ │ │ │ ├── index.txt │ │ │ │ ├── installation │ │ │ │ │ ├── guest │ │ │ │ │ │ ├── agent.txt │ │ │ │ │ │ ├── cloning.txt │ │ │ │ │ │ ├── creation.txt │ │ │ │ │ │ ├── index.txt │ │ │ │ │ │ ├── network.txt │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── saving.txt │ │ │ │ │ ├── guest_physical │ │ │ │ │ │ ├── creation.txt │ │ │ │ │ │ ├── index.txt │ │ │ │ │ │ ├── network.txt │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── saving.txt │ │ │ │ │ ├── host │ │ │ │ │ │ ├── configuration.txt │ │ │ │ │ │ ├── configuration_android.txt │ │ │ │ │ │ ├── index.txt │ │ │ │ │ │ ├── installation.txt │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ └── upgrade.txt │ │ │ │ ├── introduction │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── sandboxing.txt │ │ │ │ │ └── what.txt │ │ │ │ └── usage │ │ │ │ │ ├── api.txt │ │ │ │ │ ├── clean.txt │ │ │ │ │ ├── dist.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── packages.txt │ │ │ │ │ ├── results.txt │ │ │ │ │ ├── start.txt │ │ │ │ │ ├── submit.txt │ │ │ │ │ ├── utilities.txt │ │ │ │ │ └── web.txt │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── classic.css │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── cuckoo.png │ │ │ │ ├── default.css │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── sidebar.js │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── customization │ │ │ │ ├── auxiliary.html │ │ │ │ ├── index.html │ │ │ │ ├── machinery.html │ │ │ │ ├── packages.html │ │ │ │ ├── processing.html │ │ │ │ ├── reporting.html │ │ │ │ └── signatures.html │ │ │ ├── development │ │ │ │ ├── code_style.html │ │ │ │ ├── development_notes.html │ │ │ │ └── index.html │ │ │ ├── faq │ │ │ │ └── index.html │ │ │ ├── finalremarks │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── installation │ │ │ │ ├── guest │ │ │ │ │ ├── agent.html │ │ │ │ │ ├── cloning.html │ │ │ │ │ ├── creation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── network.html │ │ │ │ │ ├── requirements.html │ │ │ │ │ └── saving.html │ │ │ │ ├── guest_physical │ │ │ │ │ ├── creation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── network.html │ │ │ │ │ ├── requirements.html │ │ │ │ │ └── saving.html │ │ │ │ ├── host │ │ │ │ │ ├── configuration.html │ │ │ │ │ ├── configuration_android.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── installation.html │ │ │ │ │ └── requirements.html │ │ │ │ ├── index.html │ │ │ │ └── upgrade.html │ │ │ ├── introduction │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ ├── sandboxing.html │ │ │ │ └── what.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ └── usage │ │ │ │ ├── api.html │ │ │ │ ├── clean.html │ │ │ │ ├── dist.html │ │ │ │ ├── index.html │ │ │ │ ├── packages.html │ │ │ │ ├── results.html │ │ │ │ ├── start.html │ │ │ │ ├── submit.html │ │ │ │ ├── utilities.html │ │ │ │ └── web.html │ │ ├── pdf │ │ │ └── CuckooSandbox.pdf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── _images │ │ │ │ ├── logo │ │ │ │ │ └── cuckoo.png │ │ │ │ ├── schemas │ │ │ │ │ └── architecture-main.png │ │ │ │ └── screenshots │ │ │ │ │ ├── error_template_rendering.png │ │ │ │ │ ├── fog_host_management.png │ │ │ │ │ ├── fog_image_management.png │ │ │ │ │ ├── fog_scheduled_job.png │ │ │ │ │ ├── shared_folders.png │ │ │ │ │ ├── unsupported_method.png │ │ │ │ │ ├── windows_network.png │ │ │ │ │ ├── windows_registry.png │ │ │ │ │ └── windows_security.png │ │ │ ├── conf.py │ │ │ ├── customization │ │ │ │ ├── auxiliary.rst │ │ │ │ ├── index.rst │ │ │ │ ├── machinery.rst │ │ │ │ ├── packages.rst │ │ │ │ ├── processing.rst │ │ │ │ ├── reporting.rst │ │ │ │ └── signatures.rst │ │ │ ├── development │ │ │ │ ├── code_style.rst │ │ │ │ ├── development_notes.rst │ │ │ │ └── index.rst │ │ │ ├── faq │ │ │ │ └── index.rst │ │ │ ├── finalremarks │ │ │ │ └── index.rst │ │ │ ├── index.rst │ │ │ ├── installation │ │ │ │ ├── guest │ │ │ │ │ ├── agent.rst │ │ │ │ │ ├── cloning.rst │ │ │ │ │ ├── creation.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── network.rst │ │ │ │ │ ├── requirements.rst │ │ │ │ │ └── saving.rst │ │ │ │ ├── guest_physical │ │ │ │ │ ├── creation.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── network.rst │ │ │ │ │ ├── requirements.rst │ │ │ │ │ └── saving.rst │ │ │ │ ├── host │ │ │ │ │ ├── configuration.rst │ │ │ │ │ ├── configuration_android.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── installation.rst │ │ │ │ │ └── requirements.rst │ │ │ │ ├── index.rst │ │ │ │ └── upgrade.rst │ │ │ ├── introduction │ │ │ │ ├── index.rst │ │ │ │ ├── license.rst │ │ │ │ ├── sandboxing.rst │ │ │ │ └── what.rst │ │ │ └── usage │ │ │ │ ├── api.rst │ │ │ │ ├── clean.rst │ │ │ │ ├── dist.rst │ │ │ │ ├── index.rst │ │ │ │ ├── packages.rst │ │ │ │ ├── results.rst │ │ │ │ ├── start.rst │ │ │ │ ├── submit.rst │ │ │ │ ├── utilities.rst │ │ │ │ └── web.rst │ │ └── text │ │ │ ├── customization │ │ │ ├── auxiliary.txt │ │ │ ├── index.txt │ │ │ ├── machinery.txt │ │ │ ├── packages.txt │ │ │ ├── processing.txt │ │ │ ├── reporting.txt │ │ │ └── signatures.txt │ │ │ ├── development │ │ │ ├── code_style.txt │ │ │ ├── development_notes.txt │ │ │ └── index.txt │ │ │ ├── faq │ │ │ └── index.txt │ │ │ ├── finalremarks │ │ │ └── index.txt │ │ │ ├── index.txt │ │ │ ├── installation │ │ │ ├── guest │ │ │ │ ├── agent.txt │ │ │ │ ├── cloning.txt │ │ │ │ ├── creation.txt │ │ │ │ ├── index.txt │ │ │ │ ├── network.txt │ │ │ │ ├── requirements.txt │ │ │ │ └── saving.txt │ │ │ ├── guest_physical │ │ │ │ ├── creation.txt │ │ │ │ ├── index.txt │ │ │ │ ├── network.txt │ │ │ │ ├── requirements.txt │ │ │ │ └── saving.txt │ │ │ ├── host │ │ │ │ ├── configuration.txt │ │ │ │ ├── configuration_android.txt │ │ │ │ ├── index.txt │ │ │ │ ├── installation.txt │ │ │ │ └── requirements.txt │ │ │ ├── index.txt │ │ │ └── upgrade.txt │ │ │ ├── introduction │ │ │ ├── index.txt │ │ │ ├── license.txt │ │ │ ├── sandboxing.txt │ │ │ └── what.txt │ │ │ └── usage │ │ │ ├── api.txt │ │ │ └── clean.txt │ └── epydoc │ │ ├── guest │ │ ├── api-objects.txt │ │ ├── class-tree.html │ │ ├── crarr.png │ │ ├── epydoc.css │ │ ├── epydoc.js │ │ ├── frames.html │ │ ├── help.html │ │ ├── identifier-index.html │ │ ├── index.html │ │ ├── lib-module.html │ │ ├── lib-pysrc.html │ │ ├── lib.api-module.html │ │ ├── lib.api-pysrc.html │ │ ├── lib.api.process-module.html │ │ ├── lib.api.process-pysrc.html │ │ ├── lib.api.process.Process-class.html │ │ ├── lib.api.screenshot-module.html │ │ ├── lib.api.screenshot-pysrc.html │ │ ├── lib.api.screenshot.Screenshot-class.html │ │ ├── lib.common-module.html │ │ ├── lib.common-pysrc.html │ │ ├── lib.common.abstracts-module.html │ │ ├── lib.common.abstracts-pysrc.html │ │ ├── lib.common.abstracts.Auxiliary-class.html │ │ ├── lib.common.abstracts.Package-class.html │ │ ├── lib.common.constants-module.html │ │ ├── lib.common.constants-pysrc.html │ │ ├── lib.common.defines-module.html │ │ ├── lib.common.defines-pysrc.html │ │ ├── lib.common.defines.LUID-class.html │ │ ├── lib.common.defines.LUID_AND_ATTRIBUTES-class.html │ │ ├── lib.common.defines.MEMORY_BASIC_INFORMATION-class.html │ │ ├── lib.common.defines.PROCESS_INFORMATION-class.html │ │ ├── lib.common.defines.PROC_STRUCT-class.html │ │ ├── lib.common.defines.STARTUPINFO-class.html │ │ ├── lib.common.defines.SYSTEMTIME-class.html │ │ ├── lib.common.defines.SYSTEM_INFO-class.html │ │ ├── lib.common.defines.SYSTEM_INFO_UNION-class.html │ │ ├── lib.common.defines.TOKEN_PRIVILEGES-class.html │ │ ├── lib.common.errors-module.html │ │ ├── lib.common.errors-pysrc.html │ │ ├── lib.common.exceptions-module.html │ │ ├── lib.common.exceptions-pysrc.html │ │ ├── lib.common.exceptions.CuckooDisableModule-class.html │ │ ├── lib.common.exceptions.CuckooError-class.html │ │ ├── lib.common.exceptions.CuckooPackageError-class.html │ │ ├── lib.common.hashing-module.html │ │ ├── lib.common.hashing-pysrc.html │ │ ├── lib.common.rand-module.html │ │ ├── lib.common.rand-pysrc.html │ │ ├── lib.common.registry-module.html │ │ ├── lib.common.registry-pysrc.html │ │ ├── lib.common.registry.UNICODE_STRING-class.html │ │ ├── lib.common.results-module.html │ │ ├── lib.common.results-pysrc.html │ │ ├── lib.common.results.NetlogConnection-class.html │ │ ├── lib.common.results.NetlogFile-class.html │ │ ├── lib.common.results.NetlogHandler-class.html │ │ ├── lib.core-module.html │ │ ├── lib.core-pysrc.html │ │ ├── lib.core.config-module.html │ │ ├── lib.core.config-pysrc.html │ │ ├── lib.core.config.Config-class.html │ │ ├── lib.core.packages-module.html │ │ ├── lib.core.packages-pysrc.html │ │ ├── lib.core.pipe-module.html │ │ ├── lib.core.pipe-pysrc.html │ │ ├── lib.core.pipe.PipeDispatcher-class.html │ │ ├── lib.core.pipe.PipeForwarder-class.html │ │ ├── lib.core.pipe.PipeServer-class.html │ │ ├── lib.core.privileges-module.html │ │ ├── lib.core.privileges-pysrc.html │ │ ├── lib.core.startup-module.html │ │ ├── lib.core.startup-pysrc.html │ │ ├── module-tree.html │ │ ├── modules-module.html │ │ ├── modules-pysrc.html │ │ ├── modules.auxiliary-module.html │ │ ├── modules.auxiliary-pysrc.html │ │ ├── modules.auxiliary.disguise-module.html │ │ ├── modules.auxiliary.disguise-pysrc.html │ │ ├── modules.auxiliary.disguise.Disguise-class.html │ │ ├── modules.auxiliary.dumptls-module.html │ │ ├── modules.auxiliary.dumptls-pysrc.html │ │ ├── modules.auxiliary.dumptls.DumpTLSMasterSecrets-class.html │ │ ├── modules.auxiliary.human-module.html │ │ ├── modules.auxiliary.human-pysrc.html │ │ ├── modules.auxiliary.human.Human-class.html │ │ ├── modules.auxiliary.installcert-module.html │ │ ├── modules.auxiliary.installcert-pysrc.html │ │ ├── modules.auxiliary.installcert.InstallCertificate-class.html │ │ ├── modules.auxiliary.procmon-module.html │ │ ├── modules.auxiliary.procmon-pysrc.html │ │ ├── modules.auxiliary.procmon.Procmon-class.html │ │ ├── modules.auxiliary.reboot-module.html │ │ ├── modules.auxiliary.reboot-pysrc.html │ │ ├── modules.auxiliary.reboot.Reboot-class.html │ │ ├── modules.auxiliary.recentfiles-module.html │ │ ├── modules.auxiliary.recentfiles-pysrc.html │ │ ├── modules.auxiliary.recentfiles.RecentFiles-class.html │ │ ├── modules.auxiliary.screenshots-module.html │ │ ├── modules.auxiliary.screenshots-pysrc.html │ │ ├── modules.auxiliary.screenshots.Screenshots-class.html │ │ ├── modules.packages-module.html │ │ ├── modules.packages-pysrc.html │ │ ├── modules.packages.applet-module.html │ │ ├── modules.packages.applet-pysrc.html │ │ ├── modules.packages.applet.Applet-class.html │ │ ├── modules.packages.bin-module.html │ │ ├── modules.packages.bin-pysrc.html │ │ ├── modules.packages.bin.Shellcode-class.html │ │ ├── modules.packages.com-module.html │ │ ├── modules.packages.com-pysrc.html │ │ ├── modules.packages.com.ComDll-class.html │ │ ├── modules.packages.cpl-module.html │ │ ├── modules.packages.cpl-pysrc.html │ │ ├── modules.packages.cpl.CPL-class.html │ │ ├── modules.packages.dll-module.html │ │ ├── modules.packages.dll-pysrc.html │ │ ├── modules.packages.dll.Dll-class.html │ │ ├── modules.packages.doc-module.html │ │ ├── modules.packages.doc-pysrc.html │ │ ├── modules.packages.doc.DOC-class.html │ │ ├── modules.packages.exe-module.html │ │ ├── modules.packages.exe-pysrc.html │ │ ├── modules.packages.exe.Exe-class.html │ │ ├── modules.packages.ff-module.html │ │ ├── modules.packages.ff-pysrc.html │ │ ├── modules.packages.ff.Firefox-class.html │ │ ├── modules.packages.generic-module.html │ │ ├── modules.packages.generic-pysrc.html │ │ ├── modules.packages.generic.Generic-class.html │ │ ├── modules.packages.ie-module.html │ │ ├── modules.packages.ie-pysrc.html │ │ ├── modules.packages.ie.IE-class.html │ │ ├── modules.packages.jar-module.html │ │ ├── modules.packages.jar-pysrc.html │ │ ├── modules.packages.jar.Jar-class.html │ │ ├── modules.packages.js-module.html │ │ ├── modules.packages.js-pysrc.html │ │ ├── modules.packages.js.Javascript-class.html │ │ ├── modules.packages.msi-module.html │ │ ├── modules.packages.msi-pysrc.html │ │ ├── modules.packages.msi.Msi-class.html │ │ ├── modules.packages.pdf-module.html │ │ ├── modules.packages.pdf-pysrc.html │ │ ├── modules.packages.pdf.PDF-class.html │ │ ├── modules.packages.ppt-module.html │ │ ├── modules.packages.ppt-pysrc.html │ │ ├── modules.packages.ppt.PPT-class.html │ │ ├── modules.packages.ps1-module.html │ │ ├── modules.packages.ps1-pysrc.html │ │ ├── modules.packages.ps1.PS1-class.html │ │ ├── modules.packages.pub-module.html │ │ ├── modules.packages.pub-pysrc.html │ │ ├── modules.packages.pub.PUB-class.html │ │ ├── modules.packages.python-module.html │ │ ├── modules.packages.python-pysrc.html │ │ ├── modules.packages.python.Python-class.html │ │ ├── modules.packages.reboot-module.html │ │ ├── modules.packages.reboot-pysrc.html │ │ ├── modules.packages.reboot.Reboot-class.html │ │ ├── modules.packages.vbs-module.html │ │ ├── modules.packages.vbs-pysrc.html │ │ ├── modules.packages.vbs.VBS-class.html │ │ ├── modules.packages.wsf-module.html │ │ ├── modules.packages.wsf-pysrc.html │ │ ├── modules.packages.wsf.WSF-class.html │ │ ├── modules.packages.xls-module.html │ │ ├── modules.packages.xls-pysrc.html │ │ ├── modules.packages.xls.XLS-class.html │ │ ├── modules.packages.zip-module.html │ │ ├── modules.packages.zip-pysrc.html │ │ ├── modules.packages.zip.Zip-class.html │ │ ├── redirect.html │ │ ├── toc-everything.html │ │ ├── toc-lib-module.html │ │ ├── toc-lib.api-module.html │ │ ├── toc-lib.api.process-module.html │ │ ├── toc-lib.api.screenshot-module.html │ │ ├── toc-lib.common-module.html │ │ ├── toc-lib.common.abstracts-module.html │ │ ├── toc-lib.common.constants-module.html │ │ ├── toc-lib.common.defines-module.html │ │ ├── toc-lib.common.errors-module.html │ │ ├── toc-lib.common.exceptions-module.html │ │ ├── toc-lib.common.hashing-module.html │ │ ├── toc-lib.common.rand-module.html │ │ ├── toc-lib.common.registry-module.html │ │ ├── toc-lib.common.results-module.html │ │ ├── toc-lib.core-module.html │ │ ├── toc-lib.core.config-module.html │ │ ├── toc-lib.core.packages-module.html │ │ ├── toc-lib.core.pipe-module.html │ │ ├── toc-lib.core.privileges-module.html │ │ ├── toc-lib.core.startup-module.html │ │ ├── toc-modules-module.html │ │ ├── toc-modules.auxiliary-module.html │ │ ├── toc-modules.auxiliary.disguise-module.html │ │ ├── toc-modules.auxiliary.dumptls-module.html │ │ ├── toc-modules.auxiliary.human-module.html │ │ ├── toc-modules.auxiliary.installcert-module.html │ │ ├── toc-modules.auxiliary.procmon-module.html │ │ ├── toc-modules.auxiliary.reboot-module.html │ │ ├── toc-modules.auxiliary.recentfiles-module.html │ │ ├── toc-modules.auxiliary.screenshots-module.html │ │ ├── toc-modules.packages-module.html │ │ ├── toc-modules.packages.applet-module.html │ │ ├── toc-modules.packages.bin-module.html │ │ ├── toc-modules.packages.com-module.html │ │ ├── toc-modules.packages.cpl-module.html │ │ ├── toc-modules.packages.dll-module.html │ │ ├── toc-modules.packages.doc-module.html │ │ ├── toc-modules.packages.exe-module.html │ │ ├── toc-modules.packages.ff-module.html │ │ ├── toc-modules.packages.generic-module.html │ │ ├── toc-modules.packages.ie-module.html │ │ ├── toc-modules.packages.jar-module.html │ │ ├── toc-modules.packages.js-module.html │ │ ├── toc-modules.packages.msi-module.html │ │ ├── toc-modules.packages.pdf-module.html │ │ ├── toc-modules.packages.ppt-module.html │ │ ├── toc-modules.packages.ps1-module.html │ │ ├── toc-modules.packages.pub-module.html │ │ ├── toc-modules.packages.python-module.html │ │ ├── toc-modules.packages.reboot-module.html │ │ ├── toc-modules.packages.vbs-module.html │ │ ├── toc-modules.packages.wsf-module.html │ │ ├── toc-modules.packages.xls-module.html │ │ ├── toc-modules.packages.zip-module.html │ │ └── toc.html │ │ └── host │ │ ├── api-objects.txt │ │ ├── class-tree.html │ │ ├── crarr.png │ │ ├── epydoc.css │ │ ├── epydoc.js │ │ ├── frames.html │ │ ├── help.html │ │ ├── identifier-index.html │ │ ├── index.html │ │ ├── lib-module.html │ │ ├── lib-pysrc.html │ │ ├── lib.cuckoo-module.html │ │ ├── lib.cuckoo-pysrc.html │ │ ├── lib.cuckoo.common-module.html │ │ ├── lib.cuckoo.common-pysrc.html │ │ ├── lib.cuckoo.common.abstracts-module.html │ │ ├── lib.cuckoo.common.abstracts-pysrc.html │ │ ├── lib.cuckoo.common.abstracts.Auxiliary-class.html │ │ ├── lib.cuckoo.common.abstracts.BehaviorHandler-class.html │ │ ├── lib.cuckoo.common.abstracts.LibVirtMachinery-class.html │ │ ├── lib.cuckoo.common.abstracts.Machinery-class.html │ │ ├── lib.cuckoo.common.abstracts.Processing-class.html │ │ ├── lib.cuckoo.common.abstracts.ProtocolHandler-class.html │ │ ├── lib.cuckoo.common.abstracts.Report-class.html │ │ ├── lib.cuckoo.common.abstracts.Signature-class.html │ │ ├── lib.cuckoo.common.colors-module.html │ │ ├── lib.cuckoo.common.colors-pysrc.html │ │ ├── lib.cuckoo.common.compare-module.html │ │ ├── lib.cuckoo.common.compare-pysrc.html │ │ ├── lib.cuckoo.common.config-module.html │ │ ├── lib.cuckoo.common.config-pysrc.html │ │ ├── lib.cuckoo.common.config.Config-class.html │ │ ├── lib.cuckoo.common.constants-module.html │ │ ├── lib.cuckoo.common.constants-pysrc.html │ │ ├── lib.cuckoo.common.defines-module.html │ │ ├── lib.cuckoo.common.defines-pysrc.html │ │ ├── lib.cuckoo.common.dns-module.html │ │ ├── lib.cuckoo.common.dns-pysrc.html │ │ ├── lib.cuckoo.common.dns.Resultholder-class.html │ │ ├── lib.cuckoo.common.exceptions-module.html │ │ ├── lib.cuckoo.common.exceptions-pysrc.html │ │ ├── lib.cuckoo.common.exceptions.CuckooAnalysisError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooCriticalError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooDatabaseError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooDependencyError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooDisableModule-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooGuestError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooMachineError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooOperationalError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooProcessingError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooReportError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooResultError-class.html │ │ ├── lib.cuckoo.common.exceptions.CuckooStartupError-class.html │ │ ├── lib.cuckoo.common.irc-module.html │ │ ├── lib.cuckoo.common.irc-pysrc.html │ │ ├── lib.cuckoo.common.irc.ircMessage-class.html │ │ ├── lib.cuckoo.common.logo-module.html │ │ ├── lib.cuckoo.common.logo-pysrc.html │ │ ├── lib.cuckoo.common.netlog-module.html │ │ ├── lib.cuckoo.common.netlog-pysrc.html │ │ ├── lib.cuckoo.common.netlog.BsonParser-class.html │ │ ├── lib.cuckoo.common.objects-module.html │ │ ├── lib.cuckoo.common.objects-pysrc.html │ │ ├── lib.cuckoo.common.objects.Dictionary-class.html │ │ ├── lib.cuckoo.common.objects.File-class.html │ │ ├── lib.cuckoo.common.objects.URL-class.html │ │ ├── lib.cuckoo.common.utils-module.html │ │ ├── lib.cuckoo.common.utils-pysrc.html │ │ ├── lib.cuckoo.common.utils.Singleton-class.html │ │ ├── lib.cuckoo.common.utils.SuperLock-class.html │ │ ├── lib.cuckoo.common.utils.ThreadSingleton-class.html │ │ ├── lib.cuckoo.common.utils.TimeoutServer-class.html │ │ ├── lib.cuckoo.common.utils.TimeoutTransport-class.html │ │ ├── lib.cuckoo.common.virustotal-module.html │ │ ├── lib.cuckoo.common.virustotal-pysrc.html │ │ ├── lib.cuckoo.common.virustotal.VirusTotalAPI-class.html │ │ ├── lib.cuckoo.common.virustotal.VirusTotalResourceNotScanned-class.html │ │ ├── lib.cuckoo.common.whitelist-module.html │ │ ├── lib.cuckoo.common.whitelist-pysrc.html │ │ ├── lib.cuckoo.core-module.html │ │ ├── lib.cuckoo.core-pysrc.html │ │ ├── lib.cuckoo.core.database-module.html │ │ ├── lib.cuckoo.core.database-pysrc.html │ │ ├── lib.cuckoo.core.database.AlembicVersion-class.html │ │ ├── lib.cuckoo.core.database.Database-class.html │ │ ├── lib.cuckoo.core.database.Error-class.html │ │ ├── lib.cuckoo.core.database.Guest-class.html │ │ ├── lib.cuckoo.core.database.Machine-class.html │ │ ├── lib.cuckoo.core.database.Sample-class.html │ │ ├── lib.cuckoo.core.database.Tag-class.html │ │ ├── lib.cuckoo.core.database.Task-class.html │ │ ├── lib.cuckoo.core.guest-module.html │ │ ├── lib.cuckoo.core.guest-pysrc.html │ │ ├── lib.cuckoo.core.guest.GuestManager-class.html │ │ ├── lib.cuckoo.core.guest.OldGuestManager-class.html │ │ ├── lib.cuckoo.core.log-module.html │ │ ├── lib.cuckoo.core.log-pysrc.html │ │ ├── lib.cuckoo.core.log.ConsoleHandler-class.html │ │ ├── lib.cuckoo.core.log.DatabaseHandler-class.html │ │ ├── lib.cuckoo.core.log.TaskHandler-class.html │ │ ├── lib.cuckoo.core.plugins-module.html │ │ ├── lib.cuckoo.core.plugins-pysrc.html │ │ ├── lib.cuckoo.core.plugins.RunAuxiliary-class.html │ │ ├── lib.cuckoo.core.plugins.RunProcessing-class.html │ │ ├── lib.cuckoo.core.plugins.RunReporting-class.html │ │ ├── lib.cuckoo.core.plugins.RunSignatures-class.html │ │ ├── lib.cuckoo.core.resultserver-module.html │ │ ├── lib.cuckoo.core.resultserver-pysrc.html │ │ ├── lib.cuckoo.core.resultserver.Disconnect-class.html │ │ ├── lib.cuckoo.core.resultserver.FileUpload-class.html │ │ ├── lib.cuckoo.core.resultserver.LogHandler-class.html │ │ ├── lib.cuckoo.core.resultserver.ResultHandler-class.html │ │ ├── lib.cuckoo.core.resultserver.ResultServer-class.html │ │ ├── lib.cuckoo.core.rooter-module.html │ │ ├── lib.cuckoo.core.rooter-pysrc.html │ │ ├── lib.cuckoo.core.scheduler-module.html │ │ ├── lib.cuckoo.core.scheduler-pysrc.html │ │ ├── lib.cuckoo.core.scheduler.AnalysisManager-class.html │ │ ├── lib.cuckoo.core.scheduler.Scheduler-class.html │ │ ├── lib.cuckoo.core.startup-module.html │ │ ├── lib.cuckoo.core.startup-pysrc.html │ │ ├── lib.cuckoo.misc-module.html │ │ ├── lib.cuckoo.misc-pysrc.html │ │ ├── module-tree.html │ │ ├── modules-module.html │ │ ├── modules-pysrc.html │ │ ├── modules.auxiliary-module.html │ │ ├── modules.auxiliary-pysrc.html │ │ ├── modules.auxiliary.mitm-module.html │ │ ├── modules.auxiliary.mitm-pysrc.html │ │ ├── modules.auxiliary.mitm.MITM-class.html │ │ ├── modules.auxiliary.reboot-module.html │ │ ├── modules.auxiliary.reboot-pysrc.html │ │ ├── modules.auxiliary.reboot.Reboot-class.html │ │ ├── modules.auxiliary.services-module.html │ │ ├── modules.auxiliary.services-pysrc.html │ │ ├── modules.auxiliary.services.Services-class.html │ │ ├── modules.auxiliary.sniffer-module.html │ │ ├── modules.auxiliary.sniffer-pysrc.html │ │ ├── modules.auxiliary.sniffer.Sniffer-class.html │ │ ├── modules.machinery-module.html │ │ ├── modules.machinery-pysrc.html │ │ ├── modules.machinery.avd-module.html │ │ ├── modules.machinery.avd-pysrc.html │ │ ├── modules.machinery.avd.Avd-class.html │ │ ├── modules.machinery.avd.OSCommand-class.html │ │ ├── modules.machinery.esx-module.html │ │ ├── modules.machinery.esx-pysrc.html │ │ ├── modules.machinery.esx.ESX-class.html │ │ ├── modules.machinery.kvm-module.html │ │ ├── modules.machinery.kvm-pysrc.html │ │ ├── modules.machinery.kvm.KVM-class.html │ │ ├── modules.machinery.physical-module.html │ │ ├── modules.machinery.physical-pysrc.html │ │ ├── modules.machinery.physical.Physical-class.html │ │ ├── modules.machinery.qemu-module.html │ │ ├── modules.machinery.qemu-pysrc.html │ │ ├── modules.machinery.qemu.QEMU-class.html │ │ ├── modules.machinery.virtualbox-module.html │ │ ├── modules.machinery.virtualbox-pysrc.html │ │ ├── modules.machinery.virtualbox.VirtualBox-class.html │ │ ├── modules.machinery.vmware-module.html │ │ ├── modules.machinery.vmware-pysrc.html │ │ ├── modules.machinery.vmware.VMware-class.html │ │ ├── modules.machinery.vsphere-module.html │ │ ├── modules.machinery.vsphere-pysrc.html │ │ ├── modules.machinery.vsphere.vSphere-class.html │ │ ├── modules.machinery.xenserver-module.html │ │ ├── modules.machinery.xenserver-pysrc.html │ │ ├── modules.machinery.xenserver.XenServerMachinery-class.html │ │ ├── modules.processing-module.html │ │ ├── modules.processing-pysrc.html │ │ ├── modules.processing.analysisinfo-module.html │ │ ├── modules.processing.analysisinfo-pysrc.html │ │ ├── modules.processing.analysisinfo.AnalysisInfo-class.html │ │ ├── modules.processing.analysisinfo.MetaInfo-class.html │ │ ├── modules.processing.apkinfo-module.html │ │ ├── modules.processing.apkinfo-pysrc.html │ │ ├── modules.processing.apkinfo.ApkInfo-class.html │ │ ├── modules.processing.baseline-module.html │ │ ├── modules.processing.baseline-pysrc.html │ │ ├── modules.processing.baseline.Baseline-class.html │ │ ├── modules.processing.behavior-module.html │ │ ├── modules.processing.behavior-pysrc.html │ │ ├── modules.processing.behavior.Anomaly-class.html │ │ ├── modules.processing.behavior.ApiStats-class.html │ │ ├── modules.processing.behavior.BehaviorAnalysis-class.html │ │ ├── modules.processing.behavior.GenericBehavior-class.html │ │ ├── modules.processing.behavior.ProcessTree-class.html │ │ ├── modules.processing.behavior.RebootInformation-class.html │ │ ├── modules.processing.behavior.Summary-class.html │ │ ├── modules.processing.buffer-module.html │ │ ├── modules.processing.buffer-pysrc.html │ │ ├── modules.processing.buffer.DroppedBuffer-class.html │ │ ├── modules.processing.debug-module.html │ │ ├── modules.processing.debug-pysrc.html │ │ ├── modules.processing.debug.Debug-class.html │ │ ├── modules.processing.debug.Logfile-class.html │ │ ├── modules.processing.droidmon-module.html │ │ ├── modules.processing.droidmon-pysrc.html │ │ ├── modules.processing.droidmon.Droidmon-class.html │ │ ├── modules.processing.dropped-module.html │ │ ├── modules.processing.dropped-pysrc.html │ │ ├── modules.processing.dropped.Dropped-class.html │ │ ├── modules.processing.dumptls-module.html │ │ ├── modules.processing.dumptls-pysrc.html │ │ ├── modules.processing.dumptls.TLSMasterSecrets-class.html │ │ ├── modules.processing.googleplay-module.html │ │ ├── modules.processing.googleplay-pysrc.html │ │ ├── modules.processing.googleplay.GooglePlay-class.html │ │ ├── modules.processing.irma-module.html │ │ ├── modules.processing.irma-pysrc.html │ │ ├── modules.processing.irma.Irma-class.html │ │ ├── modules.processing.memory-module.html │ │ ├── modules.processing.memory-pysrc.html │ │ ├── modules.processing.memory.Memory-class.html │ │ ├── modules.processing.memory.VolatilityAPI-class.html │ │ ├── modules.processing.memory.VolatilityManager-class.html │ │ ├── modules.processing.misp-module.html │ │ ├── modules.processing.misp-pysrc.html │ │ ├── modules.processing.misp.MISP-class.html │ │ ├── modules.processing.network-module.html │ │ ├── modules.processing.network-pysrc.html │ │ ├── modules.processing.network.NetworkAnalysis-class.html │ │ ├── modules.processing.network.Pcap-class.html │ │ ├── modules.processing.network.Pcap2-class.html │ │ ├── modules.processing.network.SortCap-class.html │ │ ├── modules.processing.platform-module.html │ │ ├── modules.processing.platform-pysrc.html │ │ ├── modules.processing.platform.linux-module.html │ │ ├── modules.processing.platform.linux-pysrc.html │ │ ├── modules.processing.platform.linux.FilteredProcessLog-class.html │ │ ├── modules.processing.platform.linux.LinuxSystemTap-class.html │ │ ├── modules.processing.platform.linux.StapParser-class.html │ │ ├── modules.processing.platform.windows-module.html │ │ ├── modules.processing.platform.windows-pysrc.html │ │ ├── modules.processing.platform.windows.BehaviorReconstructor-class.html │ │ ├── modules.processing.platform.windows.MonitorProcessLog-class.html │ │ ├── modules.processing.platform.windows.RebootReconstructor-class.html │ │ ├── modules.processing.platform.windows.WindowsMonitor-class.html │ │ ├── modules.processing.procmemory-module.html │ │ ├── modules.processing.procmemory-pysrc.html │ │ ├── modules.processing.procmemory.ProcessMemory-class.html │ │ ├── modules.processing.procmon-module.html │ │ ├── modules.processing.procmon-pysrc.html │ │ ├── modules.processing.procmon.Procmon-class.html │ │ ├── modules.processing.procmon.ProcmonLog-class.html │ │ ├── modules.processing.screenshots-module.html │ │ ├── modules.processing.screenshots-pysrc.html │ │ ├── modules.processing.screenshots.Screenshots-class.html │ │ ├── modules.processing.snort-module.html │ │ ├── modules.processing.snort-pysrc.html │ │ ├── modules.processing.snort.Snort-class.html │ │ ├── modules.processing.static-module.html │ │ ├── modules.processing.static-pysrc.html │ │ ├── modules.processing.static.OfficeDocument-class.html │ │ ├── modules.processing.static.PdfDocument-class.html │ │ ├── modules.processing.static.PortableExecutable-class.html │ │ ├── modules.processing.static.Static-class.html │ │ ├── modules.processing.static.WindowsScriptFile-class.html │ │ ├── modules.processing.strings-module.html │ │ ├── modules.processing.strings-pysrc.html │ │ ├── modules.processing.strings.Strings-class.html │ │ ├── modules.processing.suricata-module.html │ │ ├── modules.processing.suricata-pysrc.html │ │ ├── modules.processing.suricata.Suricata-class.html │ │ ├── modules.processing.targetinfo-module.html │ │ ├── modules.processing.targetinfo-pysrc.html │ │ ├── modules.processing.targetinfo.TargetInfo-class.html │ │ ├── modules.processing.virustotal-module.html │ │ ├── modules.processing.virustotal-pysrc.html │ │ ├── modules.processing.virustotal.VirusTotal-class.html │ │ ├── modules.reporting-module.html │ │ ├── modules.reporting-pysrc.html │ │ ├── modules.reporting.elasticsearch-module.html │ │ ├── modules.reporting.elasticsearch-pysrc.html │ │ ├── modules.reporting.elasticsearch.ElasticSearch-class.html │ │ ├── modules.reporting.jsondump-module.html │ │ ├── modules.reporting.jsondump-pysrc.html │ │ ├── modules.reporting.jsondump.JsonDump-class.html │ │ ├── modules.reporting.mattermost-module.html │ │ ├── modules.reporting.mattermost-pysrc.html │ │ ├── modules.reporting.mattermost.Mattermost-class.html │ │ ├── modules.reporting.moloch-module.html │ │ ├── modules.reporting.moloch-pysrc.html │ │ ├── modules.reporting.moloch.Moloch-class.html │ │ ├── modules.reporting.mongodb-module.html │ │ ├── modules.reporting.mongodb-pysrc.html │ │ ├── modules.reporting.mongodb.MongoDB-class.html │ │ ├── modules.reporting.notification-module.html │ │ ├── modules.reporting.notification-pysrc.html │ │ ├── modules.reporting.notification.Notification-class.html │ │ ├── modules.reporting.reporthtml-module.html │ │ ├── modules.reporting.reporthtml-pysrc.html │ │ ├── modules.reporting.reporthtml.ReportHTML-class.html │ │ ├── modules.signatures-module.html │ │ ├── modules.signatures-pysrc.html │ │ ├── modules.signatures.creates_exe-module.html │ │ ├── modules.signatures.creates_exe-pysrc.html │ │ ├── modules.signatures.creates_exe.CreatesExe-class.html │ │ ├── modules.signatures.generic_metrics-module.html │ │ ├── modules.signatures.generic_metrics-pysrc.html │ │ ├── modules.signatures.generic_metrics.SystemMetrics-class.html │ │ ├── redirect.html │ │ ├── toc-everything.html │ │ ├── toc-lib-module.html │ │ ├── toc-lib.cuckoo-module.html │ │ ├── toc-lib.cuckoo.common-module.html │ │ ├── toc-lib.cuckoo.common.abstracts-module.html │ │ ├── toc-lib.cuckoo.common.colors-module.html │ │ ├── toc-lib.cuckoo.common.compare-module.html │ │ ├── toc-lib.cuckoo.common.config-module.html │ │ ├── toc-lib.cuckoo.common.constants-module.html │ │ ├── toc-lib.cuckoo.common.defines-module.html │ │ ├── toc-lib.cuckoo.common.dns-module.html │ │ ├── toc-lib.cuckoo.common.exceptions-module.html │ │ ├── toc-lib.cuckoo.common.irc-module.html │ │ ├── toc-lib.cuckoo.common.logo-module.html │ │ ├── toc-lib.cuckoo.common.netlog-module.html │ │ ├── toc-lib.cuckoo.common.objects-module.html │ │ ├── toc-lib.cuckoo.common.utils-module.html │ │ ├── toc-lib.cuckoo.common.virustotal-module.html │ │ ├── toc-lib.cuckoo.common.whitelist-module.html │ │ ├── toc-lib.cuckoo.core-module.html │ │ ├── toc-lib.cuckoo.core.database-module.html │ │ ├── toc-lib.cuckoo.core.guest-module.html │ │ ├── toc-lib.cuckoo.core.log-module.html │ │ ├── toc-lib.cuckoo.core.plugins-module.html │ │ ├── toc-lib.cuckoo.core.resultserver-module.html │ │ ├── toc-lib.cuckoo.core.rooter-module.html │ │ ├── toc-lib.cuckoo.core.scheduler-module.html │ │ ├── toc-lib.cuckoo.core.startup-module.html │ │ ├── toc-lib.cuckoo.misc-module.html │ │ ├── toc-modules-module.html │ │ ├── toc-modules.auxiliary-module.html │ │ ├── toc-modules.auxiliary.mitm-module.html │ │ ├── toc-modules.auxiliary.reboot-module.html │ │ ├── toc-modules.auxiliary.services-module.html │ │ ├── toc-modules.auxiliary.sniffer-module.html │ │ ├── toc-modules.machinery-module.html │ │ ├── toc-modules.machinery.avd-module.html │ │ ├── toc-modules.machinery.esx-module.html │ │ ├── toc-modules.machinery.kvm-module.html │ │ ├── toc-modules.machinery.physical-module.html │ │ ├── toc-modules.machinery.qemu-module.html │ │ ├── toc-modules.machinery.virtualbox-module.html │ │ ├── toc-modules.machinery.vmware-module.html │ │ ├── toc-modules.machinery.vsphere-module.html │ │ ├── toc-modules.machinery.xenserver-module.html │ │ ├── toc-modules.processing-module.html │ │ ├── toc-modules.processing.analysisinfo-module.html │ │ ├── toc-modules.processing.apkinfo-module.html │ │ ├── toc-modules.processing.baseline-module.html │ │ ├── toc-modules.processing.behavior-module.html │ │ ├── toc-modules.processing.buffer-module.html │ │ ├── toc-modules.processing.debug-module.html │ │ ├── toc-modules.processing.droidmon-module.html │ │ ├── toc-modules.processing.dropped-module.html │ │ ├── toc-modules.processing.dumptls-module.html │ │ ├── toc-modules.processing.googleplay-module.html │ │ ├── toc-modules.processing.irma-module.html │ │ ├── toc-modules.processing.memory-module.html │ │ ├── toc-modules.processing.misp-module.html │ │ ├── toc-modules.processing.network-module.html │ │ ├── toc-modules.processing.platform-module.html │ │ ├── toc-modules.processing.platform.linux-module.html │ │ ├── toc-modules.processing.platform.windows-module.html │ │ ├── toc-modules.processing.procmemory-module.html │ │ ├── toc-modules.processing.procmon-module.html │ │ ├── toc-modules.processing.screenshots-module.html │ │ ├── toc-modules.processing.snort-module.html │ │ ├── toc-modules.processing.static-module.html │ │ ├── toc-modules.processing.strings-module.html │ │ ├── toc-modules.processing.suricata-module.html │ │ ├── toc-modules.processing.targetinfo-module.html │ │ ├── toc-modules.processing.virustotal-module.html │ │ ├── toc-modules.reporting-module.html │ │ ├── toc-modules.reporting.elasticsearch-module.html │ │ ├── toc-modules.reporting.jsondump-module.html │ │ ├── toc-modules.reporting.mattermost-module.html │ │ ├── toc-modules.reporting.moloch-module.html │ │ ├── toc-modules.reporting.mongodb-module.html │ │ ├── toc-modules.reporting.notification-module.html │ │ ├── toc-modules.reporting.reporthtml-module.html │ │ ├── toc-modules.signatures-module.html │ │ ├── toc-modules.signatures.creates_exe-module.html │ │ ├── toc-modules.signatures.generic_metrics-module.html │ │ └── toc.html ├── modules │ ├── __init__.py │ ├── auxiliary │ │ ├── __init__.py │ │ ├── mitm.py │ │ ├── reboot.py │ │ ├── services.py │ │ └── sniffer.py │ ├── machinery │ │ ├── __init__.py │ │ ├── avd.py │ │ ├── esx.py │ │ ├── kvm.py │ │ ├── physical.py │ │ ├── qemu.py │ │ ├── virtualbox.py │ │ ├── vmware.py │ │ ├── vsphere.py │ │ └── xenserver.py │ ├── processing │ │ ├── __init__.py │ │ ├── analysisinfo.py │ │ ├── apkinfo.py │ │ ├── baseline.py │ │ ├── behavior.py │ │ ├── buffer.py │ │ ├── debug.py │ │ ├── droidmon.py │ │ ├── dropped.py │ │ ├── dumptls.py │ │ ├── googleplay.py │ │ ├── irma.py │ │ ├── memory.py │ │ ├── misp.py │ │ ├── network.py │ │ ├── platform │ │ │ ├── __init__.py │ │ │ ├── linux.py │ │ │ └── windows.py │ │ ├── procmemory.py │ │ ├── procmon.py │ │ ├── screenshots.py │ │ ├── snort.py │ │ ├── static.py │ │ ├── strings.py │ │ ├── suricata.py │ │ ├── targetinfo.py │ │ └── virustotal.py │ ├── reporting │ │ ├── __init__.py │ │ ├── elasticsearch.py │ │ ├── jsondump.py │ │ ├── mattermost.py │ │ ├── moloch.py │ │ ├── mongodb.py │ │ ├── notification.py │ │ └── reporthtml.py │ └── signatures │ │ ├── __init__.py │ │ ├── creates_exe.py │ │ └── generic_metrics.py ├── pymongo-2.3.tar.gz ├── pymongo-2.3 │ ├── LICENSE │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README.rst │ ├── bson │ │ ├── __init__.py │ │ ├── _cbsonmodule.c │ │ ├── _cbsonmodule.h │ │ ├── binary.py │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── code.py │ │ ├── dbref.py │ │ ├── encoding_helpers.c │ │ ├── encoding_helpers.h │ │ ├── errors.py │ │ ├── json_util.py │ │ ├── max_key.py │ │ ├── min_key.py │ │ ├── objectid.py │ │ ├── py3compat.py │ │ ├── son.py │ │ ├── time64.c │ │ ├── time64.h │ │ ├── time64_config.h │ │ ├── time64_limits.h │ │ ├── timestamp.py │ │ └── tz_util.py │ ├── distribute_setup.py │ ├── doc │ │ ├── __init__.py │ │ ├── api │ │ │ ├── bson │ │ │ │ ├── binary.rst │ │ │ │ ├── code.rst │ │ │ │ ├── dbref.rst │ │ │ │ ├── errors.rst │ │ │ │ ├── index.rst │ │ │ │ ├── json_util.rst │ │ │ │ ├── max_key.rst │ │ │ │ ├── min_key.rst │ │ │ │ ├── objectid.rst │ │ │ │ ├── son.rst │ │ │ │ ├── timestamp.rst │ │ │ │ └── tz_util.rst │ │ │ ├── gridfs │ │ │ │ ├── errors.rst │ │ │ │ ├── grid_file.rst │ │ │ │ └── index.rst │ │ │ ├── index.rst │ │ │ └── pymongo │ │ │ │ ├── collection.rst │ │ │ │ ├── connection.rst │ │ │ │ ├── cursor.rst │ │ │ │ ├── cursor_manager.rst │ │ │ │ ├── database.rst │ │ │ │ ├── errors.rst │ │ │ │ ├── index.rst │ │ │ │ ├── master_slave_connection.rst │ │ │ │ ├── message.rst │ │ │ │ ├── pool.rst │ │ │ │ ├── replica_set_connection.rst │ │ │ │ ├── son_manipulator.rst │ │ │ │ └── uri_parser.rst │ │ ├── changelog.rst │ │ ├── conf.py │ │ ├── contributors.rst │ │ ├── examples │ │ │ ├── aggregation.rst │ │ │ ├── custom_type.rst │ │ │ ├── geo.rst │ │ │ ├── gevent.rst │ │ │ ├── gridfs.rst │ │ │ ├── high_availability.rst │ │ │ ├── index.rst │ │ │ └── requests.rst │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── mongo_extensions.py │ │ ├── python3.rst │ │ ├── tools.rst │ │ └── tutorial.rst │ ├── gridfs │ │ ├── __init__.py │ │ ├── errors.py │ │ └── grid_file.py │ ├── pymongo │ │ ├── __init__.py │ │ ├── _cmessagemodule.c │ │ ├── collection.py │ │ ├── common.py │ │ ├── connection.py │ │ ├── cursor.py │ │ ├── cursor_manager.py │ │ ├── database.py │ │ ├── errors.py │ │ ├── helpers.py │ │ ├── master_slave_connection.py │ │ ├── message.py │ │ ├── pool.py │ │ ├── read_preferences.py │ │ ├── replica_set_connection.py │ │ ├── son_manipulator.py │ │ └── uri_parser.py │ ├── setup.cfg │ ├── setup.py │ ├── test │ │ ├── __init__.py │ │ ├── high_availability │ │ │ ├── ha_tools.py │ │ │ └── test_ha.py │ │ ├── mod_wsgi_test │ │ │ └── test_client.py │ │ ├── qcheck.py │ │ ├── test_binary.py │ │ ├── test_bson.py │ │ ├── test_code.py │ │ ├── test_collection.py │ │ ├── test_common.py │ │ ├── test_connection.py │ │ ├── test_cursor.py │ │ ├── test_database.py │ │ ├── test_dbref.py │ │ ├── test_errors.py │ │ ├── test_grid_file.py │ │ ├── test_gridfs.py │ │ ├── test_json_util.py │ │ ├── test_master_slave_connection.py │ │ ├── test_objectid.py │ │ ├── test_paired.py │ │ ├── test_pooling.py │ │ ├── test_pooling_base.py │ │ ├── test_pooling_gevent.py │ │ ├── test_pymongo.py │ │ ├── test_read_preferences.py │ │ ├── test_replica_set_connection.py │ │ ├── test_son.py │ │ ├── test_son_manipulator.py │ │ ├── test_ssl.py │ │ ├── test_threads.py │ │ ├── test_threads_replica_set_connection.py │ │ ├── test_timestamp.py │ │ ├── test_uri_parser.py │ │ ├── utils.py │ │ └── version.py │ └── tools │ │ ├── README.rst │ │ ├── benchmark.py │ │ ├── clean.py │ │ └── fail_if_no_c.py ├── requirements.txt ├── utils │ ├── api.py │ ├── community.py │ ├── darwin │ │ ├── bootstrap_guest.sh │ │ └── bootstrap_host.sh │ ├── db_migration │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── from_0_6_to_1_1.py │ │ │ ├── from_1_1_to_1_2-added_states.py │ │ │ ├── from_1_1_to_1_2-extend_file_type.py │ │ │ ├── from_1_2_to_1_3-add_task_owner.py │ │ │ ├── from_1_2_to_2_0-guest_status.py │ │ │ ├── from_1_2_to_2_0-machine_options.py │ │ │ ├── from_1_2_to_2_0-processing-column.py │ │ │ └── from_1_2_to_2_0-taken-route.py │ ├── dnsserve.py │ ├── machine.py │ ├── process.py │ ├── process2.py │ ├── rawdb.py │ ├── rooter.py │ ├── service.sh │ ├── setup.sh │ ├── smtp_sinkhole.py │ ├── start-distributed.sh │ ├── stats.py │ ├── stop-distributed.sh │ ├── submit.py │ ├── suricata.sh │ └── vpncheck.py └── web │ ├── .gitignore │ ├── analysis │ ├── __init__.py │ ├── forms.py │ ├── templatetags │ │ ├── __init__.py │ │ └── analysis_tags.py │ ├── urls.py │ └── views.py │ ├── compare │ ├── __init__.py │ ├── urls.py │ └── views.py │ ├── dashboard │ ├── __init__.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── lightbox.css │ │ └── style.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── graphic │ │ ├── background.png │ │ ├── cuckoo.png │ │ └── cuckoo_inverse.png │ ├── img │ │ ├── close.png │ │ ├── loading.gif │ │ ├── next.png │ │ └── prev.png │ └── js │ │ ├── app.js │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap.min.js │ │ ├── hexdump.js │ │ ├── jquery.js │ │ └── lightbox.js │ ├── submission │ ├── __init__.py │ ├── urls.py │ └── views.py │ ├── templates │ ├── analysis │ │ ├── admin │ │ │ └── index.html │ │ ├── behavior │ │ │ ├── _api_call.html │ │ │ ├── _chunk.html │ │ │ ├── _processes.html │ │ │ ├── _search.html │ │ │ ├── _search_results.html │ │ │ ├── _tree.html │ │ │ ├── _tree_process.html │ │ │ └── index.html │ │ ├── buffers │ │ │ └── index.html │ │ ├── dropped │ │ │ └── index.html │ │ ├── export.html │ │ ├── import.html │ │ ├── index.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 │ │ │ └── index.html │ │ ├── misp │ │ │ └── index.html │ │ ├── network │ │ │ ├── _dns.html │ │ │ ├── _hosts.html │ │ │ ├── _http.html │ │ │ ├── _icmp.html │ │ │ ├── _irc.html │ │ │ ├── _snort.html │ │ │ ├── _suricata.html │ │ │ ├── _tcp.html │ │ │ ├── _udp.html │ │ │ └── index.html │ │ ├── overview │ │ │ ├── _file.html │ │ │ ├── _info.html │ │ │ ├── _screenshots.html │ │ │ ├── _signatures.html │ │ │ ├── _summary.html │ │ │ ├── _url.html │ │ │ └── index.html │ │ ├── pending.html │ │ ├── procmemory │ │ │ └── index.html │ │ ├── report.html │ │ ├── search.html │ │ ├── search_results.html │ │ └── static │ │ │ ├── _antivirus.html │ │ │ ├── _irma.html │ │ │ ├── _office.html │ │ │ ├── _pdf.html │ │ │ ├── _pe32.html │ │ │ ├── _strings.html │ │ │ └── index.html │ ├── base.html │ ├── compare │ │ ├── _info.html │ │ ├── _summary_table.html │ │ ├── both.html │ │ ├── hash.html │ │ └── left.html │ ├── dashboard │ │ └── index.html │ ├── error.html │ ├── footer.html │ ├── header.html │ ├── standalone_error.html │ ├── submission │ │ ├── complete.html │ │ ├── index.html │ │ ├── reboot.html │ │ └── status.html │ └── success.html │ └── web │ ├── __init__.py │ ├── headers.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── data.csv └── linuxdata.csv /.gitignore: -------------------------------------------------------------------------------- 1 | MalwareSamples/ 2 | -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/.gitignore -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/.travis.yml -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/AUTHORS -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/CONTRIBUTORS -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/COPYING -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/Makefile.am -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/README.md -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/args.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/args.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf --force --install 3 | -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/build.sh -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/configure.ac -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/capi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/capi.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/commandline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/commandline.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/conf.py -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/gettingstarted.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/index.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/make.bat -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/cuckoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/cuckoo.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/elf.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/hash.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/magic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/magic.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/math.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/modules/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/modules/pe.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/writingmodules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/writingmodules.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/writingrules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/writingrules.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/docs/yarapython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/docs/yarapython.rst -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/TextMate-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/TextMate-bundle.zip -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/UltraEdit-wordfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/UltraEdit-wordfile.txt -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/logo.ai -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/logo.svg -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/old-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/old-logo.png -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/extra/old-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/extra/old-logo.psd -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/Makefile.am -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/ahocorasick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/ahocorasick.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/arena.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/atoms.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/compiler.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/exception.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/exec.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/exefiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/exefiles.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/filemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/filemap.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/grammar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/grammar.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/grammar.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/grammar.y -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hash.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hex_grammar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hex_grammar.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hex_grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hex_grammar.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hex_grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hex_grammar.y -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hex_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hex_lexer.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/hex_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/hex_lexer.l -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/arena.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/atoms.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/elf.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/error.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/exec.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/hash.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/lexer.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/mem.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/pe.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/proc.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/re.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/rules.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/scan.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/types.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/include/yara/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/include/yara/utils.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/lexer.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/lexer.l -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/libyara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/libyara.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/mem.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/cuckoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/cuckoo.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/demo.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/elf.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/hash.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/magic.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/math.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/module_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/module_list -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/pe.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/pe_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/pe_utils.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/modules/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/modules/tests.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/object.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/parser.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/proc.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re_grammar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re_grammar.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re_grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re_grammar.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re_grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re_grammar.y -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re_lexer.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/re_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/re_lexer.l -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/rules.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/scan.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/sizedstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/sizedstr.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/stino.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/stino.settings -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/stream.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/strutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/strutils.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/threading.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/yara.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/yara.pc -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/libyara/yara.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/libyara/yara.pc.in -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/sample.file: -------------------------------------------------------------------------------- 1 | abbbb 2 | -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/sample.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/sample.rules -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/blob.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/data/tiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/data/tiny -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/data/tiny-idata-51ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/data/tiny-idata-51ff -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/data/tiny-idata-5200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/data/tiny-idata-5200 -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/data/tiny.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/data/tiny.notes -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/test-alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/test-alignment.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/test-pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/test-pe.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/test-rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/test-rules.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/util.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/tests/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/tests/util.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/threading.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/threading.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/config.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/jansson.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/openssl/bn.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/openssl/dh.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/openssl/ec.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/openssl/ts.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/include/openssl/ui.h -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/vs2010/yara.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/vs2010/yara.sln -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/vs2010/yara/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/vs2010/yara/getopt.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/windows/vs2015/yara.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/windows/vs2015/yara.sln -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/yara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/yara.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/yara.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/yara.man -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/yarac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/yarac.c -------------------------------------------------------------------------------- /Dependencies/yara-3.5.0/yarac.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Dependencies/yara-3.5.0/yarac.man -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /Malware Detection with Machine Learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/Malware Detection with Machine Learning.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/README.md -------------------------------------------------------------------------------- /cuckoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/README.md -------------------------------------------------------------------------------- /cuckoo/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/agent/agent.py -------------------------------------------------------------------------------- /cuckoo/agent/agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/agent/agent.sh -------------------------------------------------------------------------------- /cuckoo/analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/android/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/__init__.py -------------------------------------------------------------------------------- /cuckoo/analyzer/android/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/analyzer.py -------------------------------------------------------------------------------- /cuckoo/analyzer/android/config/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/config/hooks.json -------------------------------------------------------------------------------- /cuckoo/analyzer/android/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/modules/__init__.py -------------------------------------------------------------------------------- /cuckoo/analyzer/android/modules/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/modules/packages/__init__.py -------------------------------------------------------------------------------- /cuckoo/analyzer/android/modules/packages/apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/android/modules/packages/apk.py -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/darwin/analyzer.py -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/packages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/darwin/modules/packages/app.py -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/packages/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/darwin/modules/packages/bash.py -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/packages/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/darwin/modules/packages/macho.py -------------------------------------------------------------------------------- /cuckoo/analyzer/darwin/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/darwin/modules/packages/zip.py -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/linux/analyzer.py -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/auxiliary/lkm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/linux/modules/auxiliary/lkm.py -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/auxiliary/stap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/linux/modules/auxiliary/stap.py -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/analyzer/linux/modules/packages/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/linux/modules/packages/generic.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/analyzer.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/bin/execsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/bin/execsc.exe -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/__init__.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/auxiliary/dumptls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/auxiliary/dumptls.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/auxiliary/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/auxiliary/human.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/auxiliary/procmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/auxiliary/procmon.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/auxiliary/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/auxiliary/reboot.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/__init__.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/applet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/applet.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/bin.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/com.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/cpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/cpl.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/dll.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/doc.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/exe.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/ff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/ff.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/generic.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/ie.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/jar.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/js.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/msi.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/pdf.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/ppt.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/ps1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/ps1.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/pub.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/vbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/vbs.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/wsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/wsf.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/xls.py -------------------------------------------------------------------------------- /cuckoo/analyzer/windows/modules/packages/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/analyzer/windows/modules/packages/zip.py -------------------------------------------------------------------------------- /cuckoo/conf/auxiliary.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/auxiliary.conf -------------------------------------------------------------------------------- /cuckoo/conf/avd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/avd.conf -------------------------------------------------------------------------------- /cuckoo/conf/cuckoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/cuckoo.conf -------------------------------------------------------------------------------- /cuckoo/conf/esx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/esx.conf -------------------------------------------------------------------------------- /cuckoo/conf/kvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/kvm.conf -------------------------------------------------------------------------------- /cuckoo/conf/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/memory.conf -------------------------------------------------------------------------------- /cuckoo/conf/physical.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/physical.conf -------------------------------------------------------------------------------- /cuckoo/conf/processing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/processing.conf -------------------------------------------------------------------------------- /cuckoo/conf/qemu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/qemu.conf -------------------------------------------------------------------------------- /cuckoo/conf/reporting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/reporting.conf -------------------------------------------------------------------------------- /cuckoo/conf/virtualbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/virtualbox.conf -------------------------------------------------------------------------------- /cuckoo/conf/vmware.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/vmware.conf -------------------------------------------------------------------------------- /cuckoo/conf/vpn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/vpn.conf -------------------------------------------------------------------------------- /cuckoo/conf/vsphere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/vsphere.conf -------------------------------------------------------------------------------- /cuckoo/conf/xenserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/conf/xenserver.conf -------------------------------------------------------------------------------- /cuckoo/cuckoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/cuckoo.py -------------------------------------------------------------------------------- /cuckoo/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/__init__.py -------------------------------------------------------------------------------- /cuckoo/data/android/anti-vm/fake-build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/anti-vm/fake-build.prop -------------------------------------------------------------------------------- /cuckoo/data/android/anti-vm/fake-cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/anti-vm/fake-cpuinfo -------------------------------------------------------------------------------- /cuckoo/data/android/anti-vm/fake-drivers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/anti-vm/fake-drivers -------------------------------------------------------------------------------- /cuckoo/data/android/apps/ImportContacts.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/apps/ImportContacts.apk -------------------------------------------------------------------------------- /cuckoo/data/android/apps/Superuser.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/apps/Superuser.apk -------------------------------------------------------------------------------- /cuckoo/data/android/binaries/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/binaries/su -------------------------------------------------------------------------------- /cuckoo/data/android/create_guest_avd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/create_guest_avd.sh -------------------------------------------------------------------------------- /cuckoo/data/android/hooking/Droidmon.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/android/hooking/Droidmon.apk -------------------------------------------------------------------------------- /cuckoo/data/elasticsearch/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/elasticsearch/template.json -------------------------------------------------------------------------------- /cuckoo/data/gatherer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/gatherer.py -------------------------------------------------------------------------------- /cuckoo/data/guids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/guids.txt -------------------------------------------------------------------------------- /cuckoo/data/html/base-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/base-report.html -------------------------------------------------------------------------------- /cuckoo/data/html/base-web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/base-web.html -------------------------------------------------------------------------------- /cuckoo/data/html/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/browse.html -------------------------------------------------------------------------------- /cuckoo/data/html/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /cuckoo/data/html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /cuckoo/data/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/error.html -------------------------------------------------------------------------------- /cuckoo/data/html/graphic/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/graphic/logo.html -------------------------------------------------------------------------------- /cuckoo/data/html/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /cuckoo/data/html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /cuckoo/data/html/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/js/functions.js -------------------------------------------------------------------------------- /cuckoo/data/html/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/js/jquery.min.js -------------------------------------------------------------------------------- /cuckoo/data/html/pagination-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/pagination-menu.html -------------------------------------------------------------------------------- /cuckoo/data/html/pagination-rpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/pagination-rpp.html -------------------------------------------------------------------------------- /cuckoo/data/html/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/report.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/behavior.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/dropped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/dropped.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/errors.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/file.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/info.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/network.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/screenshots.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/signatures.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/static.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/url.html -------------------------------------------------------------------------------- /cuckoo/data/html/sections/volatility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/sections/volatility.html -------------------------------------------------------------------------------- /cuckoo/data/html/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/submit.html -------------------------------------------------------------------------------- /cuckoo/data/html/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/html/success.html -------------------------------------------------------------------------------- /cuckoo/data/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/mitm.py -------------------------------------------------------------------------------- /cuckoo/data/monitor/latest: -------------------------------------------------------------------------------- 1 | cf3b0957e39242885f7e5a7d6f49245b3a88a2fd -------------------------------------------------------------------------------- /cuckoo/data/peutils/UserDB.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/peutils/UserDB.TXT -------------------------------------------------------------------------------- /cuckoo/data/src/binpackage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/src/binpackage/Makefile -------------------------------------------------------------------------------- /cuckoo/data/src/binpackage/execsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/src/binpackage/execsc.c -------------------------------------------------------------------------------- /cuckoo/data/strace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/strace.stp -------------------------------------------------------------------------------- /cuckoo/data/test-internet.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/test-internet.vbs -------------------------------------------------------------------------------- /cuckoo/data/whitelist/domain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/whitelist/domain.txt -------------------------------------------------------------------------------- /cuckoo/data/yara/binaries/embedded.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/binaries/embedded.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/binaries/shellcodes.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/binaries/shellcodes.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/binaries/vmdetect.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/binaries/vmdetect.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/index_binaries.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/index_binaries.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/index_memory.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/index_memory.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/memory/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/data/yara/memory/index_memory.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/data/yara/memory/index_memory.yar -------------------------------------------------------------------------------- /cuckoo/data/yara/urls/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/db/cuckoo.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/db/cuckoo.db -------------------------------------------------------------------------------- /cuckoo/distributed/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/alembic.ini -------------------------------------------------------------------------------- /cuckoo/distributed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/app.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/__init__.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/api.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/app.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/db.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/exception.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/views/__init__.py -------------------------------------------------------------------------------- /cuckoo/distributed/distributed/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/distributed/views/api.py -------------------------------------------------------------------------------- /cuckoo/distributed/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/instance.py -------------------------------------------------------------------------------- /cuckoo/distributed/migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/migration/env.py -------------------------------------------------------------------------------- /cuckoo/distributed/migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/migration/script.py.mako -------------------------------------------------------------------------------- /cuckoo/distributed/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/requirements.txt -------------------------------------------------------------------------------- /cuckoo/distributed/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/distributed/settings.py -------------------------------------------------------------------------------- /cuckoo/docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/AUTHORS -------------------------------------------------------------------------------- /cuckoo/docs/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/CHANGELOG -------------------------------------------------------------------------------- /cuckoo/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/LICENSE -------------------------------------------------------------------------------- /cuckoo/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/README -------------------------------------------------------------------------------- /cuckoo/docs/book/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/.buildinfo -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_images/windows_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_images/windows_network.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/faq/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/faq/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/api.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/clean.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/dist.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/packages.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/results.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/start.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/submit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/submit.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_sources/usage/web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_sources/usage/web.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/basic.css -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/classic.css -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/comment-bright.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/comment-close.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/comment.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/cuckoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/cuckoo.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/default.css: -------------------------------------------------------------------------------- 1 | @import url("classic.css"); 2 | -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/doctools.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/down-pressed.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/down.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/file.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/jquery.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/minus.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/plus.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/pygments.css -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/searchtools.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/sidebar.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/underscore.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/up-pressed.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/up.png -------------------------------------------------------------------------------- /cuckoo/docs/book/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/_static/websupport.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/customization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/customization/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/customization/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/customization/packages.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/development/code_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/development/code_style.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/development/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/faq/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/finalremarks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/finalremarks/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/installation/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/installation/upgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/installation/upgrade.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/introduction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/introduction/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/introduction/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/introduction/license.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/introduction/what.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/introduction/what.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/objects.inv -------------------------------------------------------------------------------- /cuckoo/docs/book/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/search.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/searchindex.js -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/api.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/clean.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/dist.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/index.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/packages.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/results.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/start.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/submit.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/utilities.html -------------------------------------------------------------------------------- /cuckoo/docs/book/html/usage/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/html/usage/web.html -------------------------------------------------------------------------------- /cuckoo/docs/book/pdf/CuckooSandbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/pdf/CuckooSandbox.pdf -------------------------------------------------------------------------------- /cuckoo/docs/book/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/Makefile -------------------------------------------------------------------------------- /cuckoo/docs/book/src/_images/logo/cuckoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/_images/logo/cuckoo.png -------------------------------------------------------------------------------- /cuckoo/docs/book/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/conf.py -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/auxiliary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/auxiliary.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/machinery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/machinery.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/packages.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/processing.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/reporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/reporting.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/customization/signatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/customization/signatures.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/development/code_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/development/code_style.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/development/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/faq/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/finalremarks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/finalremarks/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/installation/guest/agent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/installation/guest/agent.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/installation/guest/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/installation/guest/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/installation/host/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/installation/host/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/installation/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/installation/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/installation/upgrade.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/introduction/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/introduction/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/introduction/license.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/introduction/sandboxing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/introduction/sandboxing.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/introduction/what.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/introduction/what.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/api.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/clean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/clean.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/dist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/dist.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/index.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/packages.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/results.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/start.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/submit.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/utilities.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/src/usage/web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/src/usage/web.rst -------------------------------------------------------------------------------- /cuckoo/docs/book/text/customization/auxiliary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/customization/auxiliary.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/customization/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/customization/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/customization/machinery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/customization/machinery.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/customization/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/customization/packages.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/customization/reporting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/customization/reporting.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/development/code_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/development/code_style.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/development/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/development/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/faq/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/faq/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/finalremarks/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/finalremarks/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/installation/host/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/installation/host/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/installation/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/installation/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/installation/upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/installation/upgrade.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/introduction/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/introduction/index.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/introduction/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/introduction/license.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/introduction/sandboxing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/introduction/sandboxing.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/introduction/what.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/introduction/what.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/usage/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/usage/api.txt -------------------------------------------------------------------------------- /cuckoo/docs/book/text/usage/clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/book/text/usage/clean.txt -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/api-objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/api-objects.txt -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/class-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/class-tree.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/crarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/crarr.png -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/epydoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/epydoc.css -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/epydoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/epydoc.js -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/frames.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/help.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/identifier-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/identifier-index.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/index.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.api-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.api-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.api-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.api-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.common-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.common-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.common-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.common-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.core-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.core-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.core-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.core-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/lib.core.pipe-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/lib.core.pipe-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/module-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/module-tree.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/modules-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/modules-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/modules-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/modules-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/redirect.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc-everything.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc-everything.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc-lib-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc-lib-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc-lib.api-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc-lib.api-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc-lib.core-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc-lib.core-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc-modules-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc-modules-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/guest/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/guest/toc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/api-objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/api-objects.txt -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/class-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/class-tree.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/crarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/crarr.png -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/epydoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/epydoc.css -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/epydoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/epydoc.js -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/frames.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/help.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/identifier-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/identifier-index.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/index.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/lib-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/lib-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/lib-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/lib-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/lib.cuckoo-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/lib.cuckoo-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/lib.cuckoo-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/lib.cuckoo-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/module-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/module-tree.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/modules-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/modules-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/modules-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/modules-pysrc.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/redirect.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/toc-everything.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/toc-everything.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/toc-lib-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/toc-lib-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/toc-modules-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/toc-modules-module.html -------------------------------------------------------------------------------- /cuckoo/docs/epydoc/host/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/docs/epydoc/host/toc.html -------------------------------------------------------------------------------- /cuckoo/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/auxiliary/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/auxiliary/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/auxiliary/mitm.py -------------------------------------------------------------------------------- /cuckoo/modules/auxiliary/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/auxiliary/reboot.py -------------------------------------------------------------------------------- /cuckoo/modules/auxiliary/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/auxiliary/services.py -------------------------------------------------------------------------------- /cuckoo/modules/auxiliary/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/auxiliary/sniffer.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/avd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/avd.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/esx.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/kvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/kvm.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/physical.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/qemu.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/virtualbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/virtualbox.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/vmware.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/vsphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/vsphere.py -------------------------------------------------------------------------------- /cuckoo/modules/machinery/xenserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/machinery/xenserver.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/analysisinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/analysisinfo.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/apkinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/apkinfo.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/baseline.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/behavior.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/buffer.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/debug.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/droidmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/droidmon.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/dropped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/dropped.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/dumptls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/dumptls.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/googleplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/googleplay.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/irma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/irma.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/memory.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/misp.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/network.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/platform/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/platform/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/platform/linux.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/platform/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/platform/windows.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/procmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/procmemory.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/procmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/procmon.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/screenshots.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/snort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/snort.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/static.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/strings.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/suricata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/suricata.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/targetinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/targetinfo.py -------------------------------------------------------------------------------- /cuckoo/modules/processing/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/processing/virustotal.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/elasticsearch.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/jsondump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/jsondump.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/mattermost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/mattermost.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/moloch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/moloch.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/mongodb.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/notification.py -------------------------------------------------------------------------------- /cuckoo/modules/reporting/reporthtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/reporting/reporthtml.py -------------------------------------------------------------------------------- /cuckoo/modules/signatures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/signatures/__init__.py -------------------------------------------------------------------------------- /cuckoo/modules/signatures/creates_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/signatures/creates_exe.py -------------------------------------------------------------------------------- /cuckoo/modules/signatures/generic_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/modules/signatures/generic_metrics.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3.tar.gz -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/LICENSE -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/MANIFEST.in -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/PKG-INFO -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/README.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/__init__.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/_cbsonmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/_cbsonmodule.c -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/_cbsonmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/_cbsonmodule.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/binary.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/buffer.c -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/buffer.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/code.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/dbref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/dbref.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/encoding_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/encoding_helpers.c -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/encoding_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/encoding_helpers.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/errors.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/json_util.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/max_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/max_key.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/min_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/min_key.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/objectid.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/py3compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/py3compat.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/son.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/son.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/time64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/time64.c -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/time64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/time64.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/time64_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/time64_config.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/time64_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/time64_limits.h -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/timestamp.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/bson/tz_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/bson/tz_util.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/distribute_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/distribute_setup.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/binary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/binary.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/code.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/dbref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/dbref.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/errors.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/json_util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/json_util.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/max_key.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/max_key.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/min_key.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/min_key.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/objectid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/objectid.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/son.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/son.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/timestamp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/timestamp.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/bson/tz_util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/bson/tz_util.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/gridfs/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/gridfs/errors.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/gridfs/grid_file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/gridfs/grid_file.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/gridfs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/gridfs/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/collection.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/connection.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/cursor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/cursor.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/database.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/errors.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/message.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/pool.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/api/pymongo/uri_parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/api/pymongo/uri_parser.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/changelog.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/conf.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/contributors.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/aggregation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/aggregation.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/custom_type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/custom_type.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/geo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/geo.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/gevent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/gevent.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/gridfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/gridfs.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/examples/requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/examples/requests.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/faq.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/index.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/installation.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/mongo_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/mongo_extensions.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/python3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/python3.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/tools.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/doc/tutorial.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/gridfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/gridfs/__init__.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/gridfs/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/gridfs/errors.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/gridfs/grid_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/gridfs/grid_file.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/__init__.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/_cmessagemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/_cmessagemodule.c -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/collection.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/common.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/connection.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/cursor.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/cursor_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/cursor_manager.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/database.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/errors.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/helpers.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/message.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/pool.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/read_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/read_preferences.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/son_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/son_manipulator.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/pymongo/uri_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/pymongo/uri_parser.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/setup.cfg -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/setup.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/__init__.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/qcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/qcheck.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_binary.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_bson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_bson.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_code.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_collection.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_common.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_connection.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_cursor.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_database.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_dbref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_dbref.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_errors.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_grid_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_grid_file.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_gridfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_gridfs.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_json_util.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_objectid.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_paired.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_paired.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_pooling.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_pooling_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_pooling_base.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_pooling_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_pooling_gevent.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_pymongo.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_read_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_read_preferences.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_son.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_son.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_son_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_son_manipulator.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_ssl.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_threads.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_timestamp.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/test_uri_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/test_uri_parser.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/utils.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/test/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/test/version.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/tools/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/tools/README.rst -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/tools/benchmark.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/tools/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/tools/clean.py -------------------------------------------------------------------------------- /cuckoo/pymongo-2.3/tools/fail_if_no_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/pymongo-2.3/tools/fail_if_no_c.py -------------------------------------------------------------------------------- /cuckoo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/requirements.txt -------------------------------------------------------------------------------- /cuckoo/utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/api.py -------------------------------------------------------------------------------- /cuckoo/utils/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/community.py -------------------------------------------------------------------------------- /cuckoo/utils/darwin/bootstrap_guest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/darwin/bootstrap_guest.sh -------------------------------------------------------------------------------- /cuckoo/utils/darwin/bootstrap_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/darwin/bootstrap_host.sh -------------------------------------------------------------------------------- /cuckoo/utils/db_migration/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/db_migration/alembic.ini -------------------------------------------------------------------------------- /cuckoo/utils/db_migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/db_migration/env.py -------------------------------------------------------------------------------- /cuckoo/utils/db_migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/db_migration/script.py.mako -------------------------------------------------------------------------------- /cuckoo/utils/dnsserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/dnsserve.py -------------------------------------------------------------------------------- /cuckoo/utils/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/machine.py -------------------------------------------------------------------------------- /cuckoo/utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/process.py -------------------------------------------------------------------------------- /cuckoo/utils/process2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/process2.py -------------------------------------------------------------------------------- /cuckoo/utils/rawdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/rawdb.py -------------------------------------------------------------------------------- /cuckoo/utils/rooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/rooter.py -------------------------------------------------------------------------------- /cuckoo/utils/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/service.sh -------------------------------------------------------------------------------- /cuckoo/utils/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/setup.sh -------------------------------------------------------------------------------- /cuckoo/utils/smtp_sinkhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/smtp_sinkhole.py -------------------------------------------------------------------------------- /cuckoo/utils/start-distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/start-distributed.sh -------------------------------------------------------------------------------- /cuckoo/utils/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/stats.py -------------------------------------------------------------------------------- /cuckoo/utils/stop-distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/stop-distributed.sh -------------------------------------------------------------------------------- /cuckoo/utils/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/submit.py -------------------------------------------------------------------------------- /cuckoo/utils/suricata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/suricata.sh -------------------------------------------------------------------------------- /cuckoo/utils/vpncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/utils/vpncheck.py -------------------------------------------------------------------------------- /cuckoo/web/.gitignore: -------------------------------------------------------------------------------- 1 | tmp_uploads 2 | *.swp 3 | *.pyc 4 | -------------------------------------------------------------------------------- /cuckoo/web/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/__init__.py -------------------------------------------------------------------------------- /cuckoo/web/analysis/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/forms.py -------------------------------------------------------------------------------- /cuckoo/web/analysis/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/templatetags/__init__.py -------------------------------------------------------------------------------- /cuckoo/web/analysis/templatetags/analysis_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/templatetags/analysis_tags.py -------------------------------------------------------------------------------- /cuckoo/web/analysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/urls.py -------------------------------------------------------------------------------- /cuckoo/web/analysis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/analysis/views.py -------------------------------------------------------------------------------- /cuckoo/web/compare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/compare/__init__.py -------------------------------------------------------------------------------- /cuckoo/web/compare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/compare/urls.py -------------------------------------------------------------------------------- /cuckoo/web/compare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/compare/views.py -------------------------------------------------------------------------------- /cuckoo/web/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuckoo/web/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/dashboard/urls.py -------------------------------------------------------------------------------- /cuckoo/web/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/dashboard/views.py -------------------------------------------------------------------------------- /cuckoo/web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/manage.py -------------------------------------------------------------------------------- /cuckoo/web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /cuckoo/web/static/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/css/lightbox.css -------------------------------------------------------------------------------- /cuckoo/web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/css/style.css -------------------------------------------------------------------------------- /cuckoo/web/static/graphic/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/graphic/background.png -------------------------------------------------------------------------------- /cuckoo/web/static/graphic/cuckoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/graphic/cuckoo.png -------------------------------------------------------------------------------- /cuckoo/web/static/graphic/cuckoo_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/graphic/cuckoo_inverse.png -------------------------------------------------------------------------------- /cuckoo/web/static/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/img/close.png -------------------------------------------------------------------------------- /cuckoo/web/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/img/loading.gif -------------------------------------------------------------------------------- /cuckoo/web/static/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/img/next.png -------------------------------------------------------------------------------- /cuckoo/web/static/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/img/prev.png -------------------------------------------------------------------------------- /cuckoo/web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/app.js -------------------------------------------------------------------------------- /cuckoo/web/static/js/bootstrap-fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/bootstrap-fileupload.js -------------------------------------------------------------------------------- /cuckoo/web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /cuckoo/web/static/js/hexdump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/hexdump.js -------------------------------------------------------------------------------- /cuckoo/web/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/jquery.js -------------------------------------------------------------------------------- /cuckoo/web/static/js/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/static/js/lightbox.js -------------------------------------------------------------------------------- /cuckoo/web/submission/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/submission/__init__.py -------------------------------------------------------------------------------- /cuckoo/web/submission/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/submission/urls.py -------------------------------------------------------------------------------- /cuckoo/web/submission/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/submission/views.py -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/admin/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/behavior/_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/behavior/_tree.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/behavior/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/buffers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/buffers/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/dropped/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/dropped/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/export.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/import.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/_gdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/_gdt.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/_idt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/_idt.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/_pslist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/_pslist.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/_ssdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/_ssdt.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/_timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/_timers.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/memory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/memory/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/misp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/misp/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_dns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_dns.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_hosts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_hosts.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_http.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_icmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_icmp.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_irc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_irc.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_snort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_snort.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_tcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_tcp.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/_udp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/_udp.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/network/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/network/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/overview/_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/overview/_file.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/overview/_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/overview/_info.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/overview/_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/overview/_url.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/overview/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/pending.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/report.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/search.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/search_results.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/static/_irma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/static/_irma.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/static/_office.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/static/_office.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/static/_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/static/_pdf.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/static/_pe32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/static/_pe32.html -------------------------------------------------------------------------------- /cuckoo/web/templates/analysis/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/analysis/static/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/base.html -------------------------------------------------------------------------------- /cuckoo/web/templates/compare/_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/compare/_info.html -------------------------------------------------------------------------------- /cuckoo/web/templates/compare/_summary_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/compare/_summary_table.html -------------------------------------------------------------------------------- /cuckoo/web/templates/compare/both.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/compare/both.html -------------------------------------------------------------------------------- /cuckoo/web/templates/compare/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/compare/hash.html -------------------------------------------------------------------------------- /cuckoo/web/templates/compare/left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/compare/left.html -------------------------------------------------------------------------------- /cuckoo/web/templates/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/dashboard/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/error.html -------------------------------------------------------------------------------- /cuckoo/web/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/footer.html -------------------------------------------------------------------------------- /cuckoo/web/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/header.html -------------------------------------------------------------------------------- /cuckoo/web/templates/standalone_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/standalone_error.html -------------------------------------------------------------------------------- /cuckoo/web/templates/submission/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/submission/complete.html -------------------------------------------------------------------------------- /cuckoo/web/templates/submission/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/submission/index.html -------------------------------------------------------------------------------- /cuckoo/web/templates/submission/reboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/submission/reboot.html -------------------------------------------------------------------------------- /cuckoo/web/templates/submission/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/submission/status.html -------------------------------------------------------------------------------- /cuckoo/web/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/templates/success.html -------------------------------------------------------------------------------- /cuckoo/web/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/web/__init__.py -------------------------------------------------------------------------------- /cuckoo/web/web/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/web/headers.py -------------------------------------------------------------------------------- /cuckoo/web/web/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/web/settings.py -------------------------------------------------------------------------------- /cuckoo/web/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/web/urls.py -------------------------------------------------------------------------------- /cuckoo/web/web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/cuckoo/web/web/wsgi.py -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/data.csv -------------------------------------------------------------------------------- /linuxdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mburakergenc/Malware-Detection-using-Machine-Learning/HEAD/linuxdata.csv --------------------------------------------------------------------------------