All Downloads are FREE. Search and download functionalities are using the official Maven repository.

postback-action.cxflow.ps1 Maven / Gradle / Ivy

There is a newer version: 0.6.16
Show newest version
$resultsFile = $args[0]
$resultsFile >> $logFile
$token = $args[1]
$cxURL = $args[2]
[xml]$report = Get-Content -Path $resultsFile
$body = @{
    token = $token
    scanComments = $report.CxXMLResults.scanComments
}
$cxURL += "/" + $report.CxXMLResults.ScanId
Invoke-RestMethod -Method 'Post' -Uri $cxURL -Body $body




© 2015 - 2024 Weber Informatics LLC | Privacy Policy