ronin-payloads 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2ab679d7311dab9baaff45c264e2a651a09530b5790eed2611060b66e776585
4
- data.tar.gz: 7058d3c5e5f25f947e46cc651f4d7de2e7e3878578be2b0cb778f35864f2fdfd
3
+ metadata.gz: c4b7d7bfb17f1d468e0aa0e35ed2e8c6a6f40c44feb5f8d892b9bad123b7db36
4
+ data.tar.gz: ffc39347b4899289faa6e94ef6485e97a69b73e4e76048960309b1b2cd8751e1
5
5
  SHA512:
6
- metadata.gz: d42c63a5fd2d02b157947de808e394fc60f052c22700b073cc632b9c32f40bec44570d09b0141bcfc97dfe28634869cf1e6c2367b62285ec38896b053d66444b
7
- data.tar.gz: d87cfacd3e70ad04e553644d0956653ec6b9a6673645dddd14ac63c4699e9fe1f30b98224f0c665035950fe1578a7689e21650438f88eb8c15e1491a7ce704e2
6
+ metadata.gz: 20080e44ed9cb33daf8e6de9693e8727b682b8489327d87154b38750fb21f6317f291262978e299de82106aeb9342c6dc10d25304ad4c8f96a5370e2a3156650
7
+ data.tar.gz: b87fe8240fd317fe431173cf85f314b6b52501d3ea947841a46354de9310a5fbb62b1771aeed707769a09b04cfdb7af8ff99a745e2eb14b5378554ee242a83e8
data/ChangeLog.md CHANGED
@@ -1,3 +1,10 @@
1
+ ### 0.1.3 / 2023-06-12
2
+
3
+ #### CLI
4
+
5
+ * Fixed a bug where `ronin-payloads new --type command` wasn't being accepted
6
+ as a valid payload type.
7
+
1
8
  ### 0.1.2 / 2023-06-09
2
9
 
3
10
  * Add missing `require` for {Ronin::Payloads::Encoders::Encoder}.
@@ -42,7 +42,7 @@ module Ronin
42
42
  #
43
43
  # ## Options
44
44
  #
45
- # -t asm|shellcode|c|go|rust|shell|powershell|html|javascript|typescript|java|sql|php|python|ruby|nodejs,
45
+ # -t asm|shellcode|c|go|rust|command|shell|powershell|html|javascript|typescript|java|sql|php|python|ruby|nodejs,
46
46
  # --type The type for the new payload
47
47
  # -a, --author NAME The name of the author
48
48
  # -e, --author-email EMAIL The email address of the author
@@ -52,6 +52,11 @@ module Ronin
52
52
  class: 'RustPayload'
53
53
  },
54
54
 
55
+ command: {
56
+ file: 'command_payload',
57
+ class: 'CommandPayload'
58
+ },
59
+
55
60
  shell: {
56
61
  file: 'shell_payload',
57
62
  class: 'ShellPayload'
@@ -22,6 +22,6 @@
22
22
  module Ronin
23
23
  module Payloads
24
24
  # ronin-payloads version
25
- VERSION = '0.1.2'
25
+ VERSION = '0.1.3'
26
26
  end
27
27
  end
@@ -15,7 +15,7 @@ Generates a new payload file.
15
15
 
16
16
  ## OPTIONS
17
17
 
18
- `-t`, `--type` `asm`\|`shellcode`\|`c`\|`go`\|`rust`\|`shell`\|`powershell`\|`html`\|`javascript`\|`typescript`\|`java`\|`sql`\|`php`\|`python`\|`ruby`\|`nodejs`
18
+ `-t`, `--type` `asm`\|`shellcode`\|`c`\|`go`\|`rust`\|`command`\|`shell`\|`powershell`\|`html`\|`javascript`\|`typescript`\|`java`\|`sql`\|`php`\|`python`\|`ruby`\|`nodejs`
19
19
  The type of payload to generate.
20
20
 
21
21
  `-a`, `--author` *NAME*
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin-payloads
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-09 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ronin-support