@itentialopensource/adapter-qualys 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +6 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +170 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +172 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +337 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +9870 -0
- package/adapterBase.js +1787 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/AssetTagging/action.json +64 -0
- package/entities/AssetTagging/schema.json +21 -0
- package/entities/BulkCloudAgentActivation/action.json +24 -0
- package/entities/BulkCloudAgentActivation/schema.json +19 -0
- package/entities/CertViewAPIV1/action.json +44 -0
- package/entities/CertViewAPIV1/schema.json +20 -0
- package/entities/ContinuousMonitoringCMAPIV1/action.json +168 -0
- package/entities/ContinuousMonitoringCMAPIV1/schema.json +26 -0
- package/entities/DownloadAllAlertsFromTheContinuousMonitoringModule/action.json +24 -0
- package/entities/DownloadAllAlertsFromTheContinuousMonitoringModule/schema.json +19 -0
- package/entities/DownloadAllCloudAgentActivationKeys/action.json +24 -0
- package/entities/DownloadAllCloudAgentActivationKeys/schema.json +19 -0
- package/entities/DownloadQualysUserActivityLog/action.json +24 -0
- package/entities/DownloadQualysUserActivityLog/schema.json +19 -0
- package/entities/Events/action.json +210 -0
- package/entities/Events/schema.json +28 -0
- package/entities/FindPlatformVersions/action.json +25 -0
- package/entities/FindPlatformVersions/schema.json +19 -0
- package/entities/GettingStartedWithTheQualysAPI/action.json +44 -0
- package/entities/GettingStartedWithTheQualysAPI/schema.json +31 -0
- package/entities/GlobalITAssetInventoryITAMAIAPIV1/action.json +64 -0
- package/entities/GlobalITAssetInventoryITAMAIAPIV1/schema.json +21 -0
- package/entities/HLDNewActiveReOpenVulnerabilities/action.json +24 -0
- package/entities/HLDNewActiveReOpenVulnerabilities/schema.json +52 -0
- package/entities/Ignore/action.json +128 -0
- package/entities/Ignore/schema.json +35 -0
- package/entities/Incidents/action.json +86 -0
- package/entities/Incidents/schema.json +22 -0
- package/entities/IndicationOfCompromiseIOCUseCases/action.json +46 -0
- package/entities/IndicationOfCompromiseIOCUseCases/schema.json +20 -0
- package/entities/MalwareDetectionMDAPIV1/action.json +65 -0
- package/entities/MalwareDetectionMDAPIV1/schema.json +21 -0
- package/entities/PurgeAssetsIMPORTANTPurgingCannotBeReversed/action.json +24 -0
- package/entities/PurgeAssetsIMPORTANTPurgingCannotBeReversed/schema.json +41 -0
- package/entities/SendReportResultsToSupport/action.json +24 -0
- package/entities/SendReportResultsToSupport/schema.json +52 -0
- package/entities/Step1GenerateAPIGatewayTokenForAuth/action.json +24 -0
- package/entities/Step1GenerateAPIGatewayTokenForAuth/schema.json +19 -0
- package/entities/Step3AddIPToAssetGroup/action.json +24 -0
- package/entities/Step3AddIPToAssetGroup/schema.json +41 -0
- package/entities/Step3EnableVulnerabilityManagementAndOrPolicyComplianceForTheHostAsset/action.json +24 -0
- package/entities/Step3EnableVulnerabilityManagementAndOrPolicyComplianceForTheHostAsset/schema.json +41 -0
- package/entities/Step4AddSiteToScheduledScan/action.json +24 -0
- package/entities/Step4AddSiteToScheduledScan/schema.json +96 -0
- package/entities/Step4AuthenticationRecords/action.json +44 -0
- package/entities/Step4AuthenticationRecords/schema.json +31 -0
- package/entities/Step5GetCertificateScanResults/action.json +24 -0
- package/entities/Step5GetCertificateScanResults/schema.json +19 -0
- package/entities/Step5LaunchScans/action.json +44 -0
- package/entities/Step5LaunchScans/schema.json +53 -0
- package/entities/UserAccountManagement/action.json +24 -0
- package/entities/UserAccountManagement/schema.json +63 -0
- package/entities/V1Old/action.json +167 -0
- package/entities/V1Old/schema.json +26 -0
- package/entities/V2NewWIP/action.json +44 -0
- package/entities/V2NewWIP/schema.json +20 -0
- package/entities/VMReporting/action.json +25 -0
- package/entities/VMReporting/schema.json +19 -0
- package/entities/VulnerabilityManagementVMPolicyCompliancePCAPIV2/action.json +84 -0
- package/entities/VulnerabilityManagementVMPolicyCompliancePCAPIV2/schema.json +33 -0
- package/entities/WebApplicationScanningWASAPIV3/action.json +167 -0
- package/entities/WebApplicationScanningWASAPIV3/schema.json +26 -0
- package/error.json +190 -0
- package/package.json +84 -0
- package/pronghorn.json +5074 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1248 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/Qualys API Collection v 4.0.postman_collection.json-OpenApi3Json.json +11562 -0
- package/report/creationReport.json +1082 -0
- package/sampleProperties.json +195 -0
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +2578 -0
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +5702 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +30 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +184 -0
- package/utils/tbUtils.js +469 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/workflows/README.md +3 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.