pwn 0.4.709 → 0.4.710

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: dc5b2a9d5b0298e9df92a6f3bb4b965a536ea8809da64889cfe58a321be5441d
4
- data.tar.gz: ea14807341435e89ba033f6382651c84f813293e24c60e32c16dfea355ed6513
3
+ metadata.gz: '0059215a998691447937762d1c55453911f1286bfbe6fb67182e54a867b1c4ef'
4
+ data.tar.gz: 0c71e8baa945429b2c6811ba82df7c149a24d44d01ed6248d509176183e53dc4
5
5
  SHA512:
6
- metadata.gz: 80d718d90849aa727600e2f011ba18124037cbd5eae55d19ca842a8a403f32c96e06f408d3344a143e4b96bfc0a9d24720cc9a32f0f7e610bd061399ced98fb3
7
- data.tar.gz: bd6bcba5bf7fbd170a910088402d2115cb46f12afeee277eef7702c78ed33d6eaa3768de2b1ca2ba7399c1cd3bf7e255f159fbd938e2a4bb2dc0b917b34dcba3
6
+ metadata.gz: e6b5853adc9efa0c054526d98b07ccd603f80873a1da11a0acfadc3e7e2e690d72df505a7666af94c18eea141fccac217d2a560df83966d35b35635c440f0ac9
7
+ data.tar.gz: 6668a8b6ff91a4526aac76f2f0356c077785e7b4f3503dc6c410e9dc34fe05d14e75bd18247ab1b5e9ccabe87eefe5bcdd07fb49ed6ad859776880f05a6e6dd4
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.709]:001 >>> PWN.help
40
+ pwn[v0.4.710]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  [![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.709]:001 >>> PWN.help
55
+ pwn[v0.4.710]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -22,13 +22,13 @@ module PWN
22
22
  when :linux
23
23
  cmd = 'ps'
24
24
  format = 'user,pcpu,pid,ppid,uid,group,gid,cpu,command:1000,pmem'
25
- params = "-p #{pid} -o #{format}"
25
+ params = "ax -p #{pid} -o #{format}"
26
26
  params = "ax -o #{format}" if pid.nil?
27
27
  when :freebsd, :netbsd, :openbsd, :osx
28
28
  cmd = 'ps'
29
29
  format = 'user,pcpu,pid,ppid,uid,group,gid,cpu,command,pmem'
30
- params = "-p #{pid} -o #{format}"
31
- params = "ax -o #{format}" if pid.nil?
30
+ params = "wax -p #{pid} -o #{format}"
31
+ params = "wax -o #{format}" if pid.nil?
32
32
  else
33
33
  raise "Unsupported OS: #{which_os}"
34
34
  end
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.709'
4
+ VERSION = '0.4.710'
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.709
4
+ version: 0.4.710
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-20 00:00:00.000000000 Z
11
+ date: 2023-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport