File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ gemspec
11
11
# In some circumstances custom flags are passed to gems in order
12
12
# to build appropriately. Defer to ./reinstall_pwn_gemset.sh
13
13
# to review these custom flags (e.g. pg, serialport, etc).
14
- gem 'activesupport' , '7.1.0 '
14
+ gem 'activesupport' , '7.1.1 '
15
15
gem 'anemone' , '0.7.2'
16
16
gem 'authy' , '3.0.1'
17
17
gem 'aws-sdk' , '3.1.0'
Original file line number Diff line number Diff line change @@ -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.926 ]:001 >>> PWN.help
40
+ pwn[v0.4.927 ]:001 >>> PWN.help
41
41
```
42
42
43
43
If you're using a multi-user install of RVM do:
@@ -48,7 +48,7 @@ $ rvm use ruby-3.2.2@pwn
48
48
$ rvm list gemsets
49
49
$ rvmsudo gem install --verbose pwn
50
50
$ pwn
51
- pwn[v0.4.926 ]:001 >>> PWN.help
51
+ pwn[v0.4.927 ]:001 >>> PWN.help
52
52
```
53
53
54
54
[ ![ Installing the pwn Security Automation Framework] ( https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png )] ( https://youtu.be/G7iLUY4FzsI )
@@ -63,7 +63,7 @@ $ rvm use ruby-3.2.2@pwn
63
63
$ gem uninstall --all --executables pwn
64
64
$ gem install --verbose pwn
65
65
$ pwn
66
- pwn[v0.4.926 ]:001 >>> PWN.help
66
+ pwn[v0.4.927 ]:001 >>> PWN.help
67
67
```
68
68
69
69
If you're using a multi-user install of RVM do:
@@ -73,7 +73,7 @@ $ rvm use ruby-3.2.2@pwn
73
73
$ rvmsudo gem uninstall --all --executables pwn
74
74
$ rvmsudo gem install --verbose pwn
75
75
$ pwn
76
- pwn[v0.4.926 ]:001 >>> PWN.help
76
+ pwn[v0.4.927 ]:001 >>> PWN.help
77
77
```
78
78
79
79
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ module PHPTypeJuggling
35
35
test_case_filter = "
36
36
grep -Fn \
37
37
-e '==' \
38
- -e '!=' #{ entry } \ |
38
+ -e '!=' #{ entry } | \
39
39
grep -v \
40
40
-e '===' \
41
- -e '!==' \
41
+ -e '!=='
42
42
"
43
43
44
44
str = `#{ test_case_filter } ` . to_s . scrub
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ module TypeScriptTypeJuggling
35
35
test_case_filter = "
36
36
grep -Fn \
37
37
-e '==' \
38
- -e '!=' #{ entry } \ |
38
+ -e '!=' #{ entry } | \
39
39
grep -v \
40
40
-e '===' \
41
- -e '!==' \
41
+ -e '!=='
42
42
"
43
43
44
44
str = `#{ test_case_filter } ` . to_s . scrub
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module PWN
4
- VERSION = '0.4.926 '
4
+ VERSION = '0.4.927 '
5
5
end
You can’t perform that action at this time.
0 commit comments