This commit is contained in:
Khairul Azhar Kasmiran 2023-09-25 10:34:12 +08:00 committed by GitHub
parent a6b62525e5
commit 729edc8919
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 16 deletions

View file

@ -176,7 +176,7 @@ Usage: w[?] # Write commands
| wB[-] # Set or unset bits with given value
| wv[1248] # Write value of given size
| w0 <len> # Write <len> bytes with value 0x00
| w<1248><+-> [<n>] # increment/decrement byte, word, ..
| w<1248><+-> [<n>] # Increment/decrement byte, word, ...
| w6<de> # Write base64 [d]ecoded or [e]ncoded string
| we<nsx> # Extend write operations (insert bytes instead of replacing)
| wu <file> # Apply unified hex patch (see output of cu)
@ -184,13 +184,13 @@ Usage: w[?] # Write commands
| wc[j*-+ip?] # Write cache commands
| wz <string> # Write zero-terminated string
| wf[xfs] # Write data from file, socket, offset
| ww <string> # Write wide 16 little endian string
| ww <string> # Write wide (16-bit) little-endian string
| wx[f] # Write hexadecimal data
| wa[ifo] # Write opcodes
| wb <hex> # Write in current block an hexstring cyclically
| wb <hex> # Write in current block a hexstring cyclically
| wm[-] # Set binary mask hexpair to be used as cyclic write mask
| wo<?> # Write a block with a special operation
| wD[/] # Write De Bruijn Pattern
| wD[/] # Write de Bruijn pattern
| wd <src> <len> # Duplicate <len> bytes from <src> offset to current seek
| ws <string> # Write 1 byte for length and then the string
```

View file

@ -16823,7 +16823,7 @@ static const RzCmdDescHelp write_zero_help = {
};
static const RzCmdDescHelp write_incdec_help = {
.summary = "increment/decrement byte, word, ..",
.summary = "Increment/decrement byte, word, ...",
.args_str = " [<n>]",
.options = "<1248><+->",
};
@ -17353,7 +17353,7 @@ static const RzCmdDescArg write_wide_string_args[] = {
{ 0 },
};
static const RzCmdDescHelp write_wide_string_help = {
.summary = "Write wide 16 little endian string",
.summary = "Write wide (16-bit) little-endian string",
.args = write_wide_string_args,
};
@ -17476,7 +17476,7 @@ static const RzCmdDescArg write_block_args[] = {
{ 0 },
};
static const RzCmdDescHelp write_block_help = {
.summary = "Write in current block an hexstring cyclically",
.summary = "Write in current block a hexstring cyclically",
.args = write_block_args,
};
@ -17764,7 +17764,7 @@ static const RzCmdDescHelp write_op_encrypt_help = {
};
static const RzCmdDescHelp wD_help = {
.summary = "Write De Bruijn Pattern",
.summary = "Write de Bruijn pattern",
};
static const RzCmdDescArg write_debruijn_args[] = {
{
@ -17776,7 +17776,7 @@ static const RzCmdDescArg write_debruijn_args[] = {
{ 0 },
};
static const RzCmdDescHelp write_debruijn_help = {
.summary = "Write a De Bruijn Pattern of length <len> at the current offset",
.summary = "Write a de Bruijn pattern of length <len> at the current offset",
.args = write_debruijn_args,
};
@ -17790,7 +17790,7 @@ static const RzCmdDescArg write_debruijn_find_args[] = {
{ 0 },
};
static const RzCmdDescHelp write_debruijn_find_help = {
.summary = "Returns the offset where <value> can be found in a De Bruijn Pattern",
.summary = "Returns the offset where <value> can be found in a de Bruijn pattern",
.description = "It search for a particular value in the pattern as returned by the `wD` command. <value> is assumed to be a number of as few bytes as necessary, in the endian specified by cfg.bigendian.",
.args = write_debruijn_find_args,
};

View file

@ -143,7 +143,7 @@ commands:
type: RZ_CMD_ARG_TYPE_NUM
- name: w
cname: write_incdec
summary: increment/decrement byte, word, ..
summary: Increment/decrement byte, word, ...
options: <1248><+->
args_str: " [<n>]"
type: RZ_CMD_DESC_TYPE_INNER
@ -452,7 +452,7 @@ commands:
optional: true
- name: ww
cname: write_wide_string
summary: Write wide 16 little endian string
summary: Write wide (16-bit) little-endian string
args:
- name: string
type: RZ_CMD_ARG_TYPE_STRING
@ -548,7 +548,7 @@ commands:
comment: Swap the condition of the current conditional instruction
- name: wb
cname: write_block
summary: Write in current block an hexstring cyclically
summary: Write in current block a hexstring cyclically
args:
- name: hex
type: RZ_CMD_ARG_TYPE_STRING
@ -709,17 +709,17 @@ commands:
arg_str: ""
comment: "Content before: 1122334455667788; Content after: 4433221188776655"
- name: wD
summary: Write De Bruijn Pattern
summary: Write de Bruijn pattern
subcommands:
- name: wD
cname: write_debruijn
summary: Write a De Bruijn Pattern of length <len> at the current offset
summary: Write a de Bruijn pattern of length <len> at the current offset
args:
- name: len
type: RZ_CMD_ARG_TYPE_RZNUM
- name: wD/
cname: write_debruijn_find
summary: Returns the offset where <value> can be found in a De Bruijn Pattern
summary: Returns the offset where <value> can be found in a de Bruijn pattern
description: >
It search for a particular value in the pattern as returned by the
`wD` command. <value> is assumed to be a number of as few bytes as