Loading...
Application security tools and solutions for securing web applications, mobile apps, and software throughout the development lifecycle.
Browse 804 application security tools
Static security code scanner (SAST) for Node.js applications with Docker support and integrations with Slack.
A Node.js library for validating environment variables and providing immutable access to configuration values in applications.
Inspeckage is a dynamic analysis tool for Android applications that provides runtime behavior monitoring through API hooking and real-time system interaction tracking.
CakeFuzzer is an automated vulnerability discovery tool specifically designed for identifying security issues in CakePHP web applications with minimal false positives.
WebGoat is an OWASP-maintained deliberately insecure web application designed to teach web application security through hands-on exercises with intentional vulnerabilities.
A tool for translating Dalvik bytecode to equivalent Java bytecode, allowing Java analysis tools to analyze Android applications.
A key and secret validation workflow tool built in Rust, supporting over 30 providers and exporting to JSON or CSV.
A CLI tool that performs security assessments on Joi validator schemas by testing them against various attack vectors including XSS, SQL injection, RCE, and SSRF.
A command-line Android APK vulnerability analyzer written in Rust that decompresses and scans APK files using rule-based detection to identify security issues.
iOS Reverse Engineering Toolkit for automating common tasks in iOS penetration testing.
A CLI tool for signing and verifying npm and yarn packages.
A serverless application that demonstrates common serverless security flaws and weaknesses
NodeGoat provides an environment to learn and address OWASP Top 10 security risks in Node.js web applications.
AuditJS is a command-line tool that scans JavaScript projects for known vulnerabilities and outdated packages in npm dependencies using the OSS Index API or Nexus IQ Server.
A comprehensive Android application analysis tool that provides device management, logcat analysis, file examination, and integration with security frameworks like MobSF and JD-GUI.
ConDroid is a concolic execution framework for Android applications that automates dynamic analysis by driving execution to specific code locations without manual interaction.
A security-focused general purpose memory allocator providing the malloc API with hardening against heap corruption vulnerabilities.
Grafeas is an API specification for managing and auditing metadata about software resources across the software supply chain.
A plugin for viewing, detecting weak configurations, and generating Content Security Policy headers.
GuardDog is a CLI tool that identifies malicious PyPI and npm packages using heuristics-based analysis of source code and metadata.
Python tool for monitoring user-select APIs in Android apps using Frida.
RiskInDroid is a machine learning-based tool that performs quantitative risk analysis of Android applications by reverse engineering bytecode and analyzing permission usage to generate numeric risk scores.
A modular Python tool that obfuscates Android applications by manipulating decompiled smali code, resources, and manifest files without requiring source code access.
804 tools across 14 specializations · 251 free, 553 commercial
Static Application Security Testing
Static Application Security Testing (SAST) tools that analyze source code for vulnerabilities using taint and dataflow analysis during development.
Secrets Detection
Tools that find and scan for leaked secrets, credentials, API keys, and tokens hardcoded in source code, repositories, and CI/CD pipelines.
Software Composition Analysis
Software Composition Analysis (SCA) tools for identifying vulnerabilities and license risks in open source dependencies and third-party libraries, with SBOM generation.
Common questions about Application Security tools, selection guides, pricing, and comparisons.
SAST (Static Application Security Testing) analyzes source code without running the application, catching vulnerabilities early in development. DAST (Dynamic Application Security Testing) tests running applications by sending requests and analyzing responses, finding runtime vulnerabilities. IAST (Interactive Application Security Testing) combines both by instrumenting the application during testing, providing real-time analysis with lower false positive rates than SAST or DAST alone.
A mature AppSec program typically includes: SAST for code-level vulnerability detection, SCA for open-source dependency risks, DAST for runtime testing, API security for protecting endpoints, secure code training for developers, and ASPM to unify visibility across all these tools. Start with SCA and SAST as they catch the most common vulnerabilities earliest in the development lifecycle.
Shift-left security means integrating security testing earlier in the software development lifecycle, ideally at the coding and CI/CD stages rather than waiting for production deployment. This approach uses tools like SAST, SCA, and IDE security plugins to catch vulnerabilities before they reach production, reducing remediation cost by up to 100x compared to finding issues in production.
SCA focuses specifically on identifying vulnerabilities in third-party libraries, open-source components, and software dependencies your application uses. SAST analyzes your own source code for security flaws. Since modern applications are 70-90% open-source code, SCA is essential for catching vulnerabilities in components you did not write but are responsible for securing.