diff --git a/pwnagotchi/plugins/default/auto-backup.py b/pwnagotchi/plugins/default/auto-backup.py
index 7fa7644..c235f78 100644
--- a/pwnagotchi/plugins/default/auto-backup.py
+++ b/pwnagotchi/plugins/default/auto-backup.py
@@ -30,7 +30,7 @@ def on_loaded():
         return
 
     READY = True
-    logging.info("AUTO-BACKUP: Successfuly loaded.")
+    logging.info("AUTO-BACKUP: Successfully loaded.")
 
 
 def on_internet_available(agent):
diff --git a/pwnagotchi/plugins/default/onlinehashcrack.py b/pwnagotchi/plugins/default/onlinehashcrack.py
index dbf8a4e..4f51ed7 100644
--- a/pwnagotchi/plugins/default/onlinehashcrack.py
+++ b/pwnagotchi/plugins/default/onlinehashcrack.py
@@ -74,7 +74,7 @@ def on_internet_available(agent):
                     _upload_to_ohc(handshake)
                     reported.append(handshake)
                     REPORT.update(data={'reported': reported})
-                    logging.info(f"OHC: Successfuly uploaded {handshake}")
+                    logging.info(f"OHC: Successfully uploaded {handshake}")
                 except requests.exceptions.RequestException as req_e:
                     SKIP.append(handshake)
                     logging.error("OHC: %s", req_e)
diff --git a/pwnagotchi/plugins/default/wigle.py b/pwnagotchi/plugins/default/wigle.py
index 462cdab..ad2b8a5 100644
--- a/pwnagotchi/plugins/default/wigle.py
+++ b/pwnagotchi/plugins/default/wigle.py
@@ -186,7 +186,7 @@ def on_internet_available(agent):
                     _send_to_wigle(csv_entries, OPTIONS['api_key'])
                     reported += no_err_entries
                     REPORT.update(data={'reported': reported})
-                    logging.info("WIGLE: Successfuly uploaded %d files", len(no_err_entries))
+                    logging.info("WIGLE: Successfully uploaded %d files", len(no_err_entries))
                 except requests.exceptions.RequestException as re_e:
                     SKIP += no_err_entries
                     logging.error("WIGLE: Got an exception while uploading %s", re_e)
diff --git a/pwnagotchi/plugins/default/wpa-sec.py b/pwnagotchi/plugins/default/wpa-sec.py
index 6bf9994..1addc33 100644
--- a/pwnagotchi/plugins/default/wpa-sec.py
+++ b/pwnagotchi/plugins/default/wpa-sec.py
@@ -77,7 +77,7 @@ def on_internet_available(agent):
                     _upload_to_wpasec(handshake)
                     reported.append(handshake)
                     REPORT.update(data={'reported': reported})
-                    logging.info("WPA_SEC: Successfuly uploaded %s", handshake)
+                    logging.info("WPA_SEC: Successfully uploaded %s", handshake)
                 except requests.exceptions.RequestException as req_e:
                     SKIP.append(handshake)
                     logging.error("WPA_SEC: %s", req_e)