Skip to content

Commit

Permalink
Remove support for Windows, as it is reported multiple times that it …
Browse files Browse the repository at this point in the history
…does not work there
  • Loading branch information
acecilia committed Sep 4, 2022
1 parent 4adf559 commit 413a7da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions remote_command_execution_vulnerability.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
import time
import random
import hashlib
import platform

if platform.system() == "Windows":
sys.exit("Stopping: script can only be run on a Mac/Linux system")

router_ip_address="miwifi.com"
#router_ip_address = "192.168.31.1"
router_ip_address = input("Router IP address [press enter for using the default '{}']: ".format(router_ip_address)) or router_ip_address
Expand Down

0 comments on commit 413a7da

Please sign in to comment.