Thales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 10 days agoMicrosoft Teams statussh.itjust.worksimagemessage-square213linkfedilinkarrow-up11.19Karrow-down111
arrow-up11.18Karrow-down1imageMicrosoft Teams statussh.itjust.worksThales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 10 days agomessage-square213linkfedilink
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up4·10 days agoI have a ~10 line powershell script that presses the scroll lock key for 1 second every 60 seconds. Way simpler.
minus-squaredingleberrylover@lemmy.worldlinkfedilinkarrow-up6·10 days agoI have a similar one. Much simpler. Here it is: $wsh = New-Object -ComObject WScript.Shell while(1) { $wsh.SendKeys(‘+F{15}‘) Start-Sleep -seconds 59 }
minus-squareMagnum, P.I.@infosec.publinkfedilinkarrow-up3·10 days agoThis will show up in process monitoring.
minus-squareJcbAzPx@lemmy.worldlinkfedilinkEnglisharrow-up1·10 days agoAnd sit in a log that no one is paid enough to continuously check.
minus-squareMagnum, P.I.@infosec.publinkfedilinkarrow-up2·10 days agoShould be picked up as suspicious behavior and highlighted, your company just isn’t big enough.
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up2·10 days agoHighlight doubt it. Anyway I run powershell scripts all the time when forced onto Windows, so 🤷♀️
I have a ~10 line powershell script that presses the scroll lock key for 1 second every 60 seconds. Way simpler.
I have a similar one. Much simpler. Here it is:
$wsh = New-Object -ComObject WScript.Shell while(1) { $wsh.SendKeys(‘+F{15}‘) Start-Sleep -seconds 59 }This will show up in process monitoring.
And sit in a log that no one is paid enough to continuously check.
Should be picked up as suspicious behavior and highlighted, your company just isn’t big enough.
Highlight doubt it. Anyway I run powershell scripts all the time when forced onto Windows, so 🤷♀️