├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── experiments ├── README.md ├── artifacts │ ├── disk │ │ ├── artifacts-disk │ │ │ └── iozone.py │ │ ├── disk_aggregate_data.py │ │ ├── disk_artifacts.py │ │ ├── disk_physical_with_sensor │ │ │ ├── trial_0.txt │ │ │ ├── trial_1.txt │ │ │ ├── trial_10.txt │ │ │ ├── trial_11.txt │ │ │ ├── trial_12.txt │ │ │ ├── trial_13.txt │ │ │ ├── trial_14.txt │ │ │ ├── trial_15.txt │ │ │ ├── trial_16.txt │ │ │ ├── trial_17.txt │ │ │ ├── trial_18.txt │ │ │ ├── trial_19.txt │ │ │ ├── trial_2.txt │ │ │ ├── trial_20.txt │ │ │ ├── trial_21.txt │ │ │ ├── trial_22.txt │ │ │ ├── trial_23.txt │ │ │ ├── trial_24.txt │ │ │ ├── trial_25.txt │ │ │ ├── trial_26.txt │ │ │ ├── trial_27.txt │ │ │ ├── trial_28.txt │ │ │ ├── trial_29.txt │ │ │ ├── trial_3.txt │ │ │ ├── trial_30.txt │ │ │ ├── trial_31.txt │ │ │ ├── trial_32.txt │ │ │ ├── trial_33.txt │ │ │ ├── trial_34.txt │ │ │ ├── trial_35.txt │ │ │ ├── trial_36.txt │ │ │ ├── trial_37.txt │ │ │ ├── trial_38.txt │ │ │ ├── trial_39.txt │ │ │ ├── trial_4.txt │ │ │ ├── trial_40.txt │ │ │ ├── trial_41.txt │ │ │ ├── trial_42.txt │ │ │ ├── trial_43.txt │ │ │ ├── trial_44.txt │ │ │ ├── trial_45.txt │ │ │ ├── trial_46.txt │ │ │ ├── trial_47.txt │ │ │ ├── trial_48.txt │ │ │ ├── trial_49.txt │ │ │ ├── trial_5.txt │ │ │ ├── trial_6.txt │ │ │ ├── trial_7.txt │ │ │ ├── trial_8.txt │ │ │ └── trial_9.txt │ │ ├── disk_physical_without_sensor │ │ │ ├── trial_0.txt │ │ │ ├── trial_1.txt │ │ │ ├── trial_10.txt │ │ │ ├── trial_11.txt │ │ │ ├── trial_12.txt │ │ │ ├── trial_13.txt │ │ │ ├── trial_14.txt │ │ │ ├── trial_15.txt │ │ │ ├── trial_16.txt │ │ │ ├── trial_17.txt │ │ │ ├── trial_18.txt │ │ │ ├── trial_19.txt │ │ │ ├── trial_2.txt │ │ │ ├── trial_20.txt │ │ │ ├── trial_21.txt │ │ │ ├── trial_22.txt │ │ │ ├── trial_23.txt │ │ │ ├── trial_24.txt │ │ │ ├── trial_25.txt │ │ │ ├── trial_26.txt │ │ │ ├── trial_27.txt │ │ │ ├── trial_28.txt │ │ │ ├── trial_29.txt │ │ │ ├── trial_3.txt │ │ │ ├── trial_30.txt │ │ │ ├── trial_31.txt │ │ │ ├── trial_32.txt │ │ │ ├── trial_33.txt │ │ │ ├── trial_34.txt │ │ │ ├── trial_35.txt │ │ │ ├── trial_36.txt │ │ │ ├── trial_37.txt │ │ │ ├── trial_38.txt │ │ │ ├── trial_39.txt │ │ │ ├── trial_4.txt │ │ │ ├── trial_40.txt │ │ │ ├── trial_41.txt │ │ │ ├── trial_42.txt │ │ │ ├── trial_43.txt │ │ │ ├── trial_44.txt │ │ │ ├── trial_45.txt │ │ │ ├── trial_46.txt │ │ │ ├── trial_47.txt │ │ │ ├── trial_48.txt │ │ │ ├── trial_49.txt │ │ │ ├── trial_5.txt │ │ │ ├── trial_6.txt │ │ │ ├── trial_7.txt │ │ │ ├── trial_8.txt │ │ │ └── trial_9.txt │ │ ├── disk_read.eps │ │ ├── disk_write.eps │ │ ├── parse_dcaps.py │ │ ├── run_tests.sh │ │ ├── stub.py │ │ └── update_graphs.sh │ ├── generate_all_tests.sh │ ├── install_dependendies.sh │ ├── memory │ │ ├── README.md │ │ ├── artifacts-memory │ │ │ └── ramspeed-win32.exe │ │ ├── memory_aggregate_data.py │ │ ├── memory_artifacts.py │ │ ├── memory_physical.eps │ │ ├── memory_physical_with_sensor │ │ │ ├── trial_b12_l500.txt │ │ │ ├── trial_b12_l500_sensor.txt │ │ │ ├── trial_b3_l500.txt │ │ │ ├── trial_b3_l500_sensor.txt │ │ │ ├── trial_b6_l500.txt │ │ │ ├── trial_b6_l500_sensor.txt │ │ │ ├── trial_b9_l500.txt │ │ │ └── trial_b9_l500_sensor.txt │ │ ├── memory_physical_without_sensor │ │ │ ├── trial_b12_l500.txt │ │ │ ├── trial_b3_l500.txt │ │ │ ├── trial_b6_l500.txt │ │ │ └── trial_b9_l500.txt │ │ ├── memory_virtual.eps │ │ ├── memory_virtual_with_sensor │ │ │ ├── trial_b12_l500.txt │ │ │ ├── trial_b12_l500_sensor.txt │ │ │ ├── trial_b3_l500.txt │ │ │ ├── trial_b3_l500_sensor.txt │ │ │ ├── trial_b6_l500.txt │ │ │ ├── trial_b6_l500_sensor.txt │ │ │ ├── trial_b9_l500.txt │ │ │ └── trial_b9_l500_sensor.txt │ │ ├── memory_virtual_without_sensor │ │ │ ├── trial_b12_l500.txt │ │ │ ├── trial_b3_l500.txt │ │ │ ├── trial_b6_l500.txt │ │ │ └── trial_b9_l500.txt │ │ ├── run_tests.sh │ │ ├── stub.py │ │ └── update_graphs.sh │ └── stub.py ├── memory │ └── read_rate.py └── runtime │ ├── plot_runtime.py │ ├── runtime.eps │ └── update_graphs.sh ├── install_all_packages.sh ├── lophi-analysis ├── README.md ├── analysis │ ├── create_filters.sh │ ├── disk │ │ ├── apply_filter_disk.py │ │ ├── disk_analysis.py │ │ └── make_filter_disk.py │ ├── filters │ │ ├── filter_0_mem │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_3276239980519541_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_4615297338999875_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5368024510327716_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_6948211038154842_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8932178514895085_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9193539816802060_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9709939220329710_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9753144694787226_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9934250696525746_mem_diff.txt │ │ │ └── filter.mem │ │ └── filter_2_mem │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5370928720252239_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_7265450124775941_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8384039104765894_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9105458708364954_mem_diff.txt │ │ │ ├── analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9501600138172458_mem_diff.txt │ │ │ └── filter.mem │ ├── get_analyses.py │ ├── make_filter.py │ ├── memory │ │ ├── apply_filter_memory.py │ │ ├── filter.mem.mem │ │ ├── make_filter_memory.py │ │ └── memory_analysis.py │ ├── network │ │ └── network_analysis.py │ ├── resubmit_incomplete_analysis.py │ └── screenshots │ │ └── download_all_screenshots.py ├── anubis │ └── schema.xsd ├── lophi_analysis │ ├── __init__.py │ └── analysis_filter.py └── setup.py ├── lophi-automation ├── README.md ├── actuation_scripts │ ├── win7.act │ ├── windows.act │ └── windows_login.act ├── analysis_scripts │ ├── buttons.py │ ├── demo.py │ ├── demo2.py │ ├── gui.py │ ├── malware.py │ ├── projectc.py │ └── screenshot.py ├── bin │ ├── lophi-client │ ├── lophi-controller │ ├── lophi-ftp │ ├── lophi-gui │ ├── lophi-gui-alert │ ├── lophi-gui-graph │ ├── lophi-logger │ ├── lophi-master │ └── lophi-submit ├── conf │ ├── controllers.conf │ ├── images_map.conf │ ├── machines.conf │ └── sensors.conf ├── debian │ ├── changelog │ ├── compat │ ├── conffiles │ ├── control │ ├── rules │ └── source │ │ └── format ├── examples │ └── analysis │ │ ├── example_analysis.py │ │ └── example_run_bin_analysis.py ├── install_dependencies.sh ├── lophi_automation │ ├── __init__.py │ ├── analysis │ │ ├── __init__.py │ │ ├── packetloss.py │ │ └── remote.py │ ├── analysis_scripts.py │ ├── configs │ │ ├── __init__.py │ │ ├── controllerconfig.py │ │ ├── helper.py │ │ └── machineconfig.py │ ├── controller.py │ ├── database │ │ ├── __init__.py │ │ ├── datastore.py │ │ ├── db.py │ │ ├── documents.py │ │ ├── mongodb_al.py │ │ └── utils.py │ ├── dataconsumers │ │ ├── __init__.py │ │ ├── datahandler.py │ │ ├── graph.py │ │ ├── gui.py │ │ ├── logfile.py │ │ ├── logger.py │ │ ├── logudp.py │ │ └── remotequeue.py │ ├── ext_interface │ │ ├── __init__.py │ │ └── rabbitmq.py │ ├── globals.py │ ├── master.py │ ├── network │ │ ├── __init__.py │ │ ├── command.py │ │ └── ftpserver.py │ └── protobuf │ │ ├── __init__.py │ │ ├── analysis_pb2.py │ │ ├── cards_pb2.py │ │ ├── helper.py │ │ ├── machines_pb2.py │ │ ├── rabbitmq_pb2.py │ │ └── sensor_output_pb2.py ├── protocol_buffers │ ├── Makefile │ ├── analysis.proto │ ├── cards.proto │ ├── machines.proto │ ├── rabbitmq.proto │ └── semantic_output.proto └── setup.py ├── lophi-disk-introspection-server ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── config.h.in ├── configure ├── configure.ac ├── configure.ac-old ├── debian │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── docs │ ├── emacsen-install.ex │ ├── emacsen-remove.ex │ ├── emacsen-startup.ex │ ├── init.d.ex │ ├── lophi-disk-introspection-server.cron.d.ex │ ├── lophi-disk-introspection-server.default.ex │ ├── lophi-disk-introspection-server.doc-base.EX │ ├── manpage.1.ex │ ├── manpage.sgml.ex │ ├── manpage.xml.ex │ ├── menu.ex │ ├── postinst │ ├── postinst.ex │ ├── postrm │ ├── postrm.ex │ ├── preinst.ex │ ├── prerm.ex │ ├── rules │ ├── source │ │ └── format │ └── watch.ex ├── depcomp ├── disk_introspection_server.h ├── install-sh ├── missing ├── setup_env.sh ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── dis_client.c │ ├── dis_client.patch │ ├── dis_comm.h │ ├── dis_hypervisor.c │ ├── dis_logger.c │ ├── dis_logger.h │ ├── dis_threads.c │ └── disk_introspection_server.c └── tools │ ├── Makefile.am │ ├── Makefile.in │ ├── client.py │ └── disk_introspection_status.c ├── lophi-net-services ├── README.md ├── bin │ ├── lophi-net-pxe │ └── lophi-net-services ├── conf │ └── network.conf ├── debian │ ├── changelog │ ├── compat │ ├── conffiles │ ├── control │ ├── postinst │ ├── rules │ └── source │ │ └── format ├── lophinet │ ├── __init__.py │ ├── aclserver.py │ ├── dns.py │ ├── globals.py │ ├── proxydhcpd │ │ ├── __init__.py │ │ ├── dhcpd.py │ │ ├── dhcplib │ │ │ ├── __init__.py │ │ │ ├── dhcp_basic_packet.py │ │ │ ├── dhcp_constants.py │ │ │ ├── dhcp_file_io.py │ │ │ ├── dhcp_network.py │ │ │ ├── dhcp_packet.py │ │ │ ├── interface.py │ │ │ ├── type_hw_addr.py │ │ │ ├── type_hwmac.py │ │ │ ├── type_ipv4.py │ │ │ └── type_strlist.py │ │ ├── net.py │ │ ├── proxyconfig.py │ │ └── proxyservice.py │ ├── pxeserver.py │ └── pybootd │ │ ├── __init__.py │ │ ├── daemons.py │ │ ├── httpd.py │ │ ├── pxed.py │ │ ├── test.py │ │ ├── tftpd.py │ │ └── util.py ├── net_services_setup.sh ├── setup.py └── tftpboot │ ├── clonezilla-live │ └── __ADD_CLONEZILLA_FILES_HERE__ │ ├── menu.c32 │ ├── pxelinux.0 │ └── pxelinux.cfg │ └── default ├── media ├── LO-PHI_black_transparent.png └── overview.png ├── python-lophi-semanticgap ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── rules │ └── source │ │ └── format ├── examples │ ├── disk │ │ ├── analyze_disk.py │ │ ├── capture_disk.py │ │ └── scan_disk_physical.py │ ├── memory │ │ ├── example_buttons.py │ │ ├── example_screenshot.py │ │ └── put.py │ └── network │ │ ├── pcap_reader.py │ │ └── pcap_writer.py ├── lophi_semanticgap │ ├── __init__.py │ ├── disk │ │ ├── __init__.py │ │ ├── filesystem_reconstructor.py │ │ ├── filesystems │ │ │ ├── __init__.py │ │ │ └── ntfs │ │ │ │ └── __init__.py │ │ ├── sata.py │ │ └── sata_reconstructor.py │ ├── memory │ │ ├── __init__.py │ │ └── volatility_extensions.py │ └── network │ │ └── __init__.py └── setup.py ├── python-lophi-volatility ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── postinst │ ├── postrm │ ├── rules │ └── source │ │ ├── format │ │ └── include-binaries ├── setup.py ├── setup_volatility.sh └── volatility │ ├── install_volatility.sh │ ├── lophiaddressspace.py │ └── replace_calculate.sh ├── python-lophi ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── postinst │ ├── rules │ └── source │ │ └── format ├── examples │ ├── sensor_control │ │ ├── example_control.py │ │ ├── hello_world_windows.act │ │ └── mouse_click.py │ ├── sensor_disk │ │ ├── capture_disk.py │ │ └── read_disk_capture.py │ ├── sensor_memory │ │ └── example_memory.py │ ├── sensor_network │ │ └── example_network.py │ └── tool_template.py ├── lophi │ ├── __init__.py │ ├── actuation │ │ ├── __init__.py │ │ ├── keycodes.py │ │ ├── keypressgenerator.py │ │ └── rfb.py │ ├── capture │ │ ├── __init__.py │ │ └── network.py │ ├── command_line.py │ ├── data.py │ ├── globals.py │ ├── machine │ │ ├── __init__.py │ │ ├── physical.py │ │ └── virtual.py │ ├── network │ │ ├── __init__.py │ │ └── ping.py │ ├── sensors │ │ ├── __init__.py │ │ ├── control │ │ │ ├── __init__.py │ │ │ ├── physical.py │ │ │ └── virtual.py │ │ ├── cpu │ │ │ ├── __init__.py │ │ │ ├── physical.py │ │ │ └── virtual.py │ │ ├── disk │ │ │ ├── __init__.py │ │ │ ├── physical.py │ │ │ └── virtual.py │ │ ├── memory │ │ │ ├── __init__.py │ │ │ ├── physical.py │ │ │ └── virtual.py │ │ └── network │ │ │ ├── __init__.py │ │ │ ├── physical.py │ │ │ └── virtual.py │ └── utils.py └── setup.py ├── qemu-2.0.0+dfsg_patch ├── Makefile.objs.patch ├── Makefile.target.patch ├── block.c.patch ├── lophi-hooks-common.c ├── lophi-hooks-common.h ├── lophi-hooks-disk.c ├── lophi-hooks-disk.h ├── lophi-hooks-memory.c ├── lophi-hooks-memory.h ├── monitor.c.patch ├── patch_qemu_source.sh └── qmp-commands.hx.patch ├── release_debs.sh ├── scripts ├── fix_kvm_install.sh ├── get_third_party_packages.sh ├── install_developer_dependencies.sh ├── install_tools.sh ├── setup_apt_ppa.sh └── setup_dev_environment.sh └── tools ├── README.md ├── clonezilla ├── MSOFT.reg ├── README.md ├── fix_win_image.sh └── restore_clonezilla.sh ├── disk_sensor ├── README.md ├── add_mac.sh ├── card_test_relay_server.py ├── check_disk_results.py ├── file_creator.py ├── lophi-disk-introspection-server.py ├── print_sectors.py └── send_cmd.py ├── mongodb ├── clear_mongo.sh └── clear_mongodb.js ├── rabbitmq └── send_msg.py ├── scripts ├── demo.sh ├── get_keycode.sh ├── list_open_files.sh ├── makediskimage.sh └── makeusbimage.sh ├── semantic_gap └── parse_ports.py └── sensors ├── README.md └── ping.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/README.md -------------------------------------------------------------------------------- /experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/README.md -------------------------------------------------------------------------------- /experiments/artifacts/disk/artifacts-disk/iozone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/artifacts-disk/iozone.py -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_aggregate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_aggregate_data.py -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_artifacts.py -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_0.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_1.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_10.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_11.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_12.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_13.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_14.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_15.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_16.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_17.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_18.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_19.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_2.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_20.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_21.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_22.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_23.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_24.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_25.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_26.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_27.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_28.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_29.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_3.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_30.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_31.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_32.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_33.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_34.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_35.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_36.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_37.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_38.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_39.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_4.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_40.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_41.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_42.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_43.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_44.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_45.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_46.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_47.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_48.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_49.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_5.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_6.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_7.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_8.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_with_sensor/trial_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_with_sensor/trial_9.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_0.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_1.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_10.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_11.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_12.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_13.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_14.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_15.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_16.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_17.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_18.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_19.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_2.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_20.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_21.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_22.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_23.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_24.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_25.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_26.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_27.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_28.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_29.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_3.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_30.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_31.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_32.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_33.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_34.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_35.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_36.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_37.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_38.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_39.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_4.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_40.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_41.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_42.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_43.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_44.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_45.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_46.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_47.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_48.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_49.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_5.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_6.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_7.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_8.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_physical_without_sensor/trial_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_physical_without_sensor/trial_9.txt -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_read.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_read.eps -------------------------------------------------------------------------------- /experiments/artifacts/disk/disk_write.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/disk_write.eps -------------------------------------------------------------------------------- /experiments/artifacts/disk/parse_dcaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/parse_dcaps.py -------------------------------------------------------------------------------- /experiments/artifacts/disk/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/run_tests.sh -------------------------------------------------------------------------------- /experiments/artifacts/disk/stub.py: -------------------------------------------------------------------------------- 1 | ../stub.py -------------------------------------------------------------------------------- /experiments/artifacts/disk/update_graphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/disk/update_graphs.sh -------------------------------------------------------------------------------- /experiments/artifacts/generate_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/generate_all_tests.sh -------------------------------------------------------------------------------- /experiments/artifacts/install_dependendies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/install_dependendies.sh -------------------------------------------------------------------------------- /experiments/artifacts/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/README.md -------------------------------------------------------------------------------- /experiments/artifacts/memory/artifacts-memory/ramspeed-win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/artifacts-memory/ramspeed-win32.exe -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_aggregate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_aggregate_data.py -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_artifacts.py -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical.eps -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b12_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b12_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b12_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b12_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b3_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b3_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b3_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b3_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b6_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b6_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b6_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b6_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b9_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b9_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_with_sensor/trial_b9_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_with_sensor/trial_b9_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_without_sensor/trial_b12_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_without_sensor/trial_b12_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_without_sensor/trial_b3_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_without_sensor/trial_b3_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_without_sensor/trial_b6_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_without_sensor/trial_b6_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_physical_without_sensor/trial_b9_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_physical_without_sensor/trial_b9_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual.eps -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b12_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b12_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b12_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b12_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b3_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b3_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b3_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b3_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b6_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b6_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b6_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b6_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b9_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b9_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_with_sensor/trial_b9_l500_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_with_sensor/trial_b9_l500_sensor.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_without_sensor/trial_b12_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_without_sensor/trial_b12_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_without_sensor/trial_b3_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_without_sensor/trial_b3_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_without_sensor/trial_b6_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_without_sensor/trial_b6_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/memory_virtual_without_sensor/trial_b9_l500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/memory_virtual_without_sensor/trial_b9_l500.txt -------------------------------------------------------------------------------- /experiments/artifacts/memory/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/run_tests.sh -------------------------------------------------------------------------------- /experiments/artifacts/memory/stub.py: -------------------------------------------------------------------------------- 1 | ../stub.py -------------------------------------------------------------------------------- /experiments/artifacts/memory/update_graphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/memory/update_graphs.sh -------------------------------------------------------------------------------- /experiments/artifacts/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/artifacts/stub.py -------------------------------------------------------------------------------- /experiments/memory/read_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/memory/read_rate.py -------------------------------------------------------------------------------- /experiments/runtime/plot_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/runtime/plot_runtime.py -------------------------------------------------------------------------------- /experiments/runtime/runtime.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/experiments/runtime/runtime.eps -------------------------------------------------------------------------------- /experiments/runtime/update_graphs.sh: -------------------------------------------------------------------------------- 1 | python plot_runtime.py 2 | 3 | scp *.eps 172.25.126.42:~/Papers/lophi_uva/ndss16/figures 4 | 5 | -------------------------------------------------------------------------------- /install_all_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/install_all_packages.sh -------------------------------------------------------------------------------- /lophi-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/README.md -------------------------------------------------------------------------------- /lophi-analysis/analysis/create_filters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/create_filters.sh -------------------------------------------------------------------------------- /lophi-analysis/analysis/disk/apply_filter_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/disk/apply_filter_disk.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/disk/disk_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/disk/disk_analysis.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/disk/make_filter_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/disk/make_filter_disk.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_3276239980519541_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_3276239980519541_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_4615297338999875_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_4615297338999875_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5368024510327716_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5368024510327716_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_6948211038154842_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_6948211038154842_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8932178514895085_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8932178514895085_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9193539816802060_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9193539816802060_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9709939220329710_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9709939220329710_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9753144694787226_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9753144694787226_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9934250696525746_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9934250696525746_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_0_mem/filter.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_0_mem/filter.mem -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5370928720252239_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_5370928720252239_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_7265450124775941_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_7265450124775941_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8384039104765894_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_8384039104765894_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9105458708364954_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9105458708364954_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9501600138172458_mem_diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/analysis_sample_94f7757a2487b7bebb9cc0d4547c82ad_9501600138172458_mem_diff.txt -------------------------------------------------------------------------------- /lophi-analysis/analysis/filters/filter_2_mem/filter.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/filters/filter_2_mem/filter.mem -------------------------------------------------------------------------------- /lophi-analysis/analysis/get_analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/get_analyses.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/make_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/make_filter.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/memory/apply_filter_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/memory/apply_filter_memory.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/memory/filter.mem.mem: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lophi-analysis/analysis/memory/make_filter_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/memory/make_filter_memory.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/memory/memory_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/memory/memory_analysis.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/network/network_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/network/network_analysis.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/resubmit_incomplete_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/resubmit_incomplete_analysis.py -------------------------------------------------------------------------------- /lophi-analysis/analysis/screenshots/download_all_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/analysis/screenshots/download_all_screenshots.py -------------------------------------------------------------------------------- /lophi-analysis/anubis/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/anubis/schema.xsd -------------------------------------------------------------------------------- /lophi-analysis/lophi_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-analysis/lophi_analysis/analysis_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/lophi_analysis/analysis_filter.py -------------------------------------------------------------------------------- /lophi-analysis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-analysis/setup.py -------------------------------------------------------------------------------- /lophi-automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/README.md -------------------------------------------------------------------------------- /lophi-automation/actuation_scripts/win7.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/actuation_scripts/win7.act -------------------------------------------------------------------------------- /lophi-automation/actuation_scripts/windows.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/actuation_scripts/windows.act -------------------------------------------------------------------------------- /lophi-automation/actuation_scripts/windows_login.act: -------------------------------------------------------------------------------- 1 | TEXT:lophi 2 | SPECIAL:RETURN -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/buttons.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/demo.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/demo2.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/gui.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/malware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/malware.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/projectc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/projectc.py -------------------------------------------------------------------------------- /lophi-automation/analysis_scripts/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/analysis_scripts/screenshot.py -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-client -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-controller -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-ftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-ftp -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-gui -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-gui-alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-gui-alert -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-gui-graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-gui-graph -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-logger -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-master -------------------------------------------------------------------------------- /lophi-automation/bin/lophi-submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/bin/lophi-submit -------------------------------------------------------------------------------- /lophi-automation/conf/controllers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/conf/controllers.conf -------------------------------------------------------------------------------- /lophi-automation/conf/images_map.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/conf/images_map.conf -------------------------------------------------------------------------------- /lophi-automation/conf/machines.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/conf/machines.conf -------------------------------------------------------------------------------- /lophi-automation/conf/sensors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/conf/sensors.conf -------------------------------------------------------------------------------- /lophi-automation/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/debian/changelog -------------------------------------------------------------------------------- /lophi-automation/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /lophi-automation/debian/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/debian/conffiles -------------------------------------------------------------------------------- /lophi-automation/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/debian/control -------------------------------------------------------------------------------- /lophi-automation/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/debian/rules -------------------------------------------------------------------------------- /lophi-automation/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /lophi-automation/examples/analysis/example_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/examples/analysis/example_analysis.py -------------------------------------------------------------------------------- /lophi-automation/examples/analysis/example_run_bin_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/examples/analysis/example_run_bin_analysis.py -------------------------------------------------------------------------------- /lophi-automation/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/install_dependencies.sh -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/analysis/__init__.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/analysis/packetloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/analysis/packetloss.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/analysis/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/analysis/remote.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/analysis_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/analysis_scripts.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/configs/__init__.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/configs/controllerconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/configs/controllerconfig.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/configs/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/configs/helper.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/configs/machineconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/configs/machineconfig.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/controller.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/database/datastore.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/database/db.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/database/documents.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/mongodb_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/database/mongodb_al.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/database/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/database/utils.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/datahandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/datahandler.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/graph.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/gui.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/logfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/logfile.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/logger.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/logudp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/logudp.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/dataconsumers/remotequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/dataconsumers/remotequeue.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/ext_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/ext_interface/rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/ext_interface/rabbitmq.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/globals.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/master.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/network/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/network/command.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/network/ftpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/network/ftpserver.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/analysis_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/analysis_pb2.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/cards_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/cards_pb2.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/helper.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/machines_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/machines_pb2.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/rabbitmq_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/rabbitmq_pb2.py -------------------------------------------------------------------------------- /lophi-automation/lophi_automation/protobuf/sensor_output_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/lophi_automation/protobuf/sensor_output_pb2.py -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/Makefile -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/analysis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/analysis.proto -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/cards.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/cards.proto -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/machines.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/machines.proto -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/rabbitmq.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/rabbitmq.proto -------------------------------------------------------------------------------- /lophi-automation/protocol_buffers/semantic_output.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/protocol_buffers/semantic_output.proto -------------------------------------------------------------------------------- /lophi-automation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-automation/setup.py -------------------------------------------------------------------------------- /lophi-disk-introspection-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/Makefile.am -------------------------------------------------------------------------------- /lophi-disk-introspection-server/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/Makefile.in -------------------------------------------------------------------------------- /lophi-disk-introspection-server/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/aclocal.m4 -------------------------------------------------------------------------------- /lophi-disk-introspection-server/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/config.h.in -------------------------------------------------------------------------------- /lophi-disk-introspection-server/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/configure -------------------------------------------------------------------------------- /lophi-disk-introspection-server/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/configure.ac -------------------------------------------------------------------------------- /lophi-disk-introspection-server/configure.ac-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/configure.ac-old -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/README.Debian -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/README.source -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/changelog -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/control -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/emacsen-install.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/emacsen-install.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/emacsen-remove.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/emacsen-remove.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/emacsen-startup.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/emacsen-startup.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/init.d.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/init.d.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/lophi-disk-introspection-server.cron.d.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/lophi-disk-introspection-server.cron.d.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/lophi-disk-introspection-server.default.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/lophi-disk-introspection-server.default.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/lophi-disk-introspection-server.doc-base.EX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/lophi-disk-introspection-server.doc-base.EX -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/manpage.1.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/manpage.1.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/manpage.sgml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/manpage.sgml.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/manpage.xml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/manpage.xml.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/menu.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/menu.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/postinst -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/postinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/postinst.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/postrm -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/postrm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/postrm.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/preinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/preinst.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/prerm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/prerm.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/rules -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /lophi-disk-introspection-server/debian/watch.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/debian/watch.ex -------------------------------------------------------------------------------- /lophi-disk-introspection-server/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/depcomp -------------------------------------------------------------------------------- /lophi-disk-introspection-server/disk_introspection_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/disk_introspection_server.h -------------------------------------------------------------------------------- /lophi-disk-introspection-server/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/install-sh -------------------------------------------------------------------------------- /lophi-disk-introspection-server/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/missing -------------------------------------------------------------------------------- /lophi-disk-introspection-server/setup_env.sh: -------------------------------------------------------------------------------- 1 | automake --add-missing 2 | 3 | -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/Makefile.am -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/Makefile.in -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_client.c -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_client.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_client.patch -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_comm.h -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_hypervisor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_hypervisor.c -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_logger.c -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_logger.h -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/dis_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/dis_threads.c -------------------------------------------------------------------------------- /lophi-disk-introspection-server/src/disk_introspection_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/src/disk_introspection_server.c -------------------------------------------------------------------------------- /lophi-disk-introspection-server/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/tools/Makefile.am -------------------------------------------------------------------------------- /lophi-disk-introspection-server/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/tools/Makefile.in -------------------------------------------------------------------------------- /lophi-disk-introspection-server/tools/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/tools/client.py -------------------------------------------------------------------------------- /lophi-disk-introspection-server/tools/disk_introspection_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-disk-introspection-server/tools/disk_introspection_status.c -------------------------------------------------------------------------------- /lophi-net-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/README.md -------------------------------------------------------------------------------- /lophi-net-services/bin/lophi-net-pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/bin/lophi-net-pxe -------------------------------------------------------------------------------- /lophi-net-services/bin/lophi-net-services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/bin/lophi-net-services -------------------------------------------------------------------------------- /lophi-net-services/conf/network.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/conf/network.conf -------------------------------------------------------------------------------- /lophi-net-services/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/debian/changelog -------------------------------------------------------------------------------- /lophi-net-services/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /lophi-net-services/debian/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/debian/conffiles -------------------------------------------------------------------------------- /lophi-net-services/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/debian/control -------------------------------------------------------------------------------- /lophi-net-services/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/debian/postinst -------------------------------------------------------------------------------- /lophi-net-services/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/debian/rules -------------------------------------------------------------------------------- /lophi-net-services/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /lophi-net-services/lophinet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-net-services/lophinet/aclserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/aclserver.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/dns.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/globals.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcpd.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.2' 2 | -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_basic_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_basic_packet.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_constants.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_file_io.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_network.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/dhcp_packet.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/interface.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/type_hw_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/type_hw_addr.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/type_hwmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/type_hwmac.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/type_ipv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/type_ipv4.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/dhcplib/type_strlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/dhcplib/type_strlist.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/net.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/proxyconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/proxyconfig.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/proxydhcpd/proxyservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/proxydhcpd/proxyservice.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pxeserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pxeserver.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/__init__.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/daemons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/daemons.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/httpd.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/pxed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/pxed.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/test.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/tftpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/tftpd.py -------------------------------------------------------------------------------- /lophi-net-services/lophinet/pybootd/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/lophinet/pybootd/util.py -------------------------------------------------------------------------------- /lophi-net-services/net_services_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/net_services_setup.sh -------------------------------------------------------------------------------- /lophi-net-services/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/setup.py -------------------------------------------------------------------------------- /lophi-net-services/tftpboot/clonezilla-live/__ADD_CLONEZILLA_FILES_HERE__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lophi-net-services/tftpboot/menu.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/tftpboot/menu.c32 -------------------------------------------------------------------------------- /lophi-net-services/tftpboot/pxelinux.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/tftpboot/pxelinux.0 -------------------------------------------------------------------------------- /lophi-net-services/tftpboot/pxelinux.cfg/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/lophi-net-services/tftpboot/pxelinux.cfg/default -------------------------------------------------------------------------------- /media/LO-PHI_black_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/media/LO-PHI_black_transparent.png -------------------------------------------------------------------------------- /media/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/media/overview.png -------------------------------------------------------------------------------- /python-lophi-semanticgap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/README.md -------------------------------------------------------------------------------- /python-lophi-semanticgap/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/debian/changelog -------------------------------------------------------------------------------- /python-lophi-semanticgap/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /python-lophi-semanticgap/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/debian/control -------------------------------------------------------------------------------- /python-lophi-semanticgap/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/debian/rules -------------------------------------------------------------------------------- /python-lophi-semanticgap/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/disk/analyze_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/disk/analyze_disk.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/disk/capture_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/disk/capture_disk.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/disk/scan_disk_physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/disk/scan_disk_physical.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/memory/example_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/memory/example_buttons.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/memory/example_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/memory/example_screenshot.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/memory/put.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/network/pcap_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/network/pcap_reader.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/examples/network/pcap_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/examples/network/pcap_writer.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/filesystem_reconstructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/filesystem_reconstructor.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/filesystems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/filesystems/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/filesystems/ntfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/filesystems/ntfs/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/sata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/sata.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/disk/sata_reconstructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/disk/sata_reconstructor.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/memory/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/memory/volatility_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/memory/volatility_extensions.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/lophi_semanticgap/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/lophi_semanticgap/network/__init__.py -------------------------------------------------------------------------------- /python-lophi-semanticgap/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-semanticgap/setup.py -------------------------------------------------------------------------------- /python-lophi-volatility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/README.md -------------------------------------------------------------------------------- /python-lophi-volatility/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/debian/changelog -------------------------------------------------------------------------------- /python-lophi-volatility/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /python-lophi-volatility/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/debian/control -------------------------------------------------------------------------------- /python-lophi-volatility/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/debian/postinst -------------------------------------------------------------------------------- /python-lophi-volatility/debian/postrm: -------------------------------------------------------------------------------- 1 | pip uninstall volatility 2 | -------------------------------------------------------------------------------- /python-lophi-volatility/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/debian/rules -------------------------------------------------------------------------------- /python-lophi-volatility/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /python-lophi-volatility/debian/source/include-binaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/debian/source/include-binaries -------------------------------------------------------------------------------- /python-lophi-volatility/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/setup.py -------------------------------------------------------------------------------- /python-lophi-volatility/setup_volatility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/setup_volatility.sh -------------------------------------------------------------------------------- /python-lophi-volatility/volatility/install_volatility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/volatility/install_volatility.sh -------------------------------------------------------------------------------- /python-lophi-volatility/volatility/lophiaddressspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/volatility/lophiaddressspace.py -------------------------------------------------------------------------------- /python-lophi-volatility/volatility/replace_calculate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi-volatility/volatility/replace_calculate.sh -------------------------------------------------------------------------------- /python-lophi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/README.md -------------------------------------------------------------------------------- /python-lophi/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/debian/changelog -------------------------------------------------------------------------------- /python-lophi/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /python-lophi/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/debian/control -------------------------------------------------------------------------------- /python-lophi/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/debian/postinst -------------------------------------------------------------------------------- /python-lophi/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/debian/rules -------------------------------------------------------------------------------- /python-lophi/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /python-lophi/examples/sensor_control/example_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_control/example_control.py -------------------------------------------------------------------------------- /python-lophi/examples/sensor_control/hello_world_windows.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_control/hello_world_windows.act -------------------------------------------------------------------------------- /python-lophi/examples/sensor_control/mouse_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_control/mouse_click.py -------------------------------------------------------------------------------- /python-lophi/examples/sensor_disk/capture_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_disk/capture_disk.py -------------------------------------------------------------------------------- /python-lophi/examples/sensor_disk/read_disk_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_disk/read_disk_capture.py -------------------------------------------------------------------------------- /python-lophi/examples/sensor_memory/example_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_memory/example_memory.py -------------------------------------------------------------------------------- /python-lophi/examples/sensor_network/example_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/sensor_network/example_network.py -------------------------------------------------------------------------------- /python-lophi/examples/tool_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/examples/tool_template.py -------------------------------------------------------------------------------- /python-lophi/lophi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-lophi/lophi/actuation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-lophi/lophi/actuation/keycodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/actuation/keycodes.py -------------------------------------------------------------------------------- /python-lophi/lophi/actuation/keypressgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/actuation/keypressgenerator.py -------------------------------------------------------------------------------- /python-lophi/lophi/actuation/rfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/actuation/rfb.py -------------------------------------------------------------------------------- /python-lophi/lophi/capture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/capture/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/capture/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/capture/network.py -------------------------------------------------------------------------------- /python-lophi/lophi/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/command_line.py -------------------------------------------------------------------------------- /python-lophi/lophi/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/data.py -------------------------------------------------------------------------------- /python-lophi/lophi/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/globals.py -------------------------------------------------------------------------------- /python-lophi/lophi/machine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/machine/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/machine/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/machine/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/machine/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/machine/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/network/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/network/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/network/ping.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/control/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/control/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/control/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/control/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/control/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/cpu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/cpu/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/cpu/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/cpu/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/cpu/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/cpu/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/disk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/disk/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/disk/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/disk/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/disk/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/disk/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/memory/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/memory/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/memory/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/memory/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/memory/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/network/__init__.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/network/physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/network/physical.py -------------------------------------------------------------------------------- /python-lophi/lophi/sensors/network/virtual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/sensors/network/virtual.py -------------------------------------------------------------------------------- /python-lophi/lophi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/lophi/utils.py -------------------------------------------------------------------------------- /python-lophi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/python-lophi/setup.py -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/Makefile.objs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/Makefile.objs.patch -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/Makefile.target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/Makefile.target.patch -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/block.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/block.c.patch -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-common.c -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-common.h -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-disk.c -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-disk.h -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-memory.c -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/lophi-hooks-memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/lophi-hooks-memory.h -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/monitor.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/monitor.c.patch -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/patch_qemu_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/patch_qemu_source.sh -------------------------------------------------------------------------------- /qemu-2.0.0+dfsg_patch/qmp-commands.hx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/qemu-2.0.0+dfsg_patch/qmp-commands.hx.patch -------------------------------------------------------------------------------- /release_debs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/release_debs.sh -------------------------------------------------------------------------------- /scripts/fix_kvm_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/scripts/fix_kvm_install.sh -------------------------------------------------------------------------------- /scripts/get_third_party_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/scripts/get_third_party_packages.sh -------------------------------------------------------------------------------- /scripts/install_developer_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/scripts/install_developer_dependencies.sh -------------------------------------------------------------------------------- /scripts/install_tools.sh: -------------------------------------------------------------------------------- 1 | sudo apt-get install virt-manager 2 | -------------------------------------------------------------------------------- /scripts/setup_apt_ppa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/scripts/setup_apt_ppa.sh -------------------------------------------------------------------------------- /scripts/setup_dev_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/scripts/setup_dev_environment.sh -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/clonezilla/MSOFT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/clonezilla/MSOFT.reg -------------------------------------------------------------------------------- /tools/clonezilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/clonezilla/README.md -------------------------------------------------------------------------------- /tools/clonezilla/fix_win_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/clonezilla/fix_win_image.sh -------------------------------------------------------------------------------- /tools/clonezilla/restore_clonezilla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/clonezilla/restore_clonezilla.sh -------------------------------------------------------------------------------- /tools/disk_sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/README.md -------------------------------------------------------------------------------- /tools/disk_sensor/add_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/add_mac.sh -------------------------------------------------------------------------------- /tools/disk_sensor/card_test_relay_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/card_test_relay_server.py -------------------------------------------------------------------------------- /tools/disk_sensor/check_disk_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/check_disk_results.py -------------------------------------------------------------------------------- /tools/disk_sensor/file_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/file_creator.py -------------------------------------------------------------------------------- /tools/disk_sensor/lophi-disk-introspection-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/lophi-disk-introspection-server.py -------------------------------------------------------------------------------- /tools/disk_sensor/print_sectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/print_sectors.py -------------------------------------------------------------------------------- /tools/disk_sensor/send_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/disk_sensor/send_cmd.py -------------------------------------------------------------------------------- /tools/mongodb/clear_mongo.sh: -------------------------------------------------------------------------------- 1 | mongo localhost:27017/lophi_db clear_mongodb.js 2 | -------------------------------------------------------------------------------- /tools/mongodb/clear_mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/mongodb/clear_mongodb.js -------------------------------------------------------------------------------- /tools/rabbitmq/send_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/rabbitmq/send_msg.py -------------------------------------------------------------------------------- /tools/scripts/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/scripts/demo.sh -------------------------------------------------------------------------------- /tools/scripts/get_keycode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/scripts/get_keycode.sh -------------------------------------------------------------------------------- /tools/scripts/list_open_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/scripts/list_open_files.sh -------------------------------------------------------------------------------- /tools/scripts/makediskimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/scripts/makediskimage.sh -------------------------------------------------------------------------------- /tools/scripts/makeusbimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/scripts/makeusbimage.sh -------------------------------------------------------------------------------- /tools/semantic_gap/parse_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/semantic_gap/parse_ports.py -------------------------------------------------------------------------------- /tools/sensors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/sensors/README.md -------------------------------------------------------------------------------- /tools/sensors/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/LO-PHI/HEAD/tools/sensors/ping.py --------------------------------------------------------------------------------