Skip to content

Commit c13d34e

Browse files
authored
Merge pull request #449 from ninp0/master
Gemfile - re-enable credit_card_validations gem
2 parents 996a916 + c1b8ce9 commit c13d34e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gem 'bundler', '>=2.4.21'
2323
gem 'bundler-audit', '0.9.1'
2424
gem 'bunny', '2.22.0'
2525
gem 'colorize', '1.1.0'
26-
# gem 'credit_card_validations', '6.0.0'
26+
gem 'credit_card_validations', '6.1.0'
2727
gem 'eventmachine', '1.2.7'
2828
gem 'executable-hooks', '1.6.1'
2929
gem 'faker', '3.2.1'
@@ -42,7 +42,7 @@ gem 'jsonpath', '1.1.5'
4242
gem 'jwt', '2.7.1'
4343
gem 'luhn', '1.0.2'
4444
gem 'mail', '2.8.1'
45-
gem 'mongo', '2.19.1'
45+
gem 'mongo', '2.19.2'
4646
gem 'msfrpc-client', '1.1.2'
4747
gem 'netaddr', '2.0.6'
4848
gem 'net-ldap', '0.18.0'
@@ -59,7 +59,7 @@ gem 'pdf-reader', '2.11.0'
5959
gem 'pg', '1.5.4'
6060
gem 'pry', '0.14.2'
6161
gem 'pry-doc', '1.4.0'
62-
gem 'rake', '13.0.6'
62+
gem 'rake', '13.1.0'
6363
gem 'rb-readline', '0.5.5'
6464
gem 'rbvmomi', '3.0.0'
6565
gem 'rdoc', '6.5.0'
@@ -69,9 +69,9 @@ gem 'rmagick', '5.3.0'
6969
gem 'rqrcode', '2.2.0'
7070
gem 'rspec', '3.12.0'
7171
gem 'rtesseract', '3.1.3'
72-
gem 'rubocop', '1.57.1'
72+
gem 'rubocop', '1.57.2'
7373
gem 'rubocop-rake', '0.6.0'
74-
gem 'rubocop-rspec', '2.24.1'
74+
gem 'rubocop-rspec', '2.25.0'
7575
gem 'ruby-audio', '1.6.1'
7676
gem 'ruby-nmap', '1.0.2'
7777
gem 'ruby-saml', '1.16.0'

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ cd /opt/pwn
3737
$ ./install.sh
3838
$ ./install.sh ruby-gem
3939
$ pwn
40-
pwn[v0.4.931]:001 >>> PWN.help
40+
pwn[v0.4.932]:001 >>> PWN.help
4141
```
4242

4343
[![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
5252
$ gem uninstall --all --executables pwn
5353
$ gem install --verbose pwn
5454
$ pwn
55-
pwn[v0.4.931]:001 >>> PWN.help
55+
pwn[v0.4.932]:001 >>> PWN.help
5656
```
5757

5858
If you're using a multi-user install of RVM do:
@@ -62,7 +62,7 @@ $ rvm use ruby-3.2.2@pwn
6262
$ rvmsudo gem uninstall --all --executables pwn
6363
$ rvmsudo gem install --verbose pwn
6464
$ pwn
65-
pwn[v0.4.931]:001 >>> PWN.help
65+
pwn[v0.4.932]:001 >>> PWN.help
6666
```
6767

6868

lib/pwn/plugins/credit_card.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

3-
# require 'credit_card_validations'
4-
# require 'credit_card_validations/string'
3+
require 'credit_card_validations'
4+
require 'credit_card_validations/string'
55

66
module PWN
77
module Plugins

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.931'
4+
VERSION = '0.4.932'
55
end

0 commit comments

Comments
 (0)