Skip to content
Qualys WAS

Qualys WAS

Category: DAST
License: Commercial
Suphi Cankurt
Suphi Cankurt
+8 Years in AppSec
Updated May 19, 2026
6 min read
Key Takeaways
  • Enterprise cloud DAST platform that has scanned 370,000+ web apps and APIs, detecting 25M+ vulnerabilities across its customer base.
  • AI scan optimization achieves 96% detection rate while reducing scan times by up to 80% compared to traditional sequential scanning.
  • TruRisk scoring factors in exploitability, asset criticality, and active threat intelligence for business-context risk prioritization beyond raw CVSS.
  • Part of the Qualys Cloud Platform β€” web app findings correlate with infrastructure vulnerabilities, asset inventory, and policy compliance in one console.
Latest Updates
  • TotalAppSec 2.7 / WAS 1.27 β€” Qualys consolidated WAS into the TotalAppSec release stream and shipped TotalAppSec 2.7 paired with WAS 1.27. source

Qualys Web Application Scanning (WAS) is an enterprise cloud DAST platform built for organizations with large application portfolios. It has scanned 370,000+ web applications and APIs, detecting 25+ million vulnerabilities across its customer base.

Qualys WAS web application inventory dashboard showing discovered assets and risk scores

The platform is part of the Qualys Cloud Platform, which means web application findings correlate with infrastructure vulnerabilities, asset inventory, and policy compliance data in a single console.

FeatureDetails
DeploymentCloud SaaS (scanner appliances for internal apps)
Apps scanned370,000+
Vulnerabilities found25M+
AI detection rate96%
Scan time reductionUp to 80% with AI optimization
CoverageOWASP Top 10, API Security Top 10
API testingREST, SOAP, OpenAPI v3 import
Risk scoringTruRisk (business context)
Malware detectionDeep learning behavioral analysis
PII detectionGDPR, HIPAA, PCI DSS sensitive data

What is Qualys WAS?

Qualys WAS crawls web applications and APIs, sends crafted requests to probe for vulnerabilities, and reports findings with risk-based prioritization through TruRisk scoring.

SQL injection, XSS, authentication flaws, misconfigurations β€” the standard DAST tool detection set.

According to the OWASP Top 10, injection flaws and security misconfiguration remain among the most prevalent web application risks, and Qualys maps its findings directly to these categories.

What separates it from standalone DAST products is the platform integration. Qualys WAS findings sit alongside network vulnerability data, cloud security posture, and asset inventory information.

For enterprise security teams that already use Qualys for infrastructure scanning, adding WAS means one fewer console to manage.

For external applications, scanning runs entirely from the cloud. For internal applications behind firewalls, Qualys provides scanner appliances that execute locally and report back to the cloud platform.

Qualys WAS continuous monitoring dashboard showing scan status and vulnerability trends
Platform Play

Qualys WAS is strongest when used alongside other Qualys modules. If you are not already in the Qualys ecosystem, the platform integration advantage disappears.

Standalone DAST tools may offer better value for teams that only need web application scanning.

What are Qualys WAS’s key features?

AI Scan Optimization
Machine learning adapts crawling behavior to each application’s architecture. Qualys reports 96% detection rate and up to 80% reduction in scan times compared to traditional sequential scanning.
TruRisk Scoring
Risk scores that factor in vulnerability severity, exploitability, asset criticality, active exploitation data, and remediation complexity. Prioritizes by business impact rather than raw CVSS numbers.
API Security Testing

Tests REST and SOAP APIs. Imports OpenAPI v3 specs to map all documented endpoints.

Checks for OWASP API Security Top 10 including broken object-level authorization and excessive data exposure. Detects spec drift.

Malware Detection
Behavioral analysis using deep learning identifies compromised websites serving malicious content. Catches zero-day threats that signature-based scanners miss. Alerts before search engines blacklist infected sites.
PII Exposure Detection
Scans for exposed personally identifiable information relevant to GDPR, HIPAA, and PCI DSS. Flags sensitive data in application responses that should not be publicly accessible.
Application Discovery
Automatically finds web applications across your environment that the security team may not know about. Scans external-facing apps, internal apps via scanner appliances, and cloud-hosted apps in AWS, Azure, and GCP.

Authentication support

Qualys WAS supports multiple authentication methods for testing protected applications:

  • Form-based β€” Record login sequences for web applications
  • HTTP Basic/Digest β€” Direct credential injection
  • OAuth 2.0 β€” Configure OAuth flows for API testing
  • Client certificates β€” Mutual TLS for certificate-based auth
  • Custom headers β€” API keys, bearer tokens, and custom auth schemes
Qualys WAS remediation workflow showing vulnerability prioritization and fix tracking

What does Qualys WAS integrate with?

CI/CD
Jenkins Jenkins
Azure DevOps Azure DevOps
GitHub Actions GitHub Actions
Bamboo Bamboo
Ticketing & SIEM
ServiceNow ServiceNow
Jira Jira
Splunk Splunk
Manual Testing Import
Burp Suite Burp Suite
ZAP ZAP
BugCrowd BugCrowd
Scan Consolidation
Qualys WAS can import manual testing results from Burp Suite, ZAP, and BugCrowd. This lets you combine automated DAST findings with manual pentest data in a single view.

How much does Qualys WAS cost?

Qualys does not publish list prices for WAS on qualys.com. Pricing depends on the number of web applications and APIs licensed, deployment scope (cloud-only vs scanner appliances for internal apps), and whether WAS is bundled with other Qualys Cloud Platform modules like VMDR or Policy Compliance.

To get a quote, contact Qualys sales through qualys.com β€” Qualys WAS is licensed by URL/web application count, with separate pricing for scanner appliances if you need to scan internal apps behind firewalls.

Per AppSec Santa policy, I do not publish dollar amounts unless the vendor displays them publicly. Qualys uses contact-sales pricing across the platform, so any third-party numbers you see online are unverified estimates rather than authoritative quotes.

The license model favors organizations already using other Qualys modules β€” bundle pricing reduces the per-module cost compared to buying WAS standalone.

How do I get started with Qualys WAS?

1
Provision Qualys WAS β€” Activate WAS within the Qualys Cloud Platform. No on-premises infrastructure needed for external scanning.
2
Add web applications β€” Specify URLs and authentication details. Use the API or web console to create web application records.
3
Configure scan profiles β€” Set scan scope, authentication, crawl limits, and scheduling. Assign TruRisk asset criticality levels for risk-based prioritization.
4
Run scans β€” Execute manually, on schedule, or trigger via CI/CD integration. For internal apps, deploy a Qualys scanner appliance inside your network.
5
Review with TruRisk β€” Findings are scored by business risk, not just CVSS. Use the Qualys platform to correlate web app vulnerabilities with infrastructure findings.

API usage

# Create a web application
curl -X POST "https://qualysapi.qualys.com/qps/rest/3.0/create/was/webapp" \
  -H "Authorization: Basic ${QUALYS_CREDENTIALS}" \
  -H "Content-Type: application/xml" \
  -d '<?xml version="1.0" encoding="UTF-8"?>
      <ServiceRequest>
        <data>
          <WebApp>
            <name>Production App</name>
            <url>https://app.example.com</url>
          </WebApp>
        </data>
      </ServiceRequest>'

# Launch a vulnerability scan
curl -X POST "https://qualysapi.qualys.com/qps/rest/3.0/launch/was/wasscan" \
  -H "Authorization: Basic ${QUALYS_CREDENTIALS}" \
  -H "Content-Type: application/xml" \
  -d '<?xml version="1.0" encoding="UTF-8"?>
      <ServiceRequest>
        <data>
          <WasScan>
            <name>Weekly Scan</name>
            <type>VULNERABILITY</type>
            <target>
              <webApp><id>67890</id></webApp>
            </target>
          </WasScan>
        </data>
      </ServiceRequest>'
Qualys WAS API β€” creating a web app record and launching a vulnerability scan via the REST API
Qualys TruRisk platform dashboard showing risk scores across web applications

When to use Qualys WAS

Qualys WAS makes sense for enterprises already on the Qualys Cloud Platform. The unified view across web apps, infrastructure, and cloud posture is its main differentiator.

TruRisk scoring adds business context that raw CVSS numbers lack.

It is also a reasonable choice for organizations with large application portfolios (hundreds or thousands of apps) that need automated discovery and scheduled scanning at scale.

NIST SP 800-53 recommends regular automated vulnerability assessments as part of a continuous monitoring program, and Qualys WAS fits that requirement well for web applications.

For smaller teams or those not in the Qualys ecosystem, the platform may be more than you need.

Standalone DAST tools like StackHawk or Nuclei offer lower entry points and can be more practical for teams scanning a handful of applications.

See our list of free DAST tools for open-source alternatives, or read IAST vs DAST to understand how runtime instrumentation compares to Qualys’s external scanning approach.

What are alternatives to Qualys WAS?

If the platform-fit case for Qualys WAS does not apply (you are not in the Qualys ecosystem, or you need a smaller deployment), four alternatives cover most adjacent buyer shapes:

  • Tenable Web App Scanning β€” closest peer to Qualys WAS in shape and audience. Both target enterprise teams running large infrastructure scanning programs alongside web app scanning. Choose Tenable if your existing infrastructure scanner is Tenable.io rather than Qualys VMDR.
  • Invicti β€” enterprise DAST with proof-based scanning that confirms vulnerabilities by safely exploiting them. Stronger when triage cost is the main pain point and you want near-zero false positives without manual verification.
  • Acunetix β€” Invicti’s SMB-focused sibling using the same scanning engine. Lower entry point, simpler configuration, per-FQDN licensing β€” better for teams with under 50 scan targets.
  • Rapid7 InsightAppSec β€” cloud DAST inside the broader Rapid7 Insight platform. Fits organizations already using Rapid7 InsightVM for vulnerability management, similar to the Qualys platform-bundle argument.

For the broader landscape, browse the DAST tools directory on AppSec Santa.

Frequently Asked Questions

What is Qualys WAS?
Qualys Web Application Scanning is an enterprise cloud DAST platform that tests web applications and APIs for security vulnerabilities. It has scanned 370,000+ web apps and APIs, detecting 25+ million vulnerabilities. Part of the broader Qualys Cloud Platform for unified vulnerability management.
How does Qualys WAS use AI?
Qualys WAS uses machine learning to optimize scan patterns, achieving a 96% detection rate while reducing scan times by up to 80% on large applications. The AI adapts crawling behavior based on application architecture and prioritizes likely vulnerability patterns.
What is TruRisk scoring in Qualys WAS?
TruRisk is Qualys’s risk quantification system. It factors in vulnerability severity, exploitability, asset criticality, active threat intelligence, and remediation complexity to produce a business-context risk score rather than a raw CVSS number.
Does Qualys WAS test APIs?
Yes. Qualys WAS tests REST and SOAP APIs, imports OpenAPI v3 specifications to map endpoints, and checks for OWASP API Security Top 10 vulnerabilities including broken object-level authorization and excessive data exposure. It also detects API specification drift.
What CI/CD integrations does Qualys WAS support?
Qualys WAS integrates with Jenkins, Azure DevOps, GitHub Actions, TeamCity, and Bamboo for CI/CD. It also connects to ServiceNow, Jira, and Splunk for ticketing and SIEM, and can ingest manual testing data from Burp Suite, ZAP, and BugCrowd.