@Viss Here's the gist with the payloads
https://gist.github.com/winterknight1337/ebc236af597f3e93aeaa2882168ad748. These were compiled by one of the students and shared with us.
h/t @da_667
https://infosec.exchange/@da_667/116291164722073458
malware except it only infects networking appliances that can make pc speaker beeps and boops and forces them to loop through a cacophany of all the shit we used to play on the pc speaker as kids.
mario, doom music, heretic music, descent, star wars, various shit from the mod days
this has been 'ransomware noodling with viss'.
if you select any one of these to use in a scenario, or mention as a real threat to your org, please link to this thread or give me a hat tip or something. that would be kind of you.
bonus points if you hire Phobos to run a tabletop.
@Viss
This is pretty similar to what they actually do. They're a little more sneaky about it to make reverting difficult for victims.
The actor gets admin on a victim cloud account, then spin up an account they control. They set up cross account sharing from the victim account (AWS RAM), and then deploy the cryptomining on the account they control using victim compute.
The only thing victim sees is the RAM enablement logs, if they're monitoring at all, and compute charges, but none of the actual compute instances.
ransomware except it converts all your documents to a confluence web site and redirects all email so that you have to read/send all emails using jira.
@Viss okay, so hear me out...
What if, and we can decide who later, we just disallow reply-all without some kind of quiz first?
Like two lists, one list allows reply-all's and the other list only gets reply-all's when they figure out Neal.fun's password game or something.
@Viss
See!
This... this is why this tool should be released on to the public.
@Viss How about
import subprocess
import time
CMD = ["eject", "-t"]
DELAY_SECONDS = 1.0
def main():
while True:
try:
subprocess.run(CMD, check=False)
except Exception:
# ignore errors and continue
pass
time.sleep(DELAY_SECONDS)
if __name__ == "__main__":
main()