Thales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 1 month agoMicrosoft Teams statussh.itjust.worksimagemessage-square213linkfedilinkarrow-up11.2K
arrow-up11.2KimageMicrosoft Teams statussh.itjust.worksThales@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 1 month agomessage-square213linkfedilink
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up4·1 month 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·1 month 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·1 month agoThis will show up in process monitoring.
minus-squareJcbAzPx@lemmy.worldlinkfedilinkEnglisharrow-up1·1 month agoAnd sit in a log that no one is paid enough to continuously check.
minus-squareMagnum, P.I.@infosec.publinkfedilinkarrow-up1·1 month agoShould be picked up as suspicious behavior and highlighted, your company just isn’t big enough.
minus-squareKyuubiNoKitsune@lemmy.blahaj.zonelinkfedilinkarrow-up2·1 month agoYup, mine is similar. Highlight 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.
Yup, mine is similar.
Highlight doubt it. Anyway I run powershell scripts all the time when forced onto Windows, so 🤷♀️