Home/Free Application Security Tools

Free Application Security Tools

Free and open source tools for securing applications throughout the SDLC. Browse SAST, DAST, SCA, and API security tools for vulnerability scanning, code analysis, and runtime protection.

500 tools·75 sub-categories·Updated April 2026

Showing 24 of 500 tools

PayloadsAllTheThings icon

PayloadsAllTheThings

swisskyrepo/PayloadsAllTheThings

Tool

A list of useful payloads and bypass for Web Application Security and Pentest/CTF

74.4K
3 months ago
hoppscotch icon

hoppscotch

hoppscotch/hoppscotch

Tool

Open source API development ecosystem - https://hoppscotch.io (open-source alternative to Postman, Insomnia)

72.1K
10 months ago
ImHex icon

ImHex

WerWolv/ImHex

Tool

🔍 A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM.

52.3K
3 months ago
termux-app icon

termux-app

termux/termux-app

Tool

Termux - a terminal emulator application for Android OS extendible by variety of packages.

42.1K
10 months ago
sentry icon

sentry

getsentry/sentry

Tool

Developer-first error tracking and performance monitoring

41.1K
10 months ago
CheatSheetSeries icon

CheatSheetSeries

OWASP/CheatSheetSeries

Documentation

The OWASP Cheat Sheet Series was created to provide a concise collection of high value information on specific application security topics.

31.1K
3 months ago
openzeppelin-contracts icon

openzeppelin-contracts

OpenZeppelin/openzeppelin-contracts

Library/SDK

OpenZeppelin Contracts is a library for secure smart contract development.

26.9K
3 months ago
radare2 icon

radare2

radareorg/radare2

Framework

UNIX-like reverse engineering framework and command-line toolset

22.9K
3 months ago
security-guide-for-developers icon

security-guide-for-developers

FallibleInc/security-guide-for-developers

Documentation

Security Guide for Developers

21.0K
8 months ago
strix icon

strix

usestrix/strix

Tool

Open-source AI agents for penetration testing

19.2K
3 months ago
javascript-obfuscator icon

javascript-obfuscator

javascript-obfuscator/javascript-obfuscator

Tool

A powerful obfuscator for JavaScript and Node.js

15.1K
8 months ago
bytecode-viewer icon

bytecode-viewer

Konloch/bytecode-viewer

Tool

A Java 8+ Jar & Android APK Reverse Engineering Suite (Decompiler, Editor, Debugger & More)

15.0K
10 months ago
yii2 icon

yii2

yiisoft/yii2

Framework

Yii 2: The Fast, Secure and Professional PHP Framework

14.3K
10 months ago
dirsearch icon

dirsearch

maurosoria/dirsearch

Tool

Web path scanner

13.8K
2 months ago
secguide icon

secguide

Tencent/secguide

Documentation

面向开发人员梳理的代码安全指南

13.5K
8 months ago
Reverse-Engineering icon

Reverse-Engineering

mytechnotalent/Reverse-Engineering

Educational Resource

A FREE comprehensive reverse engineering tutorial covering x86, x64, 32-bit/64-bit ARM, 8-bit AVR and 32-bit RISC-V architectures.

13.1K
3 months ago
pytest icon

pytest

pytest-dev/pytest

Framework

The pytest framework makes it easy to write small tests, yet scales to support complex functional testing

12.8K
10 months ago
rubocop icon

rubocop

rubocop/rubocop

Tool

A Ruby static code analyzer and formatter, based on the community Ruby style guide.

12.7K
10 months ago
DVWA icon

DVWA

digininja/DVWA

Tool

Damn Vulnerable Web Application (DVWA)

12.5K
3 months ago
juice-shop icon

juice-shop

juice-shop/juice-shop

Educational Resource

OWASP Juice Shop: Probably the most modern and sophisticated insecure web application

12.3K
3 months ago
nightwatch icon

nightwatch

nightwatchjs/nightwatch

Framework

Integrated end-to-end testing framework written in Node.js and using W3C Webdriver API. Developed at @browserstack

11.9K
10 months ago
promptfoo icon

promptfoo

promptfoo/promptfoo

Tool

Test your prompts, agents, and RAGs. AI Red teaming, pentesting, and vulnerability scanning for LLMs. Compare performance of GPT, Claude, Gemini, Llama, and more. Simple declarative configs with command line and CI/CD integration.

9.9K
3 months ago
swagger-editor icon

swagger-editor

swagger-api/swagger-editor

Tool

Swagger Editor

9.2K
10 months ago
gosec icon

gosec

securego/gosec

Tool

Go security checker

8.6K
3 months ago

Can't find the right tool?

Describe what you need in plain English and our AI will find the best match from 10,000+ security tools.

Frequently Asked Questions

What is the difference between SAST and DAST?

SAST (Static Application Security Testing) analyzes source code without running the application, finding vulnerabilities early in development. DAST (Dynamic Application Security Testing) tests a running application from the outside, simulating real attacks. Both are complementary — SAST finds code-level issues, DAST finds runtime vulnerabilities.

What are the best free SAST tools?

Top free SAST tools include Semgrep (multi-language pattern matching), Bandit (Python security linting), SpotBugs with FindSecBugs (Java), Brakeman (Ruby on Rails), and SonarQube Community Edition. These integrate into CI/CD pipelines to catch vulnerabilities before deployment.

What is SCA and why does it matter?

SCA (Software Composition Analysis) identifies vulnerabilities in open source dependencies. With 80%+ of modern applications built on open source components, SCA tools like OWASP Dependency-Check, Grype, and Syft are essential for understanding your software supply chain risk.

How do I secure APIs?

Use tools like OWASP ZAP or Burp Suite for API testing, implement OAuth 2.0 and OpenID Connect for authentication, enforce rate limiting, validate all inputs, and scan API schemas with tools like Spectral. The OWASP API Security Top 10 is the definitive reference for API vulnerabilities.