From 36115a75f28fa706a9f32a484da3f7084c1f3701 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Wed, 22 Apr 2026 18:11:35 -0400 Subject: [PATCH] feat(notify): wire option 84 into main.py menu --- hate_crack/main.py | 2 ++ 1 file changed, 2 insertions(+) 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,