Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Adversaries may interrupt availability of system and network resources by inhibiting access to accounts utilized by legitimate users.
.claude/skills/cyberstrikeus-t1531-account-access-removal/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 42% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 12% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 61% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 47% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -2% | 0% |
Adversaries may interrupt availability of system and network resources by inhibiting access to accounts utilized by legitimate users. Accounts may be deleted, locked, or manipulated (ex: changed credentials, revoked permissions for SaaS platforms such as Sharepoint) to remove access to accounts. Adversaries may also subsequently log off and/or perform a System Shutdown/Reboot to set malicious changes into place.
In Windows, Net utility, <code>Set-LocalUser</code> and <code>Set-ADAccountPassword</code> PowerShell cmdlets may be used by adversaries to modify user accounts. Accounts could also be disabled by Group Policy. In Linux, the <code>passwd</code> utility may be used to change passwords. On ESXi servers, accounts can be removed or modified via esxcli (system account set, system account remove).
Adversaries who use ransomware or similar attacks may first perform this and other Impact behaviors, such as Data Destruction and Defacement, in order to impede incident response/recovery before completing the Data Encrypted for Impact objective.
Platforms: Linux, macOS, Windows, SaaS, IaaS, Office Suite, ESXi
The following tests are from Atomic Red Team and provide actionable ways to test this technique:
Changes the user password to hinder access attempts. Seen in use by LockerGoga. Upon execution, log into the user account "AtomicAdministrator" with the password "HuHuHUHoHo283283".
Supported Platforms: windows Elevation Required: Yes
cmdnet user #{user_account} #{new_user_password} /add net.exe user #{user_account} #{new_password}
Deletes a user account to prevent access. Upon execution, run the command "net user" to verify that the new "AtomicUser" account was deleted.
Supported Platforms: windows Elevation Required: Yes
cmdnet user #{user_account} #{new_user_password} /add net.exe user #{user_account} /delete
This test will remove an account from the domain admins group
Supported Platforms: windows
powershell$PWord = ConvertTo-SecureString -String #{super_pass} -AsPlainText -Force $Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList #{super_user}, $PWord if((Get-ADUser #{remove_user} -Properties memberof).memberof -like "CN=Domain Admins*"){ Remove-ADGroupMember -Identity "Domain Admins" -Members #{remove_user} -Credential $Credential -Confirm:$False } else{ write-host "Error - Make sure #{remove_user} is in the domain admins group" -foregroundcolor Red }
Dependencies:
This test changes the user password to hinder access to the account using passwd utility.
Supported Platforms: macos, linux Elevation Required: Yes
bashpasswd #{user_account} #enter admin password > enter new password > confirm new password
This test deletes the user account using the dscl utility.
Supported Platforms: macos Elevation Required: Yes
bashdscl . -delete /Users/#{user_account} #enter admin password
If Atomic Red Team tests are not applicable, manually verify the technique by:
No specific mitigations documented for this technique.
| Finding | Severity | Impact | | ------------------------------------------- | -------- | ------ | | Account Access Removal technique applicable | High | Impact |
| CWE ID | Title | | ------- | --------------------------------- | | CWE-400 | Uncontrolled Resource Consumption |
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 64,753 | 31,089 | -52% | 1 | 1 | 0% | 4,104 | 5,824 | +42% | 0 | 0 | — |
case-02 | fail→fail | 28,266 | 20,520 | -27% | 1 | 1 | 0% | 4,009 | 3,578 | -11% | 0 | 0 | — |
case-03 | pass→pass | 43,328 | 28,336 | -35% | 1 | 1 | 0% | 3,399 | 1,910 | -44% | 0 | 0 | — |
case-04 | pass→pass | 13,382 | 14,466 | +8% | 1 | 1 | 0% | 1,115 | 2,568 | +130% | 0 | 0 | — |
case-05 | fail→pass | 25,036 | 16,777 | -33% | 1 | 1 | 0% | 2,654 | 2,973 | +12% | 0 | 0 | — |
case-06 | fail→pass | 13,410 | 8,595 | -36% | 1 | 1 | 0% | 1,153 | 1,859 | +61% | 0 | 0 | — |
case-07 | fail→fail | 15,467 | 21,672 | +40% | 1 | 1 | 0% | 1,921 | 3,166 | +65% | 0 | 0 | — |
case-08 | pass→pass | 13,505 | 20,729 | +53% | 1 | 1 | 0% | 2,237 | 4,144 | +85% | 0 | 0 | — |
case-09 | fail→pass | 15,424 | 5,815 | -62% | 1 | 1 | 0% | 1,481 | 2,171 | +47% | 0 | 0 | — |
case-10 | pass→pass | 49,184 | 21,745 | -56% | 1 | 1 | 0% | 1,888 | 1,722 | -9% | 0 | 0 | — |
case-11 | pass→pass | 20,383 | 3,393 | -83% | 1 | 1 | 0% | 2,558 | 1,759 | -31% | 0 | 0 | — |
case-12 | fail→pass | 13,362 | 4,370 | -67% | 1 | 1 | 0% | 1,881 | 1,852 | -2% | 0 | 0 | — |
case-13 | pass→pass | 15,028 | 9,570 | -36% | 1 | 1 | 0% | 1,453 | 2,000 | +38% | 0 | 0 | — |
case-14 | fail→pass | 20,113 | 3,976 | -80% | 1 | 1 | 0% | 2,027 | 1,601 | -21% | 0 | 0 | — |
case-15 | pass→pass | 3,627 | 12,825 | +254% | 1 | 1 | 0% | 640 | 1,587 | +148% | 0 | 0 | — |
case-16 | fail→pass | 22,191 | 15,853 | -29% | 1 | 1 | 0% | 2,421 | 2,622 | +8% | 0 | 0 | — |
case-17 | fail→pass | 30,332 | 8,938 | -71% | 1 | 1 | 0% | 3,638 | 1,886 | -48% | 0 | 0 | — |
case-18 | pass→pass | 28,904 | 15,756 | -45% | 1 | 1 | 0% | 3,191 | 4,194 | +31% | 0 | 0 | — |
case-19 | pass→pass | 11,633 | 6,440 | -45% | 1 | 1 | 0% | 1,662 | 2,470 | +49% | 0 | 0 | — |
case-20 | pass→pass | 27,967 | 27,068 | -3% | 1 | 1 | 0% | 3,201 | 5,091 | +59% | 0 | 0 | — |
case-21 | pass→pass | 37,409 | 31,983 | -15% | 1 | 1 | 0% | 3,861 | 5,238 | +36% | 0 | 0 | — |
case-22 | pass→pass | 24,672 | 32,299 | +31% | 1 | 1 | 0% | 3,160 | 5,228 | +65% | 0 | 0 | — |
case-23 | pass→pass | 28,878 | 29,583 | +2% | 1 | 1 | 0% | 3,246 | 4,958 | +53% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +35 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.