change description
parent
6bcb9b523b
commit
0a398a59c5
|
@ -15,6 +15,9 @@ class MetasploitModule < Msf::Encoder::Alphanum
|
||||||
'Description' => %q{
|
'Description' => %q{
|
||||||
Encodes payloads as alphanumeric mixedcase text. This encoder uses
|
Encodes payloads as alphanumeric mixedcase text. This encoder uses
|
||||||
SkyLined's Alpha2 encoding suite.
|
SkyLined's Alpha2 encoding suite.
|
||||||
|
A pure alpha encoder is impossible without having a register that points at or near the shellcode.
|
||||||
|
In a default configuration the first few bytes at the beginning are an fnstenv getpc stub (the same as used in shikata_ga_nai) and thus are not alphanumeric.
|
||||||
|
You can set BufferRegister for full alpha (see Encoder options for details).
|
||||||
},
|
},
|
||||||
'Author' => [ 'pusscat', 'skylined' ],
|
'Author' => [ 'pusscat', 'skylined' ],
|
||||||
'Arch' => ARCH_X86,
|
'Arch' => ARCH_X86,
|
||||||
|
|
|
@ -18,6 +18,9 @@ class MetasploitModule < Msf::Encoder::Alphanum
|
||||||
'Description' => %q{
|
'Description' => %q{
|
||||||
Encodes payloads as alphanumeric uppercase text. This encoder uses
|
Encodes payloads as alphanumeric uppercase text. This encoder uses
|
||||||
SkyLined's Alpha2 encoding suite.
|
SkyLined's Alpha2 encoding suite.
|
||||||
|
A pure alpha encoder is impossible without having a register that points at or near the shellcode.
|
||||||
|
In a default configuration the first few bytes at the beginning are an fnstenv getpc stub (the same as used in shikata_ga_nai) and thus are not alphanumeric.
|
||||||
|
You can set BufferRegister for full alpha (see Encoder options for details).
|
||||||
},
|
},
|
||||||
'Author' => [ 'pusscat', 'skylined' ],
|
'Author' => [ 'pusscat', 'skylined' ],
|
||||||
'Arch' => ARCH_X86,
|
'Arch' => ARCH_X86,
|
||||||
|
|
Loading…
Reference in New Issue