Skip to content

Commit d5135f0

Browse files
authored
Merge pull request #20 from psycore8/dev071
Dev071
2 parents 376755e + 00e9a63 commit d5135f0

File tree

13 files changed

+289
-316
lines changed

13 files changed

+289
-316
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
## Features
88

9-
### Version 0.7.0
9+
### Version 0.7.1
1010

1111
- **core**
1212
- `extract` - [extract](https://www.heckhausen.it/shencode/wiki/core/extract) from/to offset
13-
- `formatout` - [display raw shellcodes](https://www.heckhausen.it/shencode/wiki/core/formatout) in `C++, C#` and more
1413
- `injection` - [inject shellcode](https://www.heckhausen.it/shencode/wiki/core/injection) into process (Windows only)
1514
- `msfvenom` - [create payloads](https://www.heckhausen.it/shencode/wiki/core/msfvenom) with msfvenom
15+
- `output` - [Inspect and display](https://www.heckhausen.it/shencode/wiki/core/output) files in different formats
1616
- **encoder**
1717
- `aes` - [Encrypt](https://www.heckhausen.it/shencode/wiki/encoder/aes) payload with AES
1818
- `bytebert` - advanced polymorphic encoder
@@ -27,6 +27,8 @@
2727
- **stager**
2828
- `meterpreter` - Initiate a `meterpreter/reverse_tcp` [stage](https://www.heckhausen.it/shencode/wiki/stager/meterpreter)
2929
- `sliver` - Initiate a `https` [sliver stage](https://www.heckhausen.it/shencode/wiki/stager/sliver)
30+
- **archive**
31+
- `formatout` - [display raw shellcodes](https://www.heckhausen.it/shencode/wiki/core/formatout) in `C++, C#` and more
3032

3133
## How to use
3234

@@ -45,14 +47,11 @@ Check out the [ShenCode Docs](https://heckhausen.it/shencode/wiki/) for more inf
4547

4648
## Release Notes
4749

48-
- `general` - setup routine, which handles the different packages and modules for Windows and Linux
49-
- `general` - new module parser
50-
- `general` - new start-up banners
51-
- `core/inject` - Suspend and Resume Technique
52-
- `core/inject` - VirtualProtectEx Technique
53-
- `encoder/bytebert` - advanced polymorphic encoder
54-
- `stager/meterpreter` - a reverse TCP Meterpreter stager
55-
- `stager/sliver` - a HTTPS Sliver stager
50+
- `general` - duplicated header fix
51+
- `general` - optimized header code
52+
- `general` - optimized help output
53+
- `core/output` - Rewritten output module, replaces `formatout`
54+
- `archiv/formatout` - deprecated module, use `output` instead
5655

5756
## References
5857

feedtest.x

Lines changed: 0 additions & 235 deletions
This file was deleted.

modules/aes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
def register_arguments(parser):
1313
parser.add_argument('-m', '--mode', choices=['encode', 'decode'], required=True, help='AES Operation mode, choose between encode and decode')
1414
parser.add_argument('-i', '--input', required=True, help='Input file for AES encoding')
15-
parser.add_argument('-o', '--output', required=True, help= 'Outputfile for AES encoding')
1615
parser.add_argument('-k', '--key', required=True, help='Key for AES encoding')
16+
parser.add_argument('-o', '--output', required=True, help= 'Outputfile for AES encoding')
1717

1818
class aes_encoder:
1919
Author = 'psycore8'

modules/feed.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
def register_arguments(parser):
88
parser.add_argument('-i', '--input', help='Input file for UUID encoding')
99
parser.add_argument('-o', '--output', help='Outputfile for ROR13 to ROL conversion')
10-
parser.add_argument('-r', '--reassemble', action='store_true', help='Reassemble fake feed to Shellcode')
11-
parser.add_argument('-u', '--uri', help='URI to fake feed')
10+
11+
grp = parser.add_argument_group('additional')
12+
grp.add_argument('-r', '--reassemble', action='store_true', help='Reassemble fake feed to Shellcode')
13+
grp.add_argument('-u', '--uri', help='URI to fake feed')
1214

1315
class feed_obfuscator:
1416
Author = 'psycore8'

0 commit comments

Comments
 (0)