-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0 - Roadmap
38 lines (22 loc) · 1.04 KB
/
0 - Roadmap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
OFFENSIVE-SECURITY CERTIFIED PROFESSIONAL (OSCP)
OSCP Complete guide ----------------------------------
Steps to be followed for the machine solution;
1. Port scan
2. Enumeration
3. Vulnerability research
4. The exploitation of vulnerability (user shell)
5. Privilege escalation (root/administrator shell)
-------------------------------------------------------------------------------------------------------------------------------
File search;
#for Windows
dir C:\ /s/b | find /i “root.txt”
#for Linux;
updatedb
locate root.txt
-------------------------------------------------------------------------------------------------------------------------------
File read;
#for Windows
type C:\Users\Administrator\Desktop\root.txt
#for Linux
cat /root/root.txt
-------------------------------------------------------------------------------------------------------------------------------