OSCP-CPTS NOTES
TwitterGithubLinkedinInstagramDiscord
  • oscp-cpts-notes
  • Pivoting & Tunneling
    • Local Port Forwarding
    • Remote Port Forwarding
    • Dynamic Port Forwarding
    • Ligolo-ng
  • Linux Privilege Escalation
    • Gathering Information of the System
    • Capabilities
    • Group Based
    • SUID Privilege Escalation
    • Cron Job
    • Exploiting NFS weak Permission
    • Sudo + LD_PRELOAD (Shared Libraries)
    • Shared Object Manipulation
    • Python Library Hijacking
  • Windows Privilege Escalation
    • Gathering Information of the System
    • User Privileges
      • SeImpersonatePrivilege and SeAssignPrimaryToken
      • SeDebugPrivilege
      • SeTakeOwnershipPrivilege
    • Group Privileges
      • Backup Operators
      • DnsAdmins
      • Server Operators
      • Always Install Elevated
      • Print Operators
      • Event Log Readers
      • Hyper-V Administrators
    • Credential Theft
  • Active Directory Attacks
    • Enumeration
    • Initial Foothold
    • Gathering Users & Password Policies
    • Password Spraying
    • Credentialed Enumeration From Linux
    • Credentialed Enumeration From Windows
    • Kerberoasting - From Linux
    • Kerberoasting - From Windows
  • Beyond OSCP - CPTS
    • RED TEAMING
      • Windows Local Persistence
        • Tampering With Unprivileged Accounts
        • Backdooring Files
        • Abusing Services
        • Abusing Scheduled Tasks
        • Logon Triggered Persistence
        • Backdooring the Login Screen / RDP
        • Persisting Through Existing Services
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Windows Privilege Escalation
  2. Group Privileges

Server Operators

Overview

The Server Operators group is a built-in security group in Windows Server environments. Members of this group are granted specific administrative privileges that allow them to perform server-related tasks without having full administrative rights. This group is primarily designed for delegated server management.

Key Privileges of Server Operators

Members of the Server Operators group have the following privileges:

  1. Start and Stop Services:

    • They can start, stop, and pause services on the server, which is crucial for server maintenance and troubleshooting.

  2. Manage Shared Resources:

    • Server Operators can create, modify, and delete shared folders and manage printer shares, allowing them to administer shared resources effectively.

  3. Backup and Restore Operations:

    • Members can back up files and restore files from backup, making it easier to manage data recovery processes.

  4. Log on Locally:

    • Members have the ability to log on locally to the server, which allows them to directly manage the server through its console.

  5. Manage Local Users and Groups:

    • They can add or remove users from local groups and manage local accounts, which is important for user management tasks.

Limitations

While the Server Operators group has significant privileges, it does not have the same level of access as the Domain Admins group. Notably, Server Operators cannot:

  • Manage Active Directory: They do not have permissions to modify Active Directory objects or group memberships outside of local server settings.

  • Modify System Settings: Critical system configurations that affect the entire domain or security policies are beyond their reach.

PreviousDnsAdminsNextAlways Install Elevated

Last updated 7 months ago

Was this helpful?