Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Adding searchsploit implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kulichr authored Oct 21, 2020
1 parent 8a7e304 commit d3a948a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion wpvscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import bs4 as bs
import urllib.request
import time
import os

print('''
__ _______ _____ _____ _ _
Expand All @@ -26,6 +27,13 @@
current_time = time.strftime("%H:%M:%S", t)

print(" ")
print("Website " + website + " is running on CMS " + WP_name + " of version " +WP_version)
print("Target website " + website + " is running on CMS " + WP_name + " of version " +WP_version)
print("Latest version is " + WP_now)
print("Scan finished " + current_time)

searchsploit = input("Do you want to use searchsploit to check exploits for this version? (y/n) ")
if searchsploit == "y":
print(" ")
print(os.system("searchsploit " + WP_pars))
else:
print("Finished")

0 comments on commit d3a948a

Please sign in to comment.