File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed 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.841 ]:001 >>> PWN.help
40
+ pwn[v0.4.842 ]: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.841 ]:001 >>> PWN.help
55
+ pwn[v0.4.842 ]:001 >>> PWN.help
56
56
```
57
57
58
58
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.841 '
4
+ VERSION = '0.4.842 '
5
5
end
Original file line number Diff line number Diff line change @@ -33,9 +33,11 @@ module HackerOne
33
33
browser_obj = opts [ :browser_obj ]
34
34
browser = browser_obj [ :browser ]
35
35
36
- browser . goto ( 'https://hackerone.com/bug-bounty-programs' ) . wait_until ( & :present? )
36
+ browser . goto ( 'https://hackerone.com/bug-bounty-programs' )
37
37
38
38
bb_orgs_arr = [ ]
39
+ # wait until brrowser.links has objects
40
+ browser . links . wait_until ( &:present? )
39
41
browser . links . each do |link |
40
42
print '.'
41
43
next unless link . href && link . text == ''
You can’t perform that action at this time.
0 commit comments