Skip to content

Commit 0aaf3a1

Browse files
authored
Merge pull request #447 from ninp0/master
README.md - update docs to reflect easiest installation leveraging a …
2 parents 5916b99 + 712ca6f commit 0aaf3a1

File tree

3 files changed

+11
-22
lines changed

3 files changed

+11
-22
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ gem 'aws-sdk', '3.1.0'
1919
gem 'barby', '0.6.8'
2020
gem 'brakeman', '6.0.1'
2121
gem 'bson', '4.15.0'
22-
gem 'bundler', '>=2.4.20'
22+
gem 'bundler', '>=2.4.21'
2323
gem 'bundler-audit', '0.9.1'
2424
gem 'bunny', '2.22.0'
2525
gem 'colorize', '1.1.0'

README.md

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,16 @@ Leveraging various pre-built modules and the pwn prototyper, you can mix-and-mat
2828

2929

3030
#### **Installation** ####
31-
Tested on Linux, & OSX leveraging Ruby via RVM.
31+
Tested on Debian-Based Linux Distros, & OSX leveraging Ruby via RVM.
3232

3333
```
34-
$ rvm use ruby-3.2.2@global
35-
$ rvm gemset create pwn
36-
$ rvm use ruby-3.2.2@pwn
37-
$ rvm list gemsets
38-
$ gem install --verbose pwn
39-
$ pwn
40-
pwn[v0.4.929]:001 >>> PWN.help
41-
```
42-
43-
If you're using a multi-user install of RVM do:
44-
```
45-
$ rvm use ruby-3.2.2@global
46-
$ rvmsudo rvm gemset create pwn
47-
$ rvm use ruby-3.2.2@pwn
48-
$ rvm list gemsets
49-
$ rvmsudo gem install --verbose pwn
34+
$ cd /opt
35+
$ sudo git clone https://github.com/0dayinc/pwn
36+
$ cd /opt/pwn
37+
$ ./install.sh
38+
$ ./install.sh ruby-gem
5039
$ pwn
51-
pwn[v0.4.929]:001 >>> PWN.help
40+
pwn[v0.4.930]:001 >>> PWN.help
5241
```
5342

5443
[![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -63,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
6352
$ gem uninstall --all --executables pwn
6453
$ gem install --verbose pwn
6554
$ pwn
66-
pwn[v0.4.929]:001 >>> PWN.help
55+
pwn[v0.4.930]:001 >>> PWN.help
6756
```
6857

6958
If you're using a multi-user install of RVM do:
@@ -73,7 +62,7 @@ $ rvm use ruby-3.2.2@pwn
7362
$ rvmsudo gem uninstall --all --executables pwn
7463
$ rvmsudo gem install --verbose pwn
7564
$ pwn
76-
pwn[v0.4.929]:001 >>> PWN.help
65+
pwn[v0.4.930]:001 >>> PWN.help
7766
```
7867

7968

lib/pwn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PWN
4-
VERSION = '0.4.929'
4+
VERSION = '0.4.930'
55
end

0 commit comments

Comments
 (0)