Skip to content

Commit b06db60

Browse files
committed
Fix typos
1 parent 7b6a8af commit b06db60

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

documentation/modules/exploit/windows/misc/commvault_cmd_exec.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ platform that contains modules to back up, restore, archive, replicate, and sear
77

88
According to public documentation, the data is protected by installing agent software on the
99
physical or virtual hosts, which use the OS or application native APIs to protect data in a
10-
consistent state. Production data is processed by the agent on client computers and backuped
10+
consistent state. Production data is processed by the agent on client computers and backed
1111
up through a data manager (the MediaAgent) to disk, tape, or cloud storage. All data
1212
management activity in the environment is tracked by a centralized server (called CommServe),
1313
and can be managed by administrators through a central user interface. End users can access
@@ -72,7 +72,7 @@ BOOL WINAPI CreateProcess(
7272
```
7373

7474
Since ```CreateProcess()``` is meant to replace ```WinExec()``` according to Microsoft, we can create a
75-
break point there fist in our debugger (WinDBG), and we hit it:
75+
breakpoint there first in our debugger (WinDBG), and we hit it:
7676

7777
```
7878
0:044> g
@@ -153,7 +153,7 @@ If we take a closer look at the ```execCmd``` function, we can tell the purpose
153153
.text:000000018015A0D2 jz loc_18015A220
154154
```
155155

156-
However, if you don't call one of these processes, the ```exeCmd``` will assume you want to run your
156+
However, if you don't call one of these processes, the ```execCmd``` will assume you want to run your
157157
custom process, and pass it to ```CreateProcess``` anyway:
158158

159159
```
@@ -190,8 +190,8 @@ custom process, and pass it to ```CreateProcess``` anyway:
190190
```
191191

192192
It is unclear whether allowing an arbitrary custom process is intentional or not, it is unsafe
193-
anyway considering the cvd process binds to 0.0.0.0, so anybody can access to it under the context
194-
of SYSTEM.
193+
anyway considering the cvd process binds to 0.0.0.0, so anybody can gain access to it under the
194+
context of SYSTEM.
195195

196196
## Using the Metasploit Module
197197

0 commit comments

Comments
 (0)