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
INtrack — A flexible internet crawler used for scanning technologies, instances and vulnerabilities worldwide across the internet. | Kitploit
Tools/GitHubGitHub/k3ystr0k3r/intrack
ReconnaissanceVulnerability ScannersIoT SecurityNetwork MappingExploitationWeb Application ExploitationInformation GatheringWeb SecurityPenetration TestingCrawler
GitHubk3ystr0k3r/intrack

INtrack

601024 days agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

A flexible internet crawler used for scanning technologies, instances and vulnerabilities worldwide across the internet.

View Repository

INtrack - Internet Crawler & Security Scanner

INtrack Logo

INtrack is a powerful, multi-threaded security scanner and internet crawler designed for network reconnaissance, vulnerability detection, and security assessment. It can scan for a wide variety of instances, vulnerabilities, IoT devices, exposures, and more.

Features

  • 🔍 Comprehensive Scanning: Detect web servers, applications, vulnerable services, and more
  • 🌐 Flexible Target Selection: Scan single hosts, subnets, random internet IPs, or targets from a file
  • 🛠️ Multiple Scanner Types:
    • Vulnerability scanners for known CVEs
    • Instance detection (WordPress, Jira, Apache, Nginx, etc.)
    • IoT device detection
    • Backdoor implant detection
    • Network service identification
    • Exposure scanners (robots.txt, security.txt, etc.)
  • 🔄 Multi-threaded: Fast, concurrent scanning with customizable thread count
  • 🔧 Customizable: Configure ports, timeouts, and scan types
  • 📊 Progress Visualization: Real-time scanning progress with alive-progress bar

Installation

root@kitploit:~
# Install pipx if not already installed:
python3 -m pip install --user pipx
python3 -m pipx ensurepath

# Install INtrack via pipx directly from GitHub:
pipx install git+https://github.com/K3ysTr0K3R/INtrack.git

Usage

Basic Usage

root@kitploit:~
intrack -H 192.168.1.1 -p 80,443

Scan Types

root@kitploit:~
# Check for WordPress instances
intrack -H 192.168.1.0/24 --instance wordpress

# Scan for specific vulnerability
intrack -H 192.168.1.0/24 --vuln CVE-2017-7921

# Detect IoT devices
intrack -H 192.168.1.0/24 --iot hikvision

# Check for exposed API documentation
intrack -H 192.168.1.0/24 --exposure api-docs

# Search for backdoor implants
intrack -H 192.168.1.0/24 --backdoor antsword

# Run network checks
intrack -H 192.168.1.0/24 --network telnet

Target Selection

root@kitploit:~
# Scan a single host
intrack -H 192.168.1.1 --instance wordpress

# Scan a subnet
intrack -H 192.168.1.0/24 --instance nginx

# Scan targets from a file
intrack -f targets.txt --instance jira

# Scan random internet hosts
intrack -n 100 --instance apache

Advanced Options

root@kitploit:~
# Combine multiple scan types
intrack -H 192.168.1.0/24 --instance "wordpress,jira" --exposure "robots-txt,security-txt"

# Save results to a file
intrack -H 192.168.1.0/24 --instance wordpress -o results.txt

# Resolve hostnames for IPs
intrack -H 192.168.1.0/24 --hostname --instance wordpress

# Use more threads for faster scanning
intrack -H 192.168.1.0/24 -t 50 --instance wordpress

# Execute worm scripts (requires listener)
intrack -H 192.168.1.0/24 --worm tomcat -L 192.168.1.100 -P 4444

# Probe for HTTP/HTTPS services
intrack -H 192.168.1.0/24 --probe -o webservers.txt

List All Available Scanners

root@kitploit:~
intrack --list

Vulnerabilities

  • Multiple CVEs (use --list to see all)

Command Line Arguments

Legal Disclaimer

This tool is intended for legal security assessments, penetration testing, and educational purposes only. Use responsibly and only against systems you own or have explicit permission to test.

License

MIT License

Contributing

Contributions are welcome! Please follow the standard contribution guidelines for submitting issues or pull requests.


Stay tuned for updates as we continue to improve INtrack!

Download Tool
ArgumentDescription
-H, --hostSpecify a single target IP or subnet range
-f, --fileSpecify a file containing target IPs
-n, --n-targetsNumber of random targets to find
-p, --portPort(s) to check (default: 80)
-t, --threadsNumber of threads to use (default: 25)
-o, --outputStore results into a file
--lh, --lhostAdd a listening host for reverse shells
--lp, --lportA listening port for reverse shells
--hostnameResolve hostnames for IP addresses
--instanceType of instance to check
--backdoorLook for backdoor implants
--wormEnable special script execution
--vulnEnable vulnerability script execution
--exposureUsed to detect exposure files
--iotUsed to detect IoT devices
--miscellaneousUsed for miscellaneous checks
--workflowsRun workflow scans on targets
-N, --networkUsed for network scans
--timeoutTimeout seconds for web requests (default: 10)
--probeUsed for probing hosts for HTTP/HTTPS
-s, --spiderSpecify subnet range to scan if a result is found
--listList available scanners and checks
--bar-styleProgress bar style (default 'smooth')