├── .gitignore ├── README.md ├── accounts.py ├── api.py ├── auth.py ├── computers.py ├── deprecated ├── computer_details_by_id.sh ├── computer_search.sh ├── create_user.sh ├── delete_policy_by_id.sh ├── delete_script_by_id.sh ├── get_script_contents.sh ├── get_token.sh ├── jamftoken.py ├── policies.py ├── policy_logs_by_udid.sh ├── push_policy.zsh ├── push_script.sh ├── script6.txt ├── update_privileges.sh └── update_privileges2.sh ├── eve_ui.py ├── images └── Eve.png ├── policies.py ├── requirements.txt ├── scripts.py ├── templates ├── account_create.xml ├── account_update.xml ├── api_client.json ├── api_role.json ├── computer_extension_attribute.xml ├── create_group.xml ├── policy_execute_command_template.json ├── policy_template_execute_command.xml ├── policy_template_run_script.xml └── update_group.xml └── ui └── frontend ├── build ├── asset-manifest.json ├── index.html └── static │ ├── css │ ├── main.c35c6049.css │ └── main.c35c6049.css.map │ └── js │ ├── main.aa8ff3d8.js │ ├── main.aa8ff3d8.js.LICENSE.txt │ └── main.aa8ff3d8.js.map ├── package-lock.json ├── package.json └── src ├── App.css ├── App.js ├── components ├── AccountManager.js ├── ApiManager.js ├── AuthForm.js ├── ComputerManager.js ├── Dashboard.js ├── ExtensionAttributeManager.js ├── PolicyManager.js └── ScriptManager.js ├── index.css ├── index.js └── utils └── apiClient.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/README.md -------------------------------------------------------------------------------- /accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/accounts.py -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/api.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/auth.py -------------------------------------------------------------------------------- /computers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/computers.py -------------------------------------------------------------------------------- /deprecated/computer_details_by_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/computer_details_by_id.sh -------------------------------------------------------------------------------- /deprecated/computer_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/computer_search.sh -------------------------------------------------------------------------------- /deprecated/create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/create_user.sh -------------------------------------------------------------------------------- /deprecated/delete_policy_by_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/delete_policy_by_id.sh -------------------------------------------------------------------------------- /deprecated/delete_script_by_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/delete_script_by_id.sh -------------------------------------------------------------------------------- /deprecated/get_script_contents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/get_script_contents.sh -------------------------------------------------------------------------------- /deprecated/get_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/get_token.sh -------------------------------------------------------------------------------- /deprecated/jamftoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/jamftoken.py -------------------------------------------------------------------------------- /deprecated/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/policies.py -------------------------------------------------------------------------------- /deprecated/policy_logs_by_udid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/policy_logs_by_udid.sh -------------------------------------------------------------------------------- /deprecated/push_policy.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/push_policy.zsh -------------------------------------------------------------------------------- /deprecated/push_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/push_script.sh -------------------------------------------------------------------------------- /deprecated/script6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/script6.txt -------------------------------------------------------------------------------- /deprecated/update_privileges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/update_privileges.sh -------------------------------------------------------------------------------- /deprecated/update_privileges2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/deprecated/update_privileges2.sh -------------------------------------------------------------------------------- /eve_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/eve_ui.py -------------------------------------------------------------------------------- /images/Eve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/images/Eve.png -------------------------------------------------------------------------------- /policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/policies.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/scripts.py -------------------------------------------------------------------------------- /templates/account_create.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/account_create.xml -------------------------------------------------------------------------------- /templates/account_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/account_update.xml -------------------------------------------------------------------------------- /templates/api_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/api_client.json -------------------------------------------------------------------------------- /templates/api_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/api_role.json -------------------------------------------------------------------------------- /templates/computer_extension_attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/computer_extension_attribute.xml -------------------------------------------------------------------------------- /templates/create_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/create_group.xml -------------------------------------------------------------------------------- /templates/policy_execute_command_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/policy_execute_command_template.json -------------------------------------------------------------------------------- /templates/policy_template_execute_command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/policy_template_execute_command.xml -------------------------------------------------------------------------------- /templates/policy_template_run_script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/policy_template_run_script.xml -------------------------------------------------------------------------------- /templates/update_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/templates/update_group.xml -------------------------------------------------------------------------------- /ui/frontend/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/asset-manifest.json -------------------------------------------------------------------------------- /ui/frontend/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/index.html -------------------------------------------------------------------------------- /ui/frontend/build/static/css/main.c35c6049.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/static/css/main.c35c6049.css -------------------------------------------------------------------------------- /ui/frontend/build/static/css/main.c35c6049.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/static/css/main.c35c6049.css.map -------------------------------------------------------------------------------- /ui/frontend/build/static/js/main.aa8ff3d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/static/js/main.aa8ff3d8.js -------------------------------------------------------------------------------- /ui/frontend/build/static/js/main.aa8ff3d8.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/static/js/main.aa8ff3d8.js.LICENSE.txt -------------------------------------------------------------------------------- /ui/frontend/build/static/js/main.aa8ff3d8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/build/static/js/main.aa8ff3d8.js.map -------------------------------------------------------------------------------- /ui/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/package-lock.json -------------------------------------------------------------------------------- /ui/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/package.json -------------------------------------------------------------------------------- /ui/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/App.css -------------------------------------------------------------------------------- /ui/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/App.js -------------------------------------------------------------------------------- /ui/frontend/src/components/AccountManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/AccountManager.js -------------------------------------------------------------------------------- /ui/frontend/src/components/ApiManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/ApiManager.js -------------------------------------------------------------------------------- /ui/frontend/src/components/AuthForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/AuthForm.js -------------------------------------------------------------------------------- /ui/frontend/src/components/ComputerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/ComputerManager.js -------------------------------------------------------------------------------- /ui/frontend/src/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/Dashboard.js -------------------------------------------------------------------------------- /ui/frontend/src/components/ExtensionAttributeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/ExtensionAttributeManager.js -------------------------------------------------------------------------------- /ui/frontend/src/components/PolicyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/PolicyManager.js -------------------------------------------------------------------------------- /ui/frontend/src/components/ScriptManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/components/ScriptManager.js -------------------------------------------------------------------------------- /ui/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/index.css -------------------------------------------------------------------------------- /ui/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/index.js -------------------------------------------------------------------------------- /ui/frontend/src/utils/apiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotOperator/Eve/HEAD/ui/frontend/src/utils/apiClient.js --------------------------------------------------------------------------------