├── .gitignore ├── LICENSE ├── README.md ├── blade_runner ├── __init__.py ├── controllers │ ├── __init__.py │ ├── controller.py │ ├── dual_verify_controller.py │ ├── entry_controller.py │ ├── main_controller.py │ ├── search_controller.py │ └── verification_controller.py ├── dependencies │ ├── __init__.py │ ├── daemon │ │ ├── __init__.py │ │ ├── _metadata.py │ │ ├── daemon.py │ │ ├── pidfile.py │ │ └── runner.py │ ├── management_tools │ │ ├── __init__.py │ │ ├── app_info.py │ │ ├── filelock.py │ │ ├── fs_analysis.py │ │ ├── loggers.py │ │ ├── plist_editor.py │ │ └── slack.py │ ├── pexpect │ │ ├── ANSI.py │ │ ├── FSM.py │ │ ├── __init__.py │ │ ├── _async.py │ │ ├── bashrc.sh │ │ ├── exceptions.py │ │ ├── expect.py │ │ ├── fdpexpect.py │ │ ├── popen_spawn.py │ │ ├── pty_spawn.py │ │ ├── pxssh.py │ │ ├── replwrap.py │ │ ├── run.py │ │ ├── screen.py │ │ ├── spawnbase.py │ │ └── utils.py │ ├── ptyprocess │ │ ├── __init__.py │ │ ├── _fork_pty.py │ │ ├── ptyprocess.py │ │ └── util.py │ └── tempapp.py ├── deprecated │ └── __init__.py ├── document │ ├── __init__.py │ └── document.py ├── jamf_pro │ ├── __init__.py │ ├── computer.py │ ├── jss_doc.py │ ├── jss_server.py │ └── params.py ├── runner.py ├── secure_erase │ ├── __init__.py │ ├── secure_erase.sh │ └── secure_erase_internals.py ├── slack │ ├── __init__.py │ ├── slackify.py │ └── slackify_reminder_daemon.py ├── user_actions │ ├── __init__.py │ └── user_actions.py ├── views │ ├── __init__.py │ ├── dual_verify_view.py │ ├── entry_view.py │ ├── main_view.py │ └── verification_view.py └── windows │ ├── __init__.py │ ├── msg_box.py │ └── stall_window.py ├── config ├── jamf_pro_configs │ ├── .gitkeep │ └── jamf_pro.plist ├── offboard_configs │ ├── .gitkeep │ └── Default.xml ├── print_config │ └── print.plist ├── python_bin_config │ └── python_bin.plist ├── search_params_configs │ ├── .gitkeep │ └── search_params.plist ├── slack_configs │ ├── .gitkeep │ └── slack.plist └── verify_params_configs │ ├── .gitkeep │ └── verify_params.plist ├── rsrc ├── images │ ├── Blade Runner App Icon.png │ ├── BladeRunner.gif │ ├── BladeRunner.icns │ ├── blade_runner_logo.gif │ ├── jssdoc.png │ ├── jssdoc_add_data.png │ ├── jssdoc_name_removed.png │ ├── jssdoc_review.png │ ├── offboard_scene_all_wbg copy.png │ ├── offboard_scene_all_wbg.png │ ├── offboard_scene_drop_down_marked_wbg.png │ ├── offboard_scene_drop_down_wbg.png │ ├── offboard_scene_marked_all_wbg.png │ ├── offboard_scene_marked_wbg.png │ ├── offboard_scene_wbg.png │ ├── selection_scene_wbg.png │ ├── selection_scene_wobg.png │ ├── settings_scene_wbg.png │ └── verify_all_wbg.png └── main_applescript │ └── main.applescript └── test ├── config ├── jamf_pro_configs │ ├── .gitkeep │ └── jamf_pro.plist ├── offboard_configs │ ├── .gitkeep │ └── Default.xml ├── print_config │ └── print.plist ├── search_params_configs │ ├── .gitkeep │ └── search_params.plist ├── slack_configs │ ├── .gitkeep │ └── slack.plist └── verify_params_configs │ ├── .gitkeep │ └── verify_params.plist ├── test_blade_runner_manual.py ├── test_dual_verify_controller.py ├── test_secure_erase_internals.py └── test_verification_controller.py /.gitignore: -------------------------------------------------------------------------------- 1 | /private 2 | *.pyc 3 | *~ 4 | .idea 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/README.md -------------------------------------------------------------------------------- /blade_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/controllers/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/controller.py -------------------------------------------------------------------------------- /blade_runner/controllers/dual_verify_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/dual_verify_controller.py -------------------------------------------------------------------------------- /blade_runner/controllers/entry_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/entry_controller.py -------------------------------------------------------------------------------- /blade_runner/controllers/main_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/main_controller.py -------------------------------------------------------------------------------- /blade_runner/controllers/search_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/search_controller.py -------------------------------------------------------------------------------- /blade_runner/controllers/verification_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/controllers/verification_controller.py -------------------------------------------------------------------------------- /blade_runner/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/dependencies/daemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/daemon/__init__.py -------------------------------------------------------------------------------- /blade_runner/dependencies/daemon/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/daemon/_metadata.py -------------------------------------------------------------------------------- /blade_runner/dependencies/daemon/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/daemon/daemon.py -------------------------------------------------------------------------------- /blade_runner/dependencies/daemon/pidfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/daemon/pidfile.py -------------------------------------------------------------------------------- /blade_runner/dependencies/daemon/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/daemon/runner.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/__init__.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/app_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/app_info.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/filelock.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/fs_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/fs_analysis.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/loggers.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/plist_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/plist_editor.py -------------------------------------------------------------------------------- /blade_runner/dependencies/management_tools/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/management_tools/slack.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/ANSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/ANSI.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/FSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/FSM.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/__init__.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/_async.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/bashrc.sh -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/exceptions.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/expect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/expect.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/fdpexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/fdpexpect.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/popen_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/popen_spawn.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/pty_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/pty_spawn.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/pxssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/pxssh.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/replwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/replwrap.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/run.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/screen.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/spawnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/spawnbase.py -------------------------------------------------------------------------------- /blade_runner/dependencies/pexpect/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/pexpect/utils.py -------------------------------------------------------------------------------- /blade_runner/dependencies/ptyprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/ptyprocess/__init__.py -------------------------------------------------------------------------------- /blade_runner/dependencies/ptyprocess/_fork_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/ptyprocess/_fork_pty.py -------------------------------------------------------------------------------- /blade_runner/dependencies/ptyprocess/ptyprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/ptyprocess/ptyprocess.py -------------------------------------------------------------------------------- /blade_runner/dependencies/ptyprocess/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/ptyprocess/util.py -------------------------------------------------------------------------------- /blade_runner/dependencies/tempapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/dependencies/tempapp.py -------------------------------------------------------------------------------- /blade_runner/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/document/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/document/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/document/document.py -------------------------------------------------------------------------------- /blade_runner/jamf_pro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/jamf_pro/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/jamf_pro/computer.py -------------------------------------------------------------------------------- /blade_runner/jamf_pro/jss_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/jamf_pro/jss_doc.py -------------------------------------------------------------------------------- /blade_runner/jamf_pro/jss_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/jamf_pro/jss_server.py -------------------------------------------------------------------------------- /blade_runner/jamf_pro/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/jamf_pro/params.py -------------------------------------------------------------------------------- /blade_runner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/runner.py -------------------------------------------------------------------------------- /blade_runner/secure_erase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/secure_erase/secure_erase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/secure_erase/secure_erase.sh -------------------------------------------------------------------------------- /blade_runner/secure_erase/secure_erase_internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/secure_erase/secure_erase_internals.py -------------------------------------------------------------------------------- /blade_runner/slack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/slack/slackify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/slack/slackify.py -------------------------------------------------------------------------------- /blade_runner/slack/slackify_reminder_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/slack/slackify_reminder_daemon.py -------------------------------------------------------------------------------- /blade_runner/user_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/user_actions/user_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/user_actions/user_actions.py -------------------------------------------------------------------------------- /blade_runner/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/views/dual_verify_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/views/dual_verify_view.py -------------------------------------------------------------------------------- /blade_runner/views/entry_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/views/entry_view.py -------------------------------------------------------------------------------- /blade_runner/views/main_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/views/main_view.py -------------------------------------------------------------------------------- /blade_runner/views/verification_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/views/verification_view.py -------------------------------------------------------------------------------- /blade_runner/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blade_runner/windows/msg_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/windows/msg_box.py -------------------------------------------------------------------------------- /blade_runner/windows/stall_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/blade_runner/windows/stall_window.py -------------------------------------------------------------------------------- /config/jamf_pro_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/jamf_pro_configs/jamf_pro.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/jamf_pro_configs/jamf_pro.plist -------------------------------------------------------------------------------- /config/offboard_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/offboard_configs/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/offboard_configs/Default.xml -------------------------------------------------------------------------------- /config/print_config/print.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/print_config/print.plist -------------------------------------------------------------------------------- /config/python_bin_config/python_bin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/python_bin_config/python_bin.plist -------------------------------------------------------------------------------- /config/search_params_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/search_params_configs/search_params.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/search_params_configs/search_params.plist -------------------------------------------------------------------------------- /config/slack_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/slack_configs/slack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/slack_configs/slack.plist -------------------------------------------------------------------------------- /config/verify_params_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/verify_params_configs/verify_params.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/config/verify_params_configs/verify_params.plist -------------------------------------------------------------------------------- /rsrc/images/Blade Runner App Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/Blade Runner App Icon.png -------------------------------------------------------------------------------- /rsrc/images/BladeRunner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/BladeRunner.gif -------------------------------------------------------------------------------- /rsrc/images/BladeRunner.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/BladeRunner.icns -------------------------------------------------------------------------------- /rsrc/images/blade_runner_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/blade_runner_logo.gif -------------------------------------------------------------------------------- /rsrc/images/jssdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/jssdoc.png -------------------------------------------------------------------------------- /rsrc/images/jssdoc_add_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/jssdoc_add_data.png -------------------------------------------------------------------------------- /rsrc/images/jssdoc_name_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/jssdoc_name_removed.png -------------------------------------------------------------------------------- /rsrc/images/jssdoc_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/jssdoc_review.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_all_wbg copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_all_wbg copy.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_all_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_all_wbg.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_drop_down_marked_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_drop_down_marked_wbg.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_drop_down_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_drop_down_wbg.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_marked_all_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_marked_all_wbg.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_marked_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_marked_wbg.png -------------------------------------------------------------------------------- /rsrc/images/offboard_scene_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/offboard_scene_wbg.png -------------------------------------------------------------------------------- /rsrc/images/selection_scene_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/selection_scene_wbg.png -------------------------------------------------------------------------------- /rsrc/images/selection_scene_wobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/selection_scene_wobg.png -------------------------------------------------------------------------------- /rsrc/images/settings_scene_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/settings_scene_wbg.png -------------------------------------------------------------------------------- /rsrc/images/verify_all_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/images/verify_all_wbg.png -------------------------------------------------------------------------------- /rsrc/main_applescript/main.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/rsrc/main_applescript/main.applescript -------------------------------------------------------------------------------- /test/config/jamf_pro_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/jamf_pro_configs/jamf_pro.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/jamf_pro_configs/jamf_pro.plist -------------------------------------------------------------------------------- /test/config/offboard_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/offboard_configs/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/offboard_configs/Default.xml -------------------------------------------------------------------------------- /test/config/print_config/print.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/print_config/print.plist -------------------------------------------------------------------------------- /test/config/search_params_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/search_params_configs/search_params.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/search_params_configs/search_params.plist -------------------------------------------------------------------------------- /test/config/slack_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/slack_configs/slack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/slack_configs/slack.plist -------------------------------------------------------------------------------- /test/config/verify_params_configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/verify_params_configs/verify_params.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/config/verify_params_configs/verify_params.plist -------------------------------------------------------------------------------- /test/test_blade_runner_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/test_blade_runner_manual.py -------------------------------------------------------------------------------- /test/test_dual_verify_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/test_dual_verify_controller.py -------------------------------------------------------------------------------- /test/test_secure_erase_internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/test_secure_erase_internals.py -------------------------------------------------------------------------------- /test/test_verification_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/univ-of-utah-marriott-library-apple/blade_runner/HEAD/test/test_verification_controller.py --------------------------------------------------------------------------------