From d3d4df2500243d1c4e266f95627d387198ee219c Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:03:31 -0400 Subject: [PATCH 01/16] spelling: available --- pwnagotchi/plugins/default/auto-backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/auto-backup.py b/pwnagotchi/plugins/default/auto-backup.py index b5fba2d1..7fa76440 100644 --- a/pwnagotchi/plugins/default/auto-backup.py +++ b/pwnagotchi/plugins/default/auto-backup.py @@ -2,7 +2,7 @@ __author__ = '33197631+dadav@users.noreply.github.com' __version__ = '1.0.0' __name__ = 'auto-backup' __license__ = 'GPL3' -__description__ = 'This plugin backups files when internet is availaible.' +__description__ = 'This plugin backups files when internet is available.' from pwnagotchi.utils import StatusFile import logging From 8a87bbeb9032ffcbeb4e1e3aac49e9fa4968c2c5 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:13:18 -0400 Subject: [PATCH 02/16] spelling: delete --- pwnagotchi/plugins/default/AircrackOnly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/plugins/default/AircrackOnly.py b/pwnagotchi/plugins/default/AircrackOnly.py index e6860810..237f8c46 100644 --- a/pwnagotchi/plugins/default/AircrackOnly.py +++ b/pwnagotchi/plugins/default/AircrackOnly.py @@ -28,7 +28,7 @@ def on_handshake(agent, filename, access_point, client_station): if result: logging.info("[AircrackOnly] contains handshake") else: - todetele = 1 + todelete = 1 if todelete == 0: result = subprocess.run(('/usr/bin/aircrack-ng '+ filename +' | grep "PMKID" | awk \'{print $2}\''),shell=True, stdout=subprocess.PIPE) @@ -36,7 +36,7 @@ def on_handshake(agent, filename, access_point, client_station): if result: logging.info("[AircrackOnly] contains PMKID") else: - todetele = 1 + todelete = 1 if todelete == 1: os.remove(filename) From 479f9cf79db8b13333cf6e8ec0cc4d92caf6aad7 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:05:29 -0400 Subject: [PATCH 03/16] spelling: display --- pwnagotchi/ui/hw/libs/papirus/epd.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pwnagotchi/ui/hw/libs/papirus/epd.py b/pwnagotchi/ui/hw/libs/papirus/epd.py index 11764d99..009ed9e0 100644 --- a/pwnagotchi/ui/hw/libs/papirus/epd.py +++ b/pwnagotchi/ui/hw/libs/papirus/epd.py @@ -173,7 +173,7 @@ to use: # attempt grayscale conversion, and then to single bit # better to do this before calling this if the image is to - # be dispayed several times + # be displayed several times if image.mode != "1": image = ImageOps.grayscale(image).convert("1", dither=Image.FLOYDSTEINBERG) diff --git a/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py b/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py index 88409ecc..3864d798 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py +++ b/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py @@ -35,7 +35,7 @@ class ST7789(object): self._spi.writebytes([val]) def Init(self): - """Initialize dispaly""" + """Initialize display""" self.reset() self.command(0x36) diff --git a/pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py b/pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py index a89716d8..d206f704 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py +++ b/pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py @@ -34,7 +34,7 @@ class SH1106(object): def Init(self): if (config.module_init() != 0): return -1 - """Initialize dispaly""" + """Initialize display""" self.reset() self.command(0xAE);#--turn off oled panel self.command(0x02);#---set low column address From 13b73a64c838f521afc5d4c8b8d72b3af3b31ddb Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:05:42 -0400 Subject: [PATCH 04/16] spelling: documentation --- pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py b/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py index 1eaf68e5..07da6c24 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py +++ b/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py @@ -9,7 +9,7 @@ # * | Info : # ******************************************************************************/ # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py index 93685e18..ade7bb8d 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py @@ -9,7 +9,7 @@ # # | Info : python demo # ----------------------------------------------------------------------------- # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py index f17f0af0..c829ba3b 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py @@ -9,7 +9,7 @@ # # | Info : python demo # ----------------------------------------------------------------------------- # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py index 76d8ca9d..debf0028 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py @@ -9,7 +9,7 @@ # * | Info : # ****************************************************************************** # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py b/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py index 6c3ed04a..a90909a0 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py @@ -27,7 +27,7 @@ # epd.display(getbuffer(image)) # ******************************************************************************// # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and//or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py index 20f16657..3247b3c7 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py @@ -9,7 +9,7 @@ # # | Info : python demo # ----------------------------------------------------------------------------- # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is diff --git a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py index 861f43da..eff576b4 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py @@ -9,7 +9,7 @@ # * | Info : # ****************************************************************************** # Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal +# of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is From 3bc887631bd7a4a97c7814db43ffdeb50a5263e3 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:07:34 -0400 Subject: [PATCH 05/16] spelling: functions --- pwnagotchi/plugins/default/ups_lite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/ups_lite.py b/pwnagotchi/plugins/default/ups_lite.py index d9a37d28..5c0d9d7b 100644 --- a/pwnagotchi/plugins/default/ups_lite.py +++ b/pwnagotchi/plugins/default/ups_lite.py @@ -1,6 +1,6 @@ # Based on UPS Lite v1.1 from https://github.com/xenDE # -# funtions for get UPS status - needs enable "i2c" in raspi-config +# functions for get UPS status - needs enable "i2c" in raspi-config # # https://github.com/linshuqin329/UPS-Lite # From 28c28b8b0cceb76016fc72d4bf9418b49df7db06 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:07:47 -0400 Subject: [PATCH 06/16] spelling: furnished --- pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py | 2 +- pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py b/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py index 07da6c24..6f2355e5 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py +++ b/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py index ade7bb8d..7913c0ef 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py index c829ba3b..7974617d 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py b/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py index debf0028..728f5cf8 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py b/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py index a90909a0..a9faac84 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py @@ -31,7 +31,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and//or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py index 3247b3c7..4bb2245a 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. diff --git a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py index eff576b4..efbc319e 100644 --- a/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py +++ b/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py @@ -13,7 +13,7 @@ # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: +# furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. From a2c3df5c99007e3624e550cc0a0dc132c61782b1 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:08:06 -0400 Subject: [PATCH 07/16] spelling: going --- pwnagotchi/ui/view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/ui/view.py b/pwnagotchi/ui/view.py index d529eca7..94a34e1b 100644 --- a/pwnagotchi/ui/view.py +++ b/pwnagotchi/ui/view.py @@ -238,7 +238,7 @@ class View(object): part = secs / 10.0 for step in range(0, 10): - # if we weren't in a normal state before goin + # if we weren't in a normal state before going # to sleep, keep that face and status on for # a while, otherwise the sleep animation will # always override any minor state change before it From 1c2ff20ab4b4f0471676c368293c939eeb6be124 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:08:50 -0400 Subject: [PATCH 08/16] spelling: lifting --- scripts/win_connection_share.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/win_connection_share.ps1 b/scripts/win_connection_share.ps1 index c7c4ece8..6c07c47a 100644 --- a/scripts/win_connection_share.ps1 +++ b/scripts/win_connection_share.ps1 @@ -51,10 +51,10 @@ Param ( Function Create-HNetObjects { <# .SYNOPSIS - A helper function that does the heavy lifiting with NetCfg.HNetShare + A helper function that does the heavy lifting with NetCfg.HNetShare .DESCRIPTION - A helper function that does the heavy lifiting with NetCfg.HNetShare. This returns a PSObject containing the `INetSharingConfigurationForINetConnection` info of 2 Adapters. + A helper function that does the heavy lifting with NetCfg.HNetShare. This returns a PSObject containing the `INetSharingConfigurationForINetConnection` info of 2 Adapters. .PARAMETER InternetAdaptor The output of Get-NetAdaptor filtered down to the 'main' uplink interface. From ecfc5f90633cb6e49ea3d7f96ef337e664d7832d Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:09:19 -0400 Subject: [PATCH 09/16] spelling: occurred --- pwnagotchi/plugins/default/unfiltered_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/unfiltered_example.py b/pwnagotchi/plugins/default/unfiltered_example.py index c883b7c0..9fe1e496 100644 --- a/pwnagotchi/plugins/default/unfiltered_example.py +++ b/pwnagotchi/plugins/default/unfiltered_example.py @@ -13,7 +13,7 @@ OPTIONS = dict() def on_loaded(): logging.warning("%s plugin loaded" % __name__) -# called when AP list is ready, before whitelist filtering has occured +# called when AP list is ready, before whitelist filtering has occurred def on_unfiltered_ap_list(agent,aps): logging.info("Unfiltered AP list to follow") for ap in aps: From 102a061814e3e65e8656931ffd848fe90adfaa2c Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:09:37 -0400 Subject: [PATCH 10/16] spelling: please --- pwnagotchi/plugins/default/bt-tether.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/bt-tether.py b/pwnagotchi/plugins/default/bt-tether.py index 2a7e595f..dbbcebe1 100644 --- a/pwnagotchi/plugins/default/bt-tether.py +++ b/pwnagotchi/plugins/default/bt-tether.py @@ -423,7 +423,7 @@ def on_loaded(): for opt in ['share_internet', 'mac', 'ip', 'netmask', 'interval']: if opt not in OPTIONS or (opt in OPTIONS and OPTIONS[opt] is None): - logging.error("BT-TET: Pleace specify the %s in your config.yml.", opt) + logging.error("BT-TET: Please specify the %s in your config.yml.", opt) return # ensure bluetooth is running From 5a16819febe68e478f1af9e8b87481758e407621 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:09:57 -0400 Subject: [PATCH 11/16] spelling: pwnagotchi --- pwnagotchi/plugins/default/screen_refresh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/screen_refresh.py b/pwnagotchi/plugins/default/screen_refresh.py index 94173ff2..3c7047fa 100644 --- a/pwnagotchi/plugins/default/screen_refresh.py +++ b/pwnagotchi/plugins/default/screen_refresh.py @@ -1,4 +1,4 @@ -__author__ = 'pwnagotcchi [at] rossmarks [dot] uk' +__author__ = 'pwnagotchi [at] rossmarks [dot] uk' __version__ = '1.0.0' __name__ = 'screen_refresh' __license__ = 'GPL3' From 9888e1fb39de08ecba3035c3a47fa90a659c8e07 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:12:28 -0400 Subject: [PATCH 12/16] spelling: stopping --- pwnagotchi/plugins/default/bt-tether.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/bt-tether.py b/pwnagotchi/plugins/default/bt-tether.py index dbbcebe1..509519cd 100644 --- a/pwnagotchi/plugins/default/bt-tether.py +++ b/pwnagotchi/plugins/default/bt-tether.py @@ -236,7 +236,7 @@ class BTNap: timeout -= 1 try: - logging.debug("BT-TETHER: Stoping Discovery ...") + logging.debug("BT-TETHER: Stopping Discovery ...") bt_dev.StopDiscovery() except Exception as bt_ex: logging.error(bt_ex) From 0b495ebd1354d30e87b591bba3aa176f2faf8853 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:12:45 -0400 Subject: [PATCH 13/16] spelling: successfully --- pwnagotchi/plugins/default/auto-backup.py | 2 +- pwnagotchi/plugins/default/onlinehashcrack.py | 2 +- pwnagotchi/plugins/default/wigle.py | 2 +- pwnagotchi/plugins/default/wpa-sec.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pwnagotchi/plugins/default/auto-backup.py b/pwnagotchi/plugins/default/auto-backup.py index 7fa76440..c235f787 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 dbf8a4ec..4f51ed7f 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 462cdab4..ad2b8a56 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 6bf99940..1addc330 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) From 8a687b723b447a1466341099466603b1b82a4e20 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:13:42 -0400 Subject: [PATCH 14/16] spelling: transfer --- pwnagotchi/ui/hw/libs/papirus/epd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/ui/hw/libs/papirus/epd.py b/pwnagotchi/ui/hw/libs/papirus/epd.py index 009ed9e0..aed46059 100644 --- a/pwnagotchi/ui/hw/libs/papirus/epd.py +++ b/pwnagotchi/ui/hw/libs/papirus/epd.py @@ -47,7 +47,7 @@ to use: image = Image.new('1', epd.size, 0) # draw on image epd.clear() # clear the panel - epd.display(image) # tranfer image data + epd.display(image) # transfer image data epd.update() # refresh the panel image - not needed if auto=true """ From 5ae7695229ddb04b3523cdeccc8f466a0413d391 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:13:59 -0400 Subject: [PATCH 15/16] spelling: unknown --- pwnagotchi/ui/hw/libs/dfrobot/dfrobot_epaper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/ui/hw/libs/dfrobot/dfrobot_epaper.py b/pwnagotchi/ui/hw/libs/dfrobot/dfrobot_epaper.py index d207a45d..8182bee1 100644 --- a/pwnagotchi/ui/hw/libs/dfrobot/dfrobot_epaper.py +++ b/pwnagotchi/ui/hw/libs/dfrobot/dfrobot_epaper.py @@ -10,7 +10,7 @@ try: from .spi import SPI from .gpio import GPIO except: - print("unknow platform") + print("unknown platform") exit() CONFIG_IL0376F = { From b93bcd07d4eb91b8f191a373589166c1a3a6e7af Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sat, 26 Oct 2019 22:14:15 -0400 Subject: [PATCH 16/16] spelling: uploads --- pwnagotchi/plugins/default/onlinehashcrack.py | 2 +- pwnagotchi/plugins/default/wigle.py | 2 +- pwnagotchi/plugins/default/wpa-sec.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pwnagotchi/plugins/default/onlinehashcrack.py b/pwnagotchi/plugins/default/onlinehashcrack.py index 4f51ed7f..47f881a0 100644 --- a/pwnagotchi/plugins/default/onlinehashcrack.py +++ b/pwnagotchi/plugins/default/onlinehashcrack.py @@ -2,7 +2,7 @@ __author__ = '33197631+dadav@users.noreply.github.com' __version__ = '2.0.0' __name__ = 'onlinehashcrack' __license__ = 'GPL3' -__description__ = 'This plugin automatically uploades handshakes to https://onlinehashcrack.com' +__description__ = 'This plugin automatically uploads handshakes to https://onlinehashcrack.com' import os import logging diff --git a/pwnagotchi/plugins/default/wigle.py b/pwnagotchi/plugins/default/wigle.py index ad2b8a56..5437132b 100644 --- a/pwnagotchi/plugins/default/wigle.py +++ b/pwnagotchi/plugins/default/wigle.py @@ -2,7 +2,7 @@ __author__ = '33197631+dadav@users.noreply.github.com' __version__ = '2.0.0' __name__ = 'wigle' __license__ = 'GPL3' -__description__ = 'This plugin automatically uploades collected wifis to wigle.net' +__description__ = 'This plugin automatically uploads collected wifis to wigle.net' import os import logging diff --git a/pwnagotchi/plugins/default/wpa-sec.py b/pwnagotchi/plugins/default/wpa-sec.py index 1addc330..5b13f315 100644 --- a/pwnagotchi/plugins/default/wpa-sec.py +++ b/pwnagotchi/plugins/default/wpa-sec.py @@ -2,7 +2,7 @@ __author__ = '33197631+dadav@users.noreply.github.com' __version__ = '2.0.1' __name__ = 'wpa-sec' __license__ = 'GPL3' -__description__ = 'This plugin automatically uploades handshakes to https://wpa-sec.stanev.org' +__description__ = 'This plugin automatically uploads handshakes to https://wpa-sec.stanev.org' import os import logging