diff --git a/hate_crack/main.py b/hate_crack/main.py index 9778c39..37f0772 100755 --- a/hate_crack/main.py +++ b/hate_crack/main.py @@ -4169,6 +4169,7 @@ def get_main_menu_items(): "83", f"Toggle Pushover Notifications [{'ON' if _notify.get_settings().enabled else 'OFF'}]", ), + ("84", "Send Test Pushover Notification"), ("90", "Download rules from Hashmob.net"), ("91", "Analyze Hashcat Rules"), ("92", "Download wordlists from Hashmob.net"), @@ -4213,6 +4214,7 @@ def get_main_menu_options(): "80": wordlist_tools_submenu, "81": rule_tools_submenu, "83": toggle_notifications, + "84": test_pushover_notification, "90": lambda: download_hashmob_rules(rules_dir=rulesDirectory), "91": analyze_rules, "92": download_hashmob_wordlists,