> ## Documentation Index
> Fetch the complete documentation index at: https://trickest.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scanners Tools

> Explore a collection of powerful and efficient tools in the Scanners category to enhance your productivity and security.

export const ToolCard = ({cardTitle, description, iframeUrl, href, category}) => <a href={href} style={{
  textDecoration: 'none'
}}>
    <div style={{
  background: 'linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%)',
  borderRadius: '16px',
  overflow: 'hidden',
  transition: 'transform 0.4s cubic-bezier(0.215,0.61,0.355,1), box-shadow 0.3s ease',
  height: '35rem',
  display: 'flex',
  marginBottom: '16px',
  flexDirection: 'column',
  border: '1px solid rgba(255, 255, 255, 0.1)',
  boxShadow: '0px 8px 32px -2px rgba(0, 0, 0, 0.25), 0px 1px 2px 0px rgba(255, 255, 255, 0.07)',
  backdropFilter: 'blur(8px)',
  perspective: '1000px'
}} onMouseOver={e => {
  e.currentTarget.style.boxShadow = '0 8px 32px -2px rgba(0, 0, 0, 0.4)';
  e.currentTarget.style.transform = 'translateY(-4px) scale(1.02)';
}} onMouseOut={e => {
  e.currentTarget.style.boxShadow = '0px 8px 32px -2px rgba(0, 0, 0, 0.25), 0px 1px 2px 0px rgba(255, 255, 255, 0.07)';
  e.currentTarget.style.transform = 'translateY(0) scale(1)';
}}>
      <div style={{
  width: '100%',
  height: '300px',
  borderBottom: '1px solid rgba(255, 255, 255, 0.1)',
  position: 'relative'
}}>
        <div style={{
  position: 'absolute',
  top: 0,
  left: 0,
  right: 0,
  bottom: 0,
  background: 'linear-gradient(45deg, rgba(0, 163, 255, 0.1) 0%, rgba(0, 101, 255, 0.05) 100%)'
}} />
        <iframe src={iframeUrl} style={{
  width: '100%',
  height: '100%',
  border: 'none',
  position: 'relative',
  zIndex: 1,
  background: 'transparent'
}} scrolling="no" />
      </div>

      <div style={{
  padding: '1.5rem',
  display: 'flex',
  flexDirection: 'column',
  height: 'calc(100% - 300px)',
  gap: '8px'
}}>
        <h2 style={{
  color: '#ffffff',
  fontSize: '1.4rem',
  margin: 0,
  fontWeight: '600',
  lineHeight: '1.3',
  height: '1.8rem',
  overflow: 'hidden',
  textOverflow: 'ellipsis',
  display: '-webkit-box',
  WebkitLineClamp: 1,
  WebkitBoxOrient: 'vertical'
}}>
          {cardTitle}
        </h2>

        <p style={{
  color: 'rgba(163, 179, 188, 0.8)',
  fontSize: '1rem',
  margin: 0,
  lineHeight: '1.5',
  flex: '1 1 auto',
  overflowY: 'auto',
  paddingRight: '8px'
}}>
          {description}
        </p>
      </div>
    </div>
  </a>;

<CardGroup cols={2}>
  <ToolCard cardTitle="airixss" description="Finding XSS during recon" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/1d4ebadc-22d1-4bd6-b593-e4a54a650c9e.json" href="/docs/library/scanners/tools/airixss" category="Scanners" />

  <ToolCard cardTitle="alterx" description="Fast and customizable vulnerability scanner based on simple YAML based DSL." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/ae0bccba-90c8-42f5-8319-37ed2b23d4e4.json" href="/docs/library/scanners/tools/alterx" category="Scanners" />

  <ToolCard cardTitle="bomber" description="Scans SBoMs for security vulnerabilities" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/5aae5daf-c4b4-40ec-ac0c-e81ba360793d.json" href="/docs/library/scanners/tools/bomber" category="Scanners" />

  <ToolCard cardTitle="chopchop" description="ChopChop is a command-line tool for dynamic application security testing on web applications, initially written by the Michelin CERT.Its goal is to scan several endpoints and identify exposition of services/files/folders through the webroot. Checks/Signatures are declared in a config file (by default: chopchop.yml), fully configurable, and especially by developers." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/2b32046e-b7bd-49da-b32e-286291f74b3d.json" href="/docs/library/scanners/tools/chopchop" category="Scanners" />

  <ToolCard cardTitle="jaeles" description="The Swiss Army knife for automated Web Application Testing" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/1d9b5536-ec95-4397-a456-ef72ea830ba3.json" href="/docs/library/scanners/tools/jaeles" category="Scanners" />

  <ToolCard cardTitle="joomscan" description="OWASP Joomla! Vulnerability Scanner (JoomScan) is an open source project, developed with the aim of automating the task of vulnerability detection and reliability assurance in Joomla CMS deployments. Implemented in Perl, this tool enables seamless and effortless scanning of Joomla installations, while leaving a minimal footprint with its lightweight and modular architecture. It not only detects known offensive vulnerabilities, but also is able to detect many misconfigurations and admin-level shortcomings that can be exploited by adversaries to compromise the system. Furthermore, OWASP JoomScan provides a user-friendly interface and compiles the final reports in both text and HTML formats for ease of use and minimization of reporting overheads." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/c3aaee3e-8c9b-4418-8bc0-9eee18ce9e69.json" href="/docs/library/scanners/tools/joomscan" category="Scanners" />

  <ToolCard cardTitle="nikto" description="Nikto is web server scanner which performs comprehensive tests against web servers for multiple items, including over 6700 potentially dangerous files/programs, checks for outdated versions of over 1250 servers, and version specific problems on over 270 servers." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/f3105920-d013-4302-a89d-5373ba95eedf.json" href="/docs/library/scanners/tools/nikto" category="Scanners" />

  <ToolCard cardTitle="nikto-list" description="[DEPRECATED: use nikto directly instead] A wrapper around nikto with support for multiple targets. Nikto is web server scanner which performs comprehensive tests against web servers for multiple items, including over 6700 potentially dangerous files/programs, checks for outdated versions of over 1250 servers, and version specific problems on over 270 servers." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/a48032fe-6fe1-454b-9130-5074ccb765e4.json" href="/docs/library/scanners/tools/nikto-list" category="Scanners" />

  <ToolCard cardTitle="nomore403" description="Advanced tool for security researchers to bypass 403/40X restrictions through smart techniques and adaptive request manipulation. Fast. Precise. Effective." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/d0a6c744-f1e9-4fd3-8b1d-afef94c137f0.json" href="/docs/library/scanners/tools/nomore403" category="Scanners" />

  <ToolCard cardTitle="nuclei" description="Fast and customizable vulnerability scanner based on simple YAML based DSL." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/fa2bda96-bd9a-4eed-b943-9312d5ecb762.json" href="/docs/library/scanners/tools/nuclei" category="Scanners" />

  <ToolCard cardTitle="nuclei-markdown" description="Run a Nuclei scan and export the results in markdown format. Nuclei is a fast and customizable vulnerability scanner based on simple YAML based DSL." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/b56b0298-7614-4171-8799-76f3aa21e726.json" href="/docs/library/scanners/tools/nuclei-markdown" category="Scanners" />

  <ToolCard cardTitle="patator" description="Patator is a multi-purpose brute-forcer, with a modular design and a flexible usage" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/7083a63d-67b5-4eb3-b72e-3febc682cace.json" href="/docs/library/scanners/tools/patator" category="Scanners" />

  <ToolCard cardTitle="sslyze" description="Fast and powerful SSL/TLS scanner" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/59f393f6-3ae4-4e6c-bb94-a337b8f5438d.json" href="/docs/library/scanners/tools/sslyze" category="Scanners" />

  <ToolCard cardTitle="twa" description="A tiny web auditor with strong opinions." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/b03d425d-50cd-4f35-b4cf-3f4a43f5f283.json" href="/docs/library/scanners/tools/twa" category="Scanners" />

  <ToolCard cardTitle="twa-loop" description="A tiny web auditor with strong opinions." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/1b4e6365-d855-4b0a-8d38-f03cadf1541b.json" href="/docs/library/scanners/tools/twa-loop" category="Scanners" />

  <ToolCard cardTitle="wafw00f" description="WAFW00F allows one to identify and fingerprint Web Application Firewall (WAF) products protecting a website." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/0c7b9500-08fe-4b54-9a51-ded40850c970.json" href="/docs/library/scanners/tools/wafw00f" category="Scanners" />

  <ToolCard cardTitle="wapiti" description="Web vulnerability scanner written in Python3" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/1a7ee145-c6f9-4f11-aa7d-f510802fd2f9.json" href="/docs/library/scanners/tools/wapiti" category="Scanners" />

  <ToolCard cardTitle="wascan" description="WAScan ((W)eb (A)pplication (Scan)ner) is a Open Source web application security scanner. It is designed to find various vulnerabilities using black-box method, that means it won't study the source code of web applications but will work like a fuzzer, scanning the pages of the deployed web application, extracting links and forms and attacking the scripts, sending payloads and looking for error messages,..etc." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/96b30515-062b-4c8c-9ba3-8afc5971c57f.json" href="/docs/library/scanners/tools/wascan" category="Scanners" />

  <ToolCard cardTitle="wpscan" description="WordPress security scanner. Written for security professionals and blog maintainers to test the security of their WordPress websites." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/145f269d-b325-4327-aa8d-a904ede95aa4.json" href="/docs/library/scanners/tools/wpscan" category="Scanners" />

  <ToolCard cardTitle="wpscan-loop" description="WordPress security scanner. Written for security professionals and blog maintainers to test the security of their WordPress websites." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/7bbebfa1-9eb9-40a0-bc2d-0ca69e89d575.json" href="/docs/library/scanners/tools/wpscan-loop" category="Scanners" />

  <ToolCard cardTitle="zap-api-scan" description="Run a full scan against an API defined by OpenAPI/Swagger, SOAP or GraphQL using ZAP" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/5055366e-a4ba-4863-967a-4bbfe28466ac.json" href="/docs/library/scanners/tools/zap-api-scan" category="Scanners" />

  <ToolCard cardTitle="zap-automation-framework" description="Run ZAP via a single YAML file" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/4c7b9d9b-d092-4c13-a6f4-42ea538cc9fb.json" href="/docs/library/scanners/tools/zap-automation-framework" category="Scanners" />

  <ToolCard cardTitle="zap-full-scan" description="Run a full scan against a target URL using ZAP" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/0366f800-55b2-47cd-8c7f-e615d9c9c2a9.json" href="/docs/library/scanners/tools/zap-full-scan" category="Scanners" />
</CardGroup>
