File tree 3 files changed +17
-7
lines changed
3 files changed +17
-7
lines changed Original file line number Diff line number Diff line change
1
+ resources /* linguist-vendored
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
- name : Run tests
20
20
run : go test -race ./...
21
21
22
- - name : Set up Node 14
22
+ - name : Set up Node 16
23
23
uses : actions/setup-node@v2
24
24
with :
25
- node-version : ' 14 '
25
+ node-version : ' 16 '
26
26
- name : Build front
27
27
working-directory : front
28
28
run : yarn install && yarn build
Original file line number Diff line number Diff line change 21
21
</div >
22
22
<el-row :gutter =" 10" >
23
23
<el-col :span =" 12" >
24
- <div class =" text item" ><a :href =" boardLink" >Scoreboard</a ></div >
25
- <div class =" text item" ><a :href =" mongolLink" >MonGol</a ></div >
24
+ <div class =" text item" >
25
+ <a :href =" boardLink" target =" _blank" >Scoreboard</a >
26
+ </div >
27
+ <div class =" text item" >
28
+ <a :href =" mongolLink" target =" _blank" >MonGol</a >
29
+ </div >
26
30
<div class =" text item" >
27
31
Username:
28
32
<span class =" copiable" @click =" copyText(`${username}`)" >{{
43
47
<el-card >
44
48
<div slot =" header" class =" clearfix" >
45
49
<span class =" header-text" >Farm</span >
46
- <a :href =" farmLink" style =" float : right ; padding : 3px 0 " type =" text"
50
+ <a
51
+ :href =" farmLink"
52
+ target =" _blank"
53
+ style =" float : right ; padding : 3px 0 "
54
+ type =" text"
47
55
>Open</a
48
56
>
49
57
</div >
70
78
>{{ vulnbox.user }}@{{ vulnbox.host }}</span
71
79
>
72
80
&rarr ;
73
- <a :href =" getGoxyLink(vulnbox)" >Goxy</a >
81
+ <a :href =" getGoxyLink(vulnbox)" target = " _blank " >Goxy</a >
74
82
</div >
75
83
<ul >
76
84
<li v-for =" (service, j) of vulnbox.services" :key =" j" >
77
85
{{ service.name }}:
78
86
<a
79
87
v-if =" service.proto === 'http'"
80
88
:href =" getServiceLink(vulnbox, service)"
89
+ target =" _blank"
81
90
>{{ getServiceLink(vulnbox, service) }}</a
82
91
>
83
92
<span
@@ -258,7 +267,7 @@ export default {
258
267
if (! this .config ) {
259
268
return " " ;
260
269
}
261
- return ` http://${ this .username } :${ this .password } @${ this .config .farm .addr } ` ;
270
+ return ` http://${ this .username } :${ this .password } @${ this .config .farm .addr } /?password= ${ this . password } ` ;
262
271
},
263
272
boardLink : function () {
264
273
if (! this .config ) {
You can’t perform that action at this time.
0 commit comments