Created
November 1, 2022 05:59
-
-
Save terraboops/ef795f82dda52a6c65e24b3fd8e370b4 to your computer and use it in GitHub Desktop.
knowbe4 google script
This file contains 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
// Update the email address below | |
// Schedule to run every 30 minutes at https://script.google.com/ | |
function phish() { | |
const threads = GmailApp.search("newer_than:30m"); | |
const totalSpammed = 0; | |
threads.forEach((thread) => { | |
thread.getMessages().forEach((message) => { | |
if(message.getHeader("X-PHISHTEST") !== "") { | |
thread.moveToSpam(); | |
totalSpammed++; | |
} | |
}); | |
}); | |
if(totalSpammed > 0) { | |
GmailApp.sendEmail("[email protected]", "PHISHING AVERTED!", `Total messages moved to spam: ${totalSpammed}`); | |
console.log(`Total messages moved to spam: ${totalSpammed}`); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment