@probelabs/probe 0.6.0-rc256 → 0.6.0-rc257
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.
- package/README.md +5 -5
- package/bin/binaries/probe-v0.6.0-rc257-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc257-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc257-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc257-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/{probe-v0.6.0-rc256-x86_64-unknown-linux-musl.tar.gz → probe-v0.6.0-rc257-x86_64-unknown-linux-musl.tar.gz} +0 -0
- package/build/agent/FallbackManager.js +4 -4
- package/build/agent/ProbeAgent.js +8 -10
- package/build/agent/bashDefaults.js +171 -162
- package/build/agent/bashPermissions.js +98 -45
- package/build/agent/index.js +118 -299
- package/build/tools/bash.js +2 -2
- package/cjs/agent/ProbeAgent.cjs +118 -299
- package/cjs/index.cjs +118 -299
- package/package.json +1 -1
- package/src/agent/FallbackManager.js +4 -4
- package/src/agent/ProbeAgent.js +8 -10
- package/src/agent/bashDefaults.js +171 -162
- package/src/agent/bashPermissions.js +98 -45
- package/src/tools/bash.js +2 -2
- package/bin/binaries/probe-v0.6.0-rc256-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc256-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc256-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc256-x86_64-pc-windows-msvc.zip +0 -0
package/build/tools/bash.js
CHANGED
|
@@ -146,8 +146,8 @@ Common reasons:
|
|
|
146
146
|
2. The command is not in the allow list (not a recognized safe command)
|
|
147
147
|
|
|
148
148
|
If you believe this command should be allowed, you can:
|
|
149
|
-
- Use the --bash-allow option to add specific patterns
|
|
150
|
-
|
|
149
|
+
- Use the --bash-allow option to add specific patterns (overrides default deny list)
|
|
150
|
+
Example: --bash-allow "git:push" allows git push while keeping all other deny rules
|
|
151
151
|
|
|
152
152
|
For code exploration, try these safe alternatives:
|
|
153
153
|
- ls, cat, head, tail for file operations
|