Andrew Pla Tech

PowerShell Wednesdays are now on YouTube! 🚀 Learn from Lucas Allman about pipelines and level up your skills. Join us live every Wed at 2PM ET on PDQ Discord! Full video in comments. #PowerShellWednesday #PowerShell

Joe Loveless

New blog post before MMSMOA 2025. I wanted to write something before then. I went into some details on how we randomize our rollouts of #Intune policies with a #Powershell function to randomize an #Entra group.

joeloveless.com/2025/04/entra-

Creating Intune Randomized Rollouts with Entra Group Membership

Creating Intune Randomized Rollouts with Entra Group…

JoeLoveless.com
Jeff Hicks 🐶🎼🍷🖥️

Have you seen what's new in the #PowerShell Gallery? Use the PSGallery reports. github.com/jdhitsolutions/PSGa

↯ Klaatu - Some Brave Apollo ↯

Run #XSLT transform on #XML file in #dotnet #PowerShell

$filedatetime = $( get-date -format 'yyyyMMdd hhmmss ffff' )
$filedate = $filedatetime.substring(0,8)
$myxsltfile = 'xyz.xsl'
$myfilein = 'xyz_' + $filedate + '.rss'
$myfileout = 'xyz_' + $filedate + '.txt'

Write-Output "xyz's RSS feed to Text on " + $filedate

$xslt = New-Object System.Xml.Xsl.XslCompiledTransform;
$xslt.load( $myxsltfile )
$xslt.Transform( $myfilein , $myfileout )

Write-Output " Done."

@spencer @ryno @eriner

Sass, David

Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount

#PowerShell 🤦🏻‍♂️

Matthew Dowst

Your weekly dose of PowerShell magic has arrived! Discover Announcements, Blogs, Modules, and more in PowerShell Weekly for April 18, 2025. Time to level up!
#PowerShell #Automation #TechNews
psweekly.dowst.dev/?p=7763

DOWST.DEV | April 18, 2025

psweekly.dowst.dev
Robert Kingett

I've come to the conclusion that the command line is peak UI. It's fast, and it doesn't freeze as often. I had an issue where I tried to delete a task in the Windows Task Scheduler and every time I would try, the UI froze on me. I piped the below into Powershell and it was deleted! No lag, no nothing!

Unregister-ScheduledTask -TaskName "RClone Backup Writings"

#PowerShell #CommandLine #Terminal #CommandPrompt

OTX Bot

Threat actors misuse Node.js to deliver malware and other malicious payloads

Since October 2024, threat actors have been leveraging Node.js to deliver malware and payloads for information theft and data exfiltration. A recent malvertising campaign uses cryptocurrency trading themes to lure users into downloading malicious installers. The attack chain includes initial access, persistence, defense evasion, data collection, and payload delivery. The malware gathers system information, sets up scheduled tasks, and uses PowerShell for various malicious activities. Another emerging technique involves inline JavaScript execution through Node.js. Recommendations include educating users, monitoring Node.js execution, enforcing PowerShell logging, and implementing endpoint protection.

Pulse ID: 67fec5ac1e94a608250d9aa2
Pulse Link: otx.alienvault.com/pulse/67fec
Pulse Author: AlienVault
Created: 2025-04-15 20:46:36

Be advised, this data is unverified and should be considered preliminary. Always do further verification.

#CyberSecurity #Endpoint #InfoSec #InformationTheft #Java #JavaScript #Malvertising #Malware #Nodejs #OTX #OpenThreatExchange #PowerShell #RAT #ScriptExecution #bot #cryptocurrency #AlienVault

Andrew Pla Tech

If you missed it, check out my chat from #PowerShell Summit with @franklesniak@infosec.exchangeinfosec.exchange and David R.

Frank is longtime bar session guest and interviews me for a bit, but only after sharing game on how to grow and capitalize on your career

David is a listener and first-timer and shares their journey to #PSHSummit

Listen: powershellpodcast.podbean.com/

Lenin alevski 🕵️💻

New Open-Source Tool Spotlight 🚨🚨🚨

Invoke-Obfuscation is a PowerShell framework for generating heavily obfuscated scripts. It simulates attacker techniques, allowing defenders to test detection systems against syntax manipulation in versions 2.0+. A valuable tool for Blue Teams refining PowerShell monitoring. #PowerShell #CyberSecurity

🔗 Project link on #GitHub 👉 github.com/danielbohannon/Invo

#Infosec #Cybersecurity #Software #Technology #News #CTF #Cybersecuritycareer #hacking #redteam #blueteam #purpleteam #tips #opensource #cloudsecurity

✨
🔐 P.S. Found this helpful? Tap Follow for more cybersecurity tips and insights! I share weekly content for professionals and people who want to get into cyber. Happy hacking 💻🏴‍☠️

Andrew Pla Tech

I caught up with first-time attendee, Lucas, about their biggest takeaway from #PSHSummit 2025 so far

#PowerShell #Community

Taylor Parizo

I just learned Powershell has a ‘WhatIf’ parameter to show what a command will do before actually executing it.
#powershell