Skip to content

Adding Users

TheGetch edited this page Jan 5, 2021 · 1 revision

Adding Users

Adding Users

Windows:

  1. created user :
net user hacker hacker93 /add
  1. Added user to admin:
net localgroup administrators hacker /add

Linux: (view groups: cat /etc/group)

adduser hacker # (alt, use full path: /usr/sbin/adduser hacker)
passwd hacker
useradd -G {group-name} hacker

Exaample: add user to sudo:

/usr/sbin/usermod -aG sudo hacker

_Sidebar

1. Recon

Ping Sweep

CIDR to IP

2. Enumeration

Services

05. HTTP (80,443,8080,8443,etc.)

3. Exploitation

4. Post Exploiation

5. High Value Information

Hashes

6. Reporting

7. Random Notes/Useful Tidbits

Clone this wiki locally