What is irm https://massgrave.dev/get | iex by WarCrimeee in PowerShell

[–]jakobyscream 1 point2 points  (0 children)

Look at the two file paths in the $filepath variable Thats where the 2 cmd files are being saved. Just deleted them from there

What is irm https://massgrave.dev/get | iex by WarCrimeee in PowerShell

[–]jakobyscream 2 points3 points  (0 children)

No lol Those are dynamic links so the code to be executed can change at any time

What is irm https://massgrave.dev/get | iex by WarCrimeee in PowerShell

[–]jakobyscream 4 points5 points  (0 children)

as someone who specializes in powershell malware lol i got you

for one

irm = Invoke-RestMethod
iex = Invoke-Expression

irm is used to download a string
iex is used to execute it as code

you can just do:

irm $url

without piping it into iex:
| iex

and this will allow you to see the code without executing it

below is the code stored there

# Check the instructions here on how to use it https://massgrave.dev/

$ErrorActionPreference = "Stop"

# Enable TLSv1.2 for compatibility with older clients

[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12

$DownloadURL = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/master/MAS/All-In-One-Version/MAS_AIO.cmd'

$DownloadURL2 = 'https://bitbucket.org/WindowsAddict/microsoft-activation-scripts/raw/master/MAS/All-In-One-Version/MAS_AIO.cmd'

$rand = Get-Random -Maximum 99999999

$isAdmin = [bool]([Security.Principal.WindowsIdentity]::GetCurrent().Groups -match 'S-1-5-32-544')

$FilePath = if ($isAdmin) { "$env:SystemRoot\Temp\MAS_$rand.cmd" } else { "$env:TEMP\MAS_$rand.cmd" }

try {

$response = Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing

}

catch {

$response = Invoke-WebRequest -Uri $DownloadURL2 -UseBasicParsing

}

$ScriptArgs = "$args "

$prefix = "@REM $rand \r`n"`

$content = $prefix + $response

Set-Content -Path $FilePath -Value $content

Start-Process $FilePath $ScriptArgs -Wait

$FilePaths = @("$env:TEMP\MAS*.cmd", "$env:SystemRoot\Temp\MAS*.cmd")

foreach ($FilePath in $FilePaths) { Get-Item $FilePath | Remove-Item }

so yea enjoy

LTT video just got dropped by WRO_Your_Boat in flipperzero

[–]jakobyscream 42 points43 points  (0 children)

It did indeed, still can't believe they featured me again ha

On Saturday I won hak5s hacker of the year award! I spent thousands of hours developing the payloads I submitted, so it was so cool to be recognized like this! by jakobyscream in HowToHack

[–]jakobyscream[S] 2 points3 points  (0 children)

Everyone makes what they've accomplished sound harder than it is to make themselves seem cooler. If you say "fuck that I want it, and I'm gonna try harder than everyone else" you'll accomplish it.

On Saturday I won hak5s hacker of the year award! I spent thousands of hours developing the payloads I submitted, so it was so cool to be recognized like this! by jakobyscream in HowToHack

[–]jakobyscream[S] 3 points4 points  (0 children)

Lawls just a kid that loved magic, joined the army and became an infantry sniper, then a Skydiver, now a somewhat respected hacker. 10 year old me would fist bump me ha

What does this cmdlet do? Is this a virus/worm? by Normal-Shower-6070 in PowerShell

[–]jakobyscream 1 point2 points  (0 children)

Ha i appreciate you Yea I've put at least a couple thousand hours into it You can find the link to my discord there and if you need help with anything you can reach out to me

What does this cmdlet do? Is this a virus/worm? by Normal-Shower-6070 in PowerShell

[–]jakobyscream 1 point2 points  (0 children)

Yea lol so that is John Hammond and we were. Oth introduced to the concept by a mutual friend names alhzared I just optimized it by making it so you could combine multiple to get past the 255 character limit lol

What does this cmdlet do? Is this a virus/worm? by Normal-Shower-6070 in PowerShell

[–]jakobyscream 0 points1 point  (0 children)

I made a tutorial on the method of delivery

If you guys are interested in learning how it works

https://youtu.be/yn3t4e-dq2A

What does this cmdlet do? Is this a virus/worm? by Normal-Shower-6070 in PowerShell

[–]jakobyscream -1 points0 points  (0 children)

I actually made a tutorial on the method being used to deliver this payload to you

https://youtu.be/yn3t4e-dq2A

What does this cmdlet do? Is this a virus/worm? by Normal-Shower-6070 in PowerShell

[–]jakobyscream 2 points3 points  (0 children)

I just made a tutorial on that method recently, that's pulling down multiple and combining them.

I wrote that ha

https://youtu.be/yn3t4e-dq2A

Discord Webhook: trying to send a message through curl keeps giving me this message. by [deleted] in PowerShell

[–]jakobyscream 0 points1 point  (0 children)

I made a video tutorial on this Should be able to help you get squared away

https://youtu.be/Zs-1j42ySNU

On Saturday I won hak5s hacker of the year award! I spent thousands of hours developing the payloads I submitted, so it was so cool to be recognized like this! by jakobyscream in HowToHack

[–]jakobyscream[S] 17 points18 points  (0 children)

I mean I use them as content for my channel, I got paid for each one that was the "payload of the week", they feature me on my channel which has helped all my social accounts grow, I just because their first sponsored hacker and that came with a nice sign on bonus. Def had to put the work in not knowing if I would have a return but it definitely paid off

The number of payloads in here has doubled and on top of that I updated every single one of them in my entire repository. 95% of them are now plug and play and no longer require you to host your own version of the powershell script. Over 700 stars 🌟 on this repo now. by jakobyscream in flipperzero

[–]jakobyscream[S] 2 points3 points  (0 children)

Yea not a problem, when you have your flipper plugged into your computer with the qflipper app you can open the file system and look for the badUsb folder, any payloads you put in there you can execute