pwn 0.4.346 → 0.4.349

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -10
  3. data/lib/pwn/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7af08aa3995f2cc037647e58136b9b0c237d33a65a4b8b9036cf9b47219249c
4
- data.tar.gz: c758d4b0fa46ff00db517f08f32683e68317143eb26aae313b33b06a95ffa89f
3
+ metadata.gz: 863bc5a716d91a2b1ee1423eab10e82fc340fc055b63b11611fe6ba2d5f0d9ce
4
+ data.tar.gz: 5c936fdeb251d9444df115986cae84dfcf914ce04137cdc13d88c1cc9054fa0c
5
5
  SHA512:
6
- metadata.gz: 5f11c3997d2517d95ce8cf00aee896664eb6b200ff0805f4493cb0b3cf28b055ff04be68b777af33b6bd10984b19da18810c76bf52bd99e9c35b02ef405bf33c
7
- data.tar.gz: 95b99af2449e81373141b3c60f2f314ba9b6bb72ea9bc40cc53df9d83eb561cc5e44059b7678591dda509a599aef7b26ac54d8aa1b0d2833037736d61b800ef8
6
+ metadata.gz: 1b3f454a68e5f3aeec03a788b229e0949a8b8eb1ffd571838463d5d39f9d0a5cc22896c37faa10c65159873e636beacd1e4d309583325abe83a2d870b9e84785
7
+ data.tar.gz: ce2d50a9cf22c0325ebe1e1d1a650168492d3f5ca505c58b459e7124261629226420c54fa175e5bc65479954737d5e3e0b33ae91c4d17bf5bacca9a8b954eadb
data/README.md CHANGED
@@ -5,18 +5,17 @@
5
5
  * [What is PWN](#what-is-pwn)
6
6
  * [Why PWN](#why-pwn)
7
7
  * [How PWN Works](#how-pwn-works)
8
- * [PWN Modules Can be Mixed and Matched to Produce Your Own Tools](#pwn-modules-can-be-mixed-and-matched-to-produce-your-own-tools)
9
- - [Installation](#install-locally-on-host-os)
8
+ - [Installation](#installation)
10
9
  - [General Usage](#general-usage)
11
10
  - [Call to Arms](#call-to-arms)
12
- - [Driver Documentation](#driver-documentation)
11
+ - [Module Documentation](#module-documentation)
13
12
  - [Keep Us Caffeinated](#keep-us-caffeinated)
14
13
  - [Merchandise](#merchandise)
15
14
 
16
15
 
17
16
  ### **Intro** ###
18
17
  #### **What is PWN** ####
19
- PWN (Pronounced /pōn/ or pone), formerly known as [CSI](https://github.com/0dayinc/csi) is an open security automation framework that aims to stand on the shoulders of security giants, promoting trust and innovation. Build your own custom automation drivers freely and easily using pre-built modules. If a picture is worth a thousand words, then a video must be worth at least a million...let's begin by planting a million seeds in your mind:
18
+ PWN (Pronounced /pōn/ or pone), [formerly known as [CSI](https://github.com/0dayinc/csi)] is an open security automation framework that aims to stand on the shoulders of security giants, promoting trust and innovation. Build your own custom automation drivers freely and easily using pre-built modules. If a picture is worth a thousand words, imagine how many come to mind by watching this demo:
20
19
 
21
20
  #### **Creating an OWASP ZAP Scanning Driver Leveraging the pwn Prototyper** ####
22
21
  [![Continuous Security Integration: Basics of Building Your Own Security Automation ](https://i.ytimg.com/vi/MLSqd5F-Bjw/0.jpg)](https://youtu.be/MLSqd5F-Bjw)
@@ -30,9 +29,6 @@ It's easy to agree that while corporate automation is a collection of proprietar
30
29
  Leveraging various pre-built modules and the pwn prototyper, you can mix-and-match modules to test, record, replay, and rollout your own custom security automation packages known as, "drivers."
31
30
 
32
31
 
33
- #### **PWN Modules Can be Mixed and Matched to Produce Your Own Tools** ####
34
- Also known as, "Drivers" PWN can produce all sorts of useful tools by mixing and matching modules.
35
-
36
32
 
37
33
  #### **Installation** ####
38
34
  Tested on Linux, & OSX leveraging Ruby via RVM.
@@ -40,7 +36,7 @@ Tested on Linux, & OSX leveraging Ruby via RVM.
40
36
  ```
41
37
  $ gem install pwn
42
38
  $ pwn
43
- pwn[v0.4.346]:001 >>> PWN.help
39
+ pwn[v0.4.349]:001 >>> PWN.help
44
40
  ```
45
41
 
46
42
 
@@ -51,7 +47,7 @@ It's wise to update pwn often as numerous versions are released/week:
51
47
  ```
52
48
  $ gem update pwn
53
49
  $ pwn
54
- pwn[v0.4.346]:001 >>> PWN.help
50
+ pwn[v0.4.349]:001 >>> PWN.help
55
51
  ```
56
52
 
57
53
 
@@ -59,7 +55,7 @@ pwn[v0.4.346]:001 >>> PWN.help
59
55
  If you're willing to provide access to commercial security tools (e.g. Rapid7's Nexpose, Tenable Nessus, QualysGuard, HP WebInspect, IBM Appscan, etc) please PM us as this will continue to promote PWNs interoperability w/ industry-recognized security tools moving forward. Additionally if you want to contribute to this framework's success, check out our [How to Contribute](https://github.com/0dayInc/pwn/blob/master/CONTRIBUTING.md). Lastly, we accept [donations](https://cash.me/$fundpwn).
60
56
 
61
57
 
62
- ### **Documentation** ###
58
+ ### **Module Documentation** ###
63
59
  Additional documentation on using PWN can be found on [RubyGems.org](https://www.rubydoc.info/gems/pwn)
64
60
 
65
61
  I hope you enjoy PWN and remember...ensure you always have permission prior to carrying out any sort of hacktivities. Now - go pwn all the things!
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.4.346'
4
+ VERSION = '0.4.349'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.346
4
+ version: 0.4.349
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-28 00:00:00.000000000 Z
11
+ date: 2022-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport