├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── bit9PlatformAPI ├── README.md ├── docs └── Bit9 Platform API v1.pdf └── examples ├── README.md ├── VirusTotalConnector.py ├── bit9_list_of_comps_and_enf_levels.py ├── common ├── __init__.py └── bit9api.py ├── connectors ├── LastLine.py ├── VirusTotal.py └── __init__.py ├── samples ├── ApproveFiles.py ├── CBSensorReport.py ├── LocalApproval.py ├── MoveComputers.py ├── Templating.py ├── TranslateSyncFlags.py ├── change_diagnostics.py └── initiate_cache_check.py └── virustotal.ini.example /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/README.md -------------------------------------------------------------------------------- /bit9PlatformAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/README.md -------------------------------------------------------------------------------- /bit9PlatformAPI/docs/Bit9 Platform API v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/docs/Bit9 Platform API v1.pdf -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/README.md -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/VirusTotalConnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/VirusTotalConnector.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/bit9_list_of_comps_and_enf_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/bit9_list_of_comps_and_enf_levels.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/common/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'droglic' 2 | -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/common/bit9api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/common/bit9api.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/connectors/LastLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/connectors/LastLine.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/connectors/VirusTotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/connectors/VirusTotal.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/ApproveFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/ApproveFiles.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/CBSensorReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/CBSensorReport.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/LocalApproval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/LocalApproval.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/MoveComputers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/MoveComputers.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/Templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/Templating.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/TranslateSyncFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/TranslateSyncFlags.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/change_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/change_diagnostics.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/samples/initiate_cache_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/samples/initiate_cache_check.py -------------------------------------------------------------------------------- /bit9PlatformAPI/examples/virustotal.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/bit9platform/HEAD/bit9PlatformAPI/examples/virustotal.ini.example --------------------------------------------------------------------------------