pwn 0.5.541 → 0.5.542

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: a69023415c8ba919a4f605419ffee08d2b208cbace09147b7afa5a6af9525353
4
- data.tar.gz: f8f3b7c0b5bd8f4faad841970f7b86ff82c11e206a7743a1fb5d32a54b77aabb
3
+ metadata.gz: 7d0391c848f1d877874da4641973bda31df3d1be73dc7c776b761b365d6c5b32
4
+ data.tar.gz: bbc4ae6b43c7613f43b844cd3078c983649d290a122b28761310b2f0fdc97403
5
5
  SHA512:
6
- metadata.gz: 9ef44c91c71e5cb273f4f39bcddc90f044fdbf27ff166a64228a66990641ef3750e888da32dd24b60918c9287465c02ee914dee4808efacac272b275db5aa3f2
7
- data.tar.gz: dbfad38b57e765ab30ecfefe3ec0122f348991110af0aab1bc156ccfd43c769cf0f0b5d41cf5bbe062b6d537fece3bce2afb7134c4e1d3f065c621f44de4612b
6
+ metadata.gz: 2fcc165d19499c8518b82274d953c6e8ee82573622ef320e9c4331c86d3d00d8f8fb41e8b76d9d17ab7107e1afdd2272a73eb777ba0622c6ea71b07f2d9fb509
7
+ data.tar.gz: 5877002d4b9c1a20a1b22c5b826da5fde3e9dc31443324af18ba66cd2d64385b82e868aea7d0c5b4f89066cbd7def4c0f7e413bc3df18845489e9e42ea6612e2
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
37
37
  $ ./install.sh
38
38
  $ ./install.sh ruby-gem
39
39
  $ pwn
40
- pwn[v0.5.541]:001 >>> PWN.help
40
+ pwn[v0.5.542]: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-4.0.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.541]:001 >>> PWN.help
55
+ pwn[v0.5.542]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
  If you're using a multi-user install of RVM do:
@@ -62,7 +62,7 @@ $ rvm use ruby-4.0.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.541]:001 >>> PWN.help
65
+ pwn[v0.5.542]:001 >>> PWN.help
66
66
  ```
67
67
 
68
68
  PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
@@ -4,10 +4,10 @@ module PWN
4
4
  module AI
5
5
  module Agent
6
6
  # This module is an AI agent designed to analyze signal data captured by a software-defined-radio using GQRX. It uses the PWN::AI::Introspection.reflect_on method to analyze the signal data and provide insights based on the location where the data was captured. The agent can determine if the frequency is licensed or unlicensed based on FCC records and provide relevant information about the transmission. This module is useful for security professionals, researchers, and hobbyists interested in analyzing radio signals and understanding their context.
7
- module SAST
7
+ module GQRX
8
8
  # Supported Method Parameters::
9
9
  # ai_analysis = PWN::AI::Agent::GQRX.analyze(
10
- # request: 'required - A string containing the source code snippet to be analyzed for SAST antipatterns and vulnerabilities.'
10
+ # request: 'required - A string containing the signal data captured by GQRX that you want to analyze. This data should be in a format that can be interpreted by the AI for analysis, such as raw signal data, frequency information, or any relevant metadata associated with the capture.',
11
11
  # location: 'required - A string containing a city, state, country, or GPS coordinates where the signal data was captured. This information will be used to provide context for the analysis and to determine if the frequency is licensed or unlicensed based on FCC records.'
12
12
  # )
13
13
 
@@ -25,7 +25,7 @@ module PWN
25
25
 
26
26
  raise 'ERROR: opcodes parameter is required.' if opcodes.nil?
27
27
 
28
- ai_analysis = PWN::AI::Agent.analyze(
28
+ ai_analysis = PWN::AI::Agent::Assembly.analyze(
29
29
  request: opcodes,
30
30
  type: :opcodes_to_asm,
31
31
  arch: arch,
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.5.541'
4
+ VERSION = '0.5.542'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.541
4
+ version: 0.5.542
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.