Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
fortra-goanywhere-mft-vulnerability-detection — Vulnerability detection scripts for the Goanywhere MFT product. | Kitploit
Tools/GitHubGitHub/rxerium/fortra-goanywhere-mft-vulnerability-detection
Vulnerability ScannersWeb Vulnerability ScannersInformation GatheringWeb SecurityPenetration TestingThreat Intelligence
GitHubrxerium/fortra-goanywhere-mft-vulnerability-detection

fortra-goanywhere-mft-vulnerability-detection

Vulnerability detection scripts for the Goanywhere MFT product.

View Repository
38 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Fortra GoAnywhere MFT Vulnerability Detection

Nuclei templates for detecting Fortra GoAnywhere MFT vulnerabilities.

Created by @rxerium

Overview

CVE detection templates for Fortra GoAnywhere Managed File Transfer (MFT), including multiple CISA KEV vulnerabilities exploited by ransomware groups.

Statistics: 1 CVE (2021) + 1 CVE (2023) + 1 CVE (2024) + 1 CVE (2025) = 4 templates (2 CISA KEV)

Usage

root@kitploit:~
# Scan a single target
nuclei -t 2025/CVE-2025-10035.yaml -u https://target.com:8001

# Scan with all templates
nuclei -t 2021/ -t 2023/ -t 2024/ -t 2025/ -u https://target.com:8001

# Scan multiple targets
nuclei -t 2025/ -l targets.txt

Requirements: Nuclei v3.0.0+

Features

  • CISA KEV Tracking - 2 Known Exploited Vulnerabilities included
  • Ransomware Targets - CVEs exploited by Clop and Medusa ransomware groups
  • - Regex extraction from HTTP responses
Version Detection
  • Production Ready - All templates validated before release
  • Detection Method

    Templates extract GoAnywhere MFT version from page content and match against vulnerable version ranges using DSL matchers.

    Paths checked:

    • {{BaseURL}}/
    • {{BaseURL}}/goanywhere/auth/Login.xhtml

    Default ports: 8000 (HTTP), 8001 (HTTPS)

    CVE Summary

    CVE IDYearCVSSSeverityCISA KEVExploited
    CVE-2021-4683020216.5Medium❌❌
    CVE-2023-066920237.2High✅✅ Clop
    CVE-2024-020420249.8Critical❌⚠️
    CVE-2025-10035202510.0Critical✅✅ Storm-1175

    Template Format

    root@kitploit:~
    id: CVE-YYYY-XXXXX
    
    info:
      name: CVE-YYYY-XXXXX - Fortra GoAnywhere MFT [Vulnerability Type]
      author: rxerium
      severity: critical|high|medium|low
      description: |
        [Description]
      reference:
        - https://nvd.nist.gov/vuln/detail/CVE-YYYY-XXXXX
      metadata:
        vendor: Fortra
        product: GoAnywhere MFT
        cvss-score: X.X
        cwe-id: CWE-XXX
        cisa-kev: true  # If applicable
      tags: cve,cveYYYY,goanywhere,mft,[type]
    
    http:
      - method: GET
        path:
          - "{{BaseURL}}"
          - "{{BaseURL}}/goanywhere/auth/Login.xhtml"
    
        matchers-condition: and
        matchers:
          - type: status
            status:
              - 200
          - type: word
            part: body
            words:
              - "GoAnywhere"
          - type: dsl
            dsl:
              - "compare_versions(version, '<X.X.X')"
    
        extractors:
          - type: regex
            name: version
            part: body
            group: 1
            regex:
              - 'GoAnywhere[^0-9]+([0-9]+\.[0-9]+\.[0-9]+)'
            internal: true
          - type: kval
            kval:
              - version
    

    Responsible Use

    For legitimate security testing and research only. Always obtain proper authorization before scanning.

    Contact

    • Twitter/X: @rxerium
    • LinkedIn: rxerium
    • Signal: Contact

    License

    MIT License - see LICENSE

    Download Tool