Skip to content

Commit

Permalink
fixed #11
Browse files Browse the repository at this point in the history
  • Loading branch information
Anof-cyber committed Jul 20, 2023
1 parent 40e2760 commit 5345129
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions PentestMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def registerExtenderCallbacks(self, callbacks):

# Creating a output after loading
callbacks.printOutput("Author: Sourav Kalal Aka AnoF")
callbacks.printOutput("Version: 1.7.1")
callbacks.printOutput("Version: 1.7.2")
callbacks.printOutput("https://github.com/Anof-cyber/Pentest-Mapper")

callbacks.registerContextMenuFactory(self)
Expand Down Expand Up @@ -1011,7 +1011,8 @@ def sendRepeaterItem(self,event):
fullurl = logEntry._url
url = urlparse(str(fullurl))
hostname = url.hostname
port = url.port
#port = url.port
port = url.port if url.port is not None else 443
protocol = url.scheme
request = self.helpers.stringToBytes(logEntry._requestResponse)
func = logEntry._FunctionalityName
Expand Down

0 comments on commit 5345129

Please sign in to comment.