pwn 0.5.714 → 0.5.715
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/lib/pwn/plugins/repl.rb +3 -3
- 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: 146297356f4ed277ec4d96fafaa37ceada293450ed65899f36fd0c87b791941e
|
|
4
|
+
data.tar.gz: 95b240666596894709e70488300794a0af67a8a04b4da0b2f82c9a907c3e851d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d840608a734d085d102064010d0a83daa4d3941ef36854fe2e2a4bf445ef994f331599e9ef3dfc9d24ea40b26fed8b383677cf53901ff7904a0a3a02e00d3d12
|
|
7
|
+
data.tar.gz: b118fad0b02e1a1e3587243487b8896c469f679d49c76518e76487324918e21d0cccb6c50687e74e366a6e633c8ad6666a51e7cc53f9ca0fbc2b48d653a5aa91
|
data/lib/pwn/plugins/repl.rb
CHANGED
|
@@ -494,7 +494,7 @@ module PWN
|
|
|
494
494
|
puts '[*] TAB menus: leading `/` = commands (/cron /skills /sessions …); `/` later = host paths; otherwise Ruby completion (same as the pwn REPL).'
|
|
495
495
|
puts "[*] tmux + terminator users: Ensure ~/.tmux.conf has 'set -s extended-keys on' and 'set -g xterm-keys on', then restart tmux. Use TERM=xterm-256color."
|
|
496
496
|
tag = pi.config.pwn_ai_session_id.to_s.empty? ? '<SESSION_ID>' : pi.config.pwn_ai_session_id
|
|
497
|
-
puts "\n\n\npwn-ai debug ON → /
|
|
497
|
+
puts "\n\n\npwn-ai debug ON → ~/.pwn/logs/pwn-ai-DEBUG-#{tag}-R<REQUEST_NUMBER>.log"
|
|
498
498
|
end
|
|
499
499
|
end
|
|
500
500
|
|
|
@@ -1051,7 +1051,7 @@ module PWN
|
|
|
1051
1051
|
end
|
|
1052
1052
|
|
|
1053
1053
|
Pry::Commands.create_command 'toggle-debug' do
|
|
1054
|
-
description 'Stream pwn-ai stage log to the TUI and /
|
|
1054
|
+
description 'Stream pwn-ai stage log to the TUI and ~/.pwn/logs/pwn-ai-DEBUG-<SESSION_ID>-RN.log'
|
|
1055
1055
|
|
|
1056
1056
|
def process
|
|
1057
1057
|
pi = pry_instance
|
|
@@ -1242,7 +1242,7 @@ module PWN
|
|
|
1242
1242
|
# Tool request + result are shown in full (no char cap).
|
|
1243
1243
|
# Raw ANSI only — PS1 SOH/STX on live stdout swallows later rows.
|
|
1244
1244
|
# When debug is on, the same plain text is mirrored into the
|
|
1245
|
-
# open /
|
|
1245
|
+
# open ~/.pwn/logs/pwn-ai-DEBUG-…-RN.log for human troubleshooting.
|
|
1246
1246
|
mirror = lambda do |plain|
|
|
1247
1247
|
next unless pi.config.pwn_ai_debug && defined?(PWN::Plugins::Log)
|
|
1248
1248
|
|
data/lib/pwn/version.rb
CHANGED