Skip to content

Commit

Permalink
fixed a couple small spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dougsko committed Dec 20, 2016
1 parent b4ffe59 commit b405897
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xsser-public/core/main.py
Expand Up @@ -1194,7 +1194,7 @@ def _report_attack_failure(self, curl_handle, dest_url, payload,\
elif str(curl_handle.info()["http-code"]) == "504":
self.report("\n504 Gateway Timeout: The server did not receive a timely response specified by the URI (try: --ignore-proxy)\n")
elif str(curl_handle.info()["http-code"]) == "0":
self.report("\nXSSer is not working propertly!:\n - Is something blocking connection(s)?\n - Is target url ok?: (" + orig_url + ")\n")
self.report("\nXSSer is not working properly!:\n - Is something blocking connection(s)?\n - Is target url ok?: (" + orig_url + ")\n")
else:
self.report("\nNot injected!. Server responses with http-code different to: 200 OK (" + str(curl_handle.info()["http-code"]) + ")")

Expand Down Expand Up @@ -2137,7 +2137,7 @@ def print_results(self):
self.report('='*75 + '\n')
self.report("- Injections:", total_injections)
self.report("- Failed:", len(self.hash_notfound))
self.report("- Sucessfull:", len(self.hash_found))
self.report("- Successful:", len(self.hash_found))
try:
_accur = len(self.hash_found) * 100 / total_injections
except ZeroDivisionError:
Expand Down Expand Up @@ -2480,7 +2480,7 @@ def print_results(self):
len(self.hash_notfound) + len(self.hash_found))
self.report('-'*25)
self.report("Failed:" , len(self.hash_notfound), "|",
"Sucessfull:" , len(self.hash_found))
"Successful:" , len(self.hash_found))
try:
_accur = len(self.hash_found) * 100 / total_injections
except ZeroDivisionError:
Expand Down

0 comments on commit b405897

Please sign in to comment.