SnakeScan 1.2.8__tar.gz → 1.2.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SnakeScan
3
- Version: 1.2.8
3
+ Version: 1.2.9
4
4
  Summary: Module SnakeScan
5
5
  Author: Den*Ram
6
6
  Description-Content-Type: text/markdown
@@ -1,5 +1,5 @@
1
1
  """Module SnakeScan"""
2
- __version__="1.2.8"
2
+ __version__="1.2.9"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -89,6 +89,20 @@ while Run_now:
89
89
  for i in range(len(host)):
90
90
  if host[i] == "/":
91
91
  host=host[0:i]
92
+ if "http://" in host:
93
+ host=host.strip()
94
+ host=host.split("http:")
95
+ host=host.strip("//")
96
+ for i in range(len(host)):
97
+ if host[i] == "/":
98
+ host=host[0:i]
99
+ if "https://" in host:
100
+ host=host.strip()
101
+ host=host.strip("https:")
102
+ host=host.strip("//")
103
+ for i in range(len(host)):
104
+ if host[i] == "/":
105
+ host=host[0:i]
92
106
  if "--d" in host:
93
107
  try:
94
108
  host=host.strip("--d")
File without changes
File without changes
File without changes