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
| # | |
| # Quick/Dirty IRC Library for use with Aggressor Script | |
| # https://www.cobaltstrike.com/aggressor-script/index.html | |
| # | |
| # irc_close($handle); | |
| sub irc_close { | |
| println($1, "QUIT :Good bye!"); | |
| closef($1); | |
| } |
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
| # | |
| # This code is related to the Attacks -> Find Attacks and Attacks -> Hail Mary features | |
| # | |
| popup attacks { | |
| item "&Find Attacks" { | |
| spawn(&runFindAttacks); | |
| } | |
| item "&Hail Mary" { |
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
| # | |
| # This code is related to the Attacks -> Find Attacks and Attacks -> Hail Mary features | |
| # | |
| sub exploitPorts { | |
| local('$exploit %exploits $options $port'); | |
| foreach $exploit (modules("exploits")) { | |
| $options = options("exploit", $exploit); | |
| if ('RPORT' in $options) { |
NewerOlder