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

# Workflows

> Explore a collection of powerful and efficient workflows in the Vulnerability Scanning category to enhance your productivity and security.

export const WorkflowCard = ({cardTitle, description, iframeUrl, href, category, complexity, publisher}) => <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: '40rem',
  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: '12px'
}}>
        <div style={{
  height: '4.5rem',
  display: 'flex',
  alignItems: 'flex-start'
}}>
          <h2 style={{
  color: '#ffffff',
  fontSize: '1.4rem',
  margin: 0,
  fontWeight: '600',
  lineHeight: '1.3',
  overflow: 'hidden',
  textOverflow: 'ellipsis',
  display: '-webkit-box',
  WebkitLineClamp: 2,
  WebkitBoxOrient: 'vertical'
}}>
            {cardTitle}
          </h2>
        </div>

        <div style={{
  display: 'flex',
  alignItems: 'center',
  gap: '8px',
  marginBottom: '8px'
}}>
          <div style={{
  display: 'flex',
  alignItems: 'center',
  gap: '8px'
}}>
            <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(163, 179, 188, 0.8)" strokeWidth="2">
              <rect width="16" height="16" x="4" y="4" rx="2" />
              <rect width="6" height="6" x="9" y="9" rx="1" />
              <path d="M15 2v2" /><path d="M15 20v2" />
              <path d="M2 15h2" /><path d="M2 9h2" />
              <path d="M20 15h2" /><path d="M20 9h2" />
              <path d="M9 2v2" /><path d="M9 20v2" />
            </svg>
            <span style={{
  color: 'rgba(163, 179, 188, 0.8)',
  fontSize: '0.9rem'
}}>Complexity</span>
            <div style={{
  display: 'flex',
  gap: '4px',
  marginLeft: '8px'
}}>
              {Array.from({
  length: 5
}, (_, i) => <div key={i} style={{
  width: '20px',
  height: '4px',
  backgroundColor: i < complexity ? '#3a86ff' : 'rgba(255, 255, 255, 0.1)',
  borderRadius: '2px'
}} />)}
            </div>
          </div>
        </div>

        <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 style={{
  display: 'flex',
  justifyContent: 'flex-end',
  alignItems: 'center',
  gap: '8px',
  marginTop: '12px'
}}>
          <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(163, 179, 188, 0.8)" strokeWidth="2">
            <path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" />
            <circle cx="12" cy="7" r="4" />
          </svg>
          <span style={{
  color: 'rgba(163, 179, 188, 0.8)',
  fontSize: '0.75rem'
}}>
            {publisher}
          </span>
        </div>
      </div>
    </div>
  </a>;

<CardGroup cols={2}>
  <WorkflowCard cardTitle="Check for DNS Takeover with dnsReaper" description="Use dnsReaper along with a batching pattern to check for DNS takeover en masse" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/dbe09d4a-2ee7-491f-a2b2-81b4db09330a.json" href="/docs/library/vulnerability-scanning/workflows/check-for-dns-takeover-with-dnsreaper" id="dbe09d4a-2ee7-491f-a2b2-81b4db09330a" category="Vulnerability Scanning" complexity={2} publisher="RogueSMG" />

  <WorkflowCard cardTitle="Check for DNS Takeover with dnsX" description="Use dnsX to fetch hosts which respond with either servfail or refused status codes, which may be susceptible to DNS takeover" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/d8f1b0cf-7f2b-47c2-a303-a407c402b818.json" href="/docs/library/vulnerability-scanning/workflows/check-for-dns-takeover-with-dnsx" id="d8f1b0cf-7f2b-47c2-a303-a407c402b818" category="Vulnerability Scanning" complexity={2} publisher="RogueSMG" />

  <WorkflowCard cardTitle="Bypassing 403 Endpoints" description="Test for ways to bypass 403 responses through 6 different techniques that are found to be effective, quick, and capable of scanning numerous endpoints in no time." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/e75fe23e-d8b4-4daf-8914-4ea48d57965f.json" href="/docs/library/vulnerability-scanning/workflows/bypassing-403-endpoints" id="e75fe23e-d8b4-4daf-8914-4ea48d57965f" category="Vulnerability Scanning" complexity={2} publisher="remonsec" />

  <WorkflowCard cardTitle="Citrix CVE-2023-3519" description="Check for CVE-2023-3519, an unauthenticated remote code execution (RCE) vulnerability affecting NetScaler (formerly Citrix) Application Delivery Controller (ADC) and NetScaler Gateway." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/df21d618-9e5b-4e01-b0a2-e3bcf28e89f7.json" href="/docs/library/vulnerability-scanning/workflows/citrix-cve-2023-3519" id="df21d618-9e5b-4e01-b0a2-e3bcf28e89f7" category="Vulnerability Scanning" complexity={2} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="Fuzz new endpoints for vulnerabilities" description="Discover a web app's endpoints, diff them, and fuzz newly discovered endpoints for common vulnerabilities like SQL injection, SSRF, XSS, and more." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/c933d1fa-6dde-4594-90c1-5e0f7165b707.json" href="/docs/library/vulnerability-scanning/workflows/fuzz-new-endpoints-for-vulnerabilities" id="c933d1fa-6dde-4594-90c1-5e0f7165b707" category="Vulnerability Scanning" complexity={3} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="ASN Vulnerability Scanning" description="Scan web servers for vulnerabilities using ASNs as input" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/ae82780e-3179-46a7-b8e2-3affe2ab389b.json" href="/docs/library/vulnerability-scanning/workflows/asn-vulnerability-scanning" id="ae82780e-3179-46a7-b8e2-3affe2ab389b" category="Vulnerability Scanning" complexity={3} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="IDOR Checker for GET HTTP requests" description="Check list of URLs with three different authorization headers for legitimate user, attacker users and anonymous user and compare responses" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/7c3b90e3-126a-4d07-b989-17e922421356.json" href="/docs/library/vulnerability-scanning/workflows/idor-checker-for-get-http-requests" id="7c3b90e3-126a-4d07-b989-17e922421356" category="Vulnerability Scanning" complexity={2} publisher="zaric" />

  <WorkflowCard cardTitle="Fuzz web app for vulnerabilities" description="Efficiently discover and scan a web app's content for common vulnerabilities. Identify potential SQL injection, SSRF, XSS, and more." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/acb0b883-06b3-475e-86f4-62aa9a5b8584.json" href="/docs/library/vulnerability-scanning/workflows/fuzz-web-app-for-vulnerabilities" id="acb0b883-06b3-475e-86f4-62aa9a5b8584" category="Vulnerability Scanning" complexity={2} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="Dynamic Web App Scanner" description="Finding paths and parameters with various techniques and creating a templates for finding LFI,SSRF,XSS,SQLI,RCE based on user-supplied payloads" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/b2f3d80e-9695-4c00-8875-c4eb3c712b51.json" href="/docs/library/vulnerability-scanning/workflows/dynamic-web-app-scanner" id="b2f3d80e-9695-4c00-8875-c4eb3c712b51" category="Vulnerability Scanning" complexity={4} publisher="zaric" />

  <WorkflowCard cardTitle="Random Parameter SSRF Finder" description="Fire random SSRF checks through user-supplied parameters for GET and POST requests, additionally crawl the app and add SSRF payload to each GET parameter" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/1b9118cf-f7a6-44ab-9f61-8632d84ea110.json" href="/docs/library/vulnerability-scanning/workflows/random-parameter-ssrf-finder" id="1b9118cf-f7a6-44ab-9f61-8632d84ea110" category="Vulnerability Scanning" complexity={3} publisher="zaric" />

  <WorkflowCard cardTitle="Check For Subdomain Takeover" description="Scan a list of subdomains for subdomain takeover" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/5aa52cad-bb26-45dd-af3d-94cbf0b582e1.json" href="/docs/library/vulnerability-scanning/workflows/check-for-subdomain-takeover" id="5aa52cad-bb26-45dd-af3d-94cbf0b582e1" category="Vulnerability Scanning" complexity={1} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="Web Cache Poisoning Finder" description="Attempts to cause web cache poisoning attacks on several hosts" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/7684f72c-f750-44a9-9a5f-aced01000686.json" href="/docs/library/vulnerability-scanning/workflows/web-cache-poisoning-finder" id="7684f72c-f750-44a9-9a5f-aced01000686" category="Vulnerability Scanning" complexity={1} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="Open Redirect Finder" description="Get a list of URLs from WaybackMachine and scan for open redirects" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/f3eefabc-9064-4b8e-ad33-f87d45350c27.json" href="/docs/library/vulnerability-scanning/workflows/open-redirect-finder" id="f3eefabc-9064-4b8e-ad33-f87d45350c27" category="Vulnerability Scanning" complexity={2} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="ZAP Full Scan" description="Use OWASP ZAP to spider and scan a website while authenticated" iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/7a7d2ea3-820b-4a3c-87b0-72dd80eb99e0.json" href="/docs/library/vulnerability-scanning/workflows/zap-full-scan" id="7a7d2ea3-820b-4a3c-87b0-72dd80eb99e0" category="Vulnerability Scanning" complexity={1} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="XSS Finder" description="Get all Wayback URLs for the domain and find XSS." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/17fa3052-3a01-4389-a4f2-f0e4661c43be.json" href="/docs/library/vulnerability-scanning/workflows/xss-finder" id="17fa3052-3a01-4389-a4f2-f0e4661c43be" category="Vulnerability Scanning" complexity={2} publisher="trickest-mhmdiaa" />

  <WorkflowCard cardTitle="Scan hosts with Nuclei & Cent" description="Get all the open-source templates for nuclei with cent, and scan the list of hosts." iframeUrl="https://editor.trickest.io/preview?workflow_url=https://trickest-public-workflow.s3.eu-central-1.amazonaws.com/04df93fa-6c56-44ea-9061-af31063f64c4.json" href="/docs/library/vulnerability-scanning/workflows/scan-hosts-with-nuclei-and-cent" id="04df93fa-6c56-44ea-9061-af31063f64c4" category="Vulnerability Scanning" complexity={2} publisher="trickest-mhmdiaa" />
</CardGroup>
