Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/arp_cache/arp.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
except Exception as error:
os.chdir(cwd)
# log(error)
print_error("ERROR:An error has occured:")
print_error("ERROR:An error has occurred:")
print("ERROR:" + str(error))

# if we are using dsniff
Expand Down
2 changes: 1 addition & 1 deletion src/core/setcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ def custom_template():
print("\n")
filewrite.close()
except Exception as e:
print_error("ERROR:An error occured:")
print_error("ERROR:An error occurred:")
print(bcolors.RED + "ERROR:" + str(e) + bcolors.ENDC)


Expand Down
4 changes: 2 additions & 2 deletions src/payloads/set_payloads/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def send_packet(message, conn, encryption):
# handle exceptions
except Exception as e:
print_warning(
"An exception occured. Handling it and keeping session alive. Error: " + str(e))
"An exception occurred. Handling it and keeping session alive. Error: " + str(e))
pass

# decrypt received packets
Expand All @@ -235,7 +235,7 @@ def decrypt_packet(message, encryption):
# handle exceptions
except Exception as e:
print_warning(
"An exception occured. Handling it and keeping session alive. Error: " + str(e))
"An exception occurred. Handling it and keeping session alive. Error: " + str(e))
pass

# handle tab completion here for set interactive menu
Expand Down
2 changes: 1 addition & 1 deletion src/phishing/smtp/client/custom_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
print("\n")
filewrite.close()
except Exception as e:
print(" An error occured, printing error message: " + str(e))
print(" An error occurred, printing error message: " + str(e))