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
Tools/GitHubGitHub/orwagodfather/virustotalx
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringWeb SecurityThreat Intelligence
GitHuborwagodfather/virustotalx

virustotalx

♥

View Repository
2196511 months 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
virustotalx — ♥ | Kitploit

virustotalx for endpoints

virustotalx for IPs (V2)

Installation

root@kitploit:~
git clone https://github.com/orwagodfather/virustotalx.git
root@kitploit:~
cd virustotalx

create a 3 accounts https://www.virustotal.com/gui/join-us and copy the 3 api keys ===>

root@kitploit:~
nano orwa.sh

&

root@kitploit:~
nano orwaV2.sh

paste 3 api keys here ....

root@kitploit:~
  if [ $api_key_index -eq 1 ]; then
    api_key="key-1"
  elif [ $api_key_index -eq 2 ]; then
    api_key="key-2"
  else
    api_key="key-3"
  fi

Ex

root@kitploit:~
  if [ $api_key_index -eq 1 ]; then
    api_key="XXXXXXXXXXXXXX1"
  elif [ $api_key_index -eq 2 ]; then
    api_key="XXXXXXXXXXXXXX2"
  else
    api_key="XXXXXXXXXXXXXX3"
  fi

next step

chmod +x orwa.sh & chmod +x orwaV2.sh

Usage orwa.sh for endpoints

Create sub domain file EX ===> subdomain.txt ===> wihtout http/s

===>

root@kitploit:~
./orwa.sh subdomain.txt | tee results.txt 

===>

root@kitploit:~
cat results.txt | egrep 'http|https' > endpoints.txt

Usage orwaV2.sh for IPs (V2)

Create IPs file EX ===> all-IP-range.txt ===> wihtout http/s

===>

root@kitploit:~
./orwaV2.sh all-IP-range.txt | tee endpointsV2.txt 

===>

root@kitploit:~
cat endpointsV2.txt | httpx -sc -title
Download Tool