├── Infastructure ├── CxExt.txt ├── README.md ├── cx-init-webapps-on-iis-restart.ps1 ├── cxzip.sh └── redirect-webroot-to-cxwebclient.ps1 ├── Integrations ├── .gitlab-ci-cxcli.yml ├── .gitlab-ci-rest.yml ├── GitLab-CI-CD.md └── JenkinsPipeline.md ├── LICENSE ├── README.md └── RestAPIs ├── CxREST ├── CxREST.py └── __init__.py ├── PostmanCollections ├── README.md └── SAST 8.7 API.postman_collection.json ├── README.md ├── list-scans.py ├── register-engine-with-rest-api.ps1 ├── scan-with-rest-curl.sh └── scan-with-rest.py /Infastructure/CxExt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Infastructure/CxExt.txt -------------------------------------------------------------------------------- /Infastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Infastructure/README.md -------------------------------------------------------------------------------- /Infastructure/cx-init-webapps-on-iis-restart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Infastructure/cx-init-webapps-on-iis-restart.ps1 -------------------------------------------------------------------------------- /Infastructure/cxzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Infastructure/cxzip.sh -------------------------------------------------------------------------------- /Infastructure/redirect-webroot-to-cxwebclient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Infastructure/redirect-webroot-to-cxwebclient.ps1 -------------------------------------------------------------------------------- /Integrations/.gitlab-ci-cxcli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Integrations/.gitlab-ci-cxcli.yml -------------------------------------------------------------------------------- /Integrations/.gitlab-ci-rest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Integrations/.gitlab-ci-rest.yml -------------------------------------------------------------------------------- /Integrations/GitLab-CI-CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Integrations/GitLab-CI-CD.md -------------------------------------------------------------------------------- /Integrations/JenkinsPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/Integrations/JenkinsPipeline.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/README.md -------------------------------------------------------------------------------- /RestAPIs/CxREST/CxREST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/CxREST/CxREST.py -------------------------------------------------------------------------------- /RestAPIs/CxREST/__init__.py: -------------------------------------------------------------------------------- 1 | # just a blank import init 2 | -------------------------------------------------------------------------------- /RestAPIs/PostmanCollections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/PostmanCollections/README.md -------------------------------------------------------------------------------- /RestAPIs/PostmanCollections/SAST 8.7 API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/PostmanCollections/SAST 8.7 API.postman_collection.json -------------------------------------------------------------------------------- /RestAPIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/README.md -------------------------------------------------------------------------------- /RestAPIs/list-scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/list-scans.py -------------------------------------------------------------------------------- /RestAPIs/register-engine-with-rest-api.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/register-engine-with-rest-api.ps1 -------------------------------------------------------------------------------- /RestAPIs/scan-with-rest-curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/scan-with-rest-curl.sh -------------------------------------------------------------------------------- /RestAPIs/scan-with-rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxai/Checkmarx-PowerTools/HEAD/RestAPIs/scan-with-rest.py --------------------------------------------------------------------------------