Add autocrack payload suite (alert + user tools) - #281
Open
sinXne0 wants to merge 1 commit into
Open
Conversation
hak5darren
requested changes
Feb 24, 2026
| LOG red "Handshake not crackable, skipping..." | ||
| exit 0 | ||
| fi | ||
|
|
Member
There was a problem hiding this comment.
There is potential in high traffic environments for this payload to run multiple times concurrently -- which will not be good performance wise. I highly recommend adding a check here at the top to see if aircrack is currently running, and if it is to exit 0. Since alert payloads execute automatically based on triggers from the wifi airspace, as it stands currently this payload can exhaust system resources if multiple handshakes are captured in a short period of time.
Contributor
Author
|
I appreciate the feed back and I will work on it thank you Sent from my iPhoneOn Feb 24, 2026, at 4:56 PM, Darren Kitchen ***@***.***> wrote:
@hak5darren requested changes on this pull request.
In library/alerts/handshake_captured/auto_crack/payload.sh:
+# $_ALERT_HANDSHAKE_TYPE - EAPOL or PMKID
+# $_ALERT_HANDSHAKE_COMPLETE - true/false
+# $_ALERT_HANDSHAKE_CRACKABLE - true/false
+# $_ALERT_HANDSHAKE_PCAP_FILE - Path to PCAP
+# $_ALERT_HANDSHAKE_HASHCAT_FILE - Path to hashcat format
+
+# ============================================
+# MAIN EXECUTION
+# ============================================
+
+# Check if handshake is crackable
+if [ "$_ALERT_HANDSHAKE_CRACKABLE" != "true" ]; then
+ LOG red "Handshake not crackable, skipping..."
+ exit 0
+fi
+
There is potential in high traffic environments for this payload to run multiple times concurrently -- which will not be good performance wise. I highly recommend adding a check here at the top to see if aircrack is currently running, and if it is to exit 0. Since alert payloads execute automatically based on triggers from the wifi airspace, as it stands currently this payload can exhaust system resources if multiple handshakes are captured in a short period of time.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Notes