pwn 0.5.392 → 0.5.393
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/pwn/reports/html_footer.rb +1 -1
- data/lib/pwn/reports/html_header.rb +1 -1
- data/lib/pwn/reports/sast.rb +3 -0
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8f2b66b63fc352c09d9be39170e8240c4ddefcd6957eeb6ed8266c09efe904f
|
4
|
+
data.tar.gz: 99311970b372085cc972ce18740868be356f906334193757bae88de42373d682
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0065870d881a5cba684562db8fda802c22098fa0e459a2f9870d659ab7f15d096ff7fcfda1945e648d9ccd06aee69005d8435df9b63c2a4277b25229b8fb7367'
|
7
|
+
data.tar.gz: ff035fe1150349cc5d3acdbd7f5eb7a641ce66c3da1f19147b835da243bab2fea6e7055c4291f309248ea8421864f231c96131d6daa47878aeec4aff642855dd
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
|
|
37
37
|
$ ./install.sh
|
38
38
|
$ ./install.sh ruby-gem
|
39
39
|
$ pwn
|
40
|
-
pwn[v0.5.
|
40
|
+
pwn[v0.5.393]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.4.4@pwn
|
|
52
52
|
$ gem uninstall --all --executables pwn
|
53
53
|
$ gem install --verbose pwn
|
54
54
|
$ pwn
|
55
|
-
pwn[v0.5.
|
55
|
+
pwn[v0.5.393]:001 >>> PWN.help
|
56
56
|
```
|
57
57
|
|
58
58
|
If you're using a multi-user install of RVM do:
|
@@ -62,7 +62,7 @@ $ rvm use ruby-3.4.4@pwn
|
|
62
62
|
$ rvmsudo gem uninstall --all --executables pwn
|
63
63
|
$ rvmsudo gem install --verbose pwn
|
64
64
|
$ pwn
|
65
|
-
pwn[v0.5.
|
65
|
+
pwn[v0.5.393]:001 >>> PWN.help
|
66
66
|
```
|
67
67
|
|
68
68
|
PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
|
@@ -130,8 +130,8 @@ module PWN
|
|
130
130
|
var newScrollYHeight = Math.max(min_scroll_height, newWindowHeight - offset); // Your offset
|
131
131
|
$('.dt-scroll-body').css('max-height', newScrollYHeight + 'px')
|
132
132
|
table.columns.adjust().draw(false); // Adjust columns first, then redraw without data reload
|
133
|
-
console.log('Window resized. New scrollY height: ' + newScrollYHeight + 'px');
|
134
133
|
});
|
134
|
+
|
135
135
|
</script>
|
136
136
|
</body>
|
137
137
|
</html>
|
@@ -243,7 +243,7 @@ module PWN
|
|
243
243
|
// Calculate scrollY: Subtract an offset for non-table elements
|
244
244
|
var offset = 325;
|
245
245
|
var min_scroll_height = 50;
|
246
|
-
var scrollYHeight = Math.max(min_scroll_height, windowHeight - offset);
|
246
|
+
var scrollYHeight = Math.max(min_scroll_height, windowHeight - offset);
|
247
247
|
)
|
248
248
|
rescue StandardError => e
|
249
249
|
raise e
|
data/lib/pwn/reports/sast.rb
CHANGED
@@ -318,6 +318,9 @@ module PWN
|
|
318
318
|
});
|
319
319
|
|
320
320
|
table.buttons().container().appendTo('#toggle_col_and_button_group');
|
321
|
+
|
322
|
+
// Update Smart Search Label with Example
|
323
|
+
$('.dt-search label').text('Smart Search (e.g., "password !secure"):').css({'font-weight': 'bold', color: '#B40404'});
|
321
324
|
}
|
322
325
|
});
|
323
326
|
|
data/lib/pwn/version.rb
CHANGED