Thales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 3 days agoMicrosoft Teams statussh.itjust.worksimagemessage-square206linkfedilinkarrow-up11.17Karrow-down112
arrow-up11.16Karrow-down1imageMicrosoft Teams statussh.itjust.worksThales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 3 days agomessage-square206linkfedilink
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up4·3 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·3 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·3 days agoThis will show up in process monitoring.
minus-squareJcbAzPx@lemmy.worldlinkfedilinkEnglisharrow-up1·2 days agoAnd sit in a log that no one is paid enough to continuously check.
minus-squareMagnum, P.I.@infosec.publinkfedilinkarrow-up1·2 days agoShould be picked up as suspicious behavior and highlighted, your company just isn’t big enough.
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up2·2 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 🤷♀️