@sentriflow/cli 0.4.0 → 0.4.1
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 +7 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @sentriflow/cli
|
|
2
2
|
|
|
3
|
-
Command-line interface for SentriFlow -
|
|
3
|
+
Command-line interface for SentriFlow - validate network configurations against best practices or organization-specific policies.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -53,7 +53,7 @@ cat router.conf | sentriflow -
|
|
|
53
53
|
```
|
|
54
54
|
Usage: sentriflow [options] [file]
|
|
55
55
|
|
|
56
|
-
SentriFlow Network Configuration
|
|
56
|
+
SentriFlow Network Configuration Validator
|
|
57
57
|
|
|
58
58
|
Arguments:
|
|
59
59
|
file Path to the configuration file (use - for stdin)
|
|
@@ -321,7 +321,11 @@ SentriFlow automatically looks for `.sentriflowrc` or `.sentriflowrc.json` in th
|
|
|
321
321
|
## Related Packages
|
|
322
322
|
|
|
323
323
|
- [`@sentriflow/core`](https://github.com/sentriflow/sentriflow/tree/main/packages/core) - Core parsing and compliance engine
|
|
324
|
-
- [`@sentriflow/rules-default`](https://github.com/sentriflow/sentriflow/tree/main/packages/rules-default) - Default
|
|
324
|
+
- [`@sentriflow/rules-default`](https://github.com/sentriflow/sentriflow/tree/main/packages/rules-default) - Default validation rules
|
|
325
|
+
|
|
326
|
+
## Disclaimer
|
|
327
|
+
|
|
328
|
+
SentriFlow provides automated configuration validation. Validation results indicate technical alignment with security standards but do not constitute compliance certification. Consult qualified auditors for official compliance assessments.
|
|
325
329
|
|
|
326
330
|
## License
|
|
327
331
|
|
package/dist/index.js
CHANGED
|
@@ -12524,7 +12524,7 @@ function generateSarif(results, filePath, rules, options = {}, ipSummary) {
|
|
|
12524
12524
|
tool: {
|
|
12525
12525
|
driver: {
|
|
12526
12526
|
name: "Sentriflow",
|
|
12527
|
-
version: "0.4.
|
|
12527
|
+
version: "0.4.1",
|
|
12528
12528
|
informationUri: "https://github.com/sentriflow/sentriflow",
|
|
12529
12529
|
rules: sarifRules,
|
|
12530
12530
|
// SEC-007: Include CWE taxonomy when rules reference it
|
|
@@ -12684,7 +12684,7 @@ function generateMultiFileSarif(fileResults, rules, options = {}) {
|
|
|
12684
12684
|
tool: {
|
|
12685
12685
|
driver: {
|
|
12686
12686
|
name: "Sentriflow",
|
|
12687
|
-
version: "0.4.
|
|
12687
|
+
version: "0.4.1",
|
|
12688
12688
|
informationUri: "https://github.com/sentriflow/sentriflow",
|
|
12689
12689
|
rules: sarifRules,
|
|
12690
12690
|
// SEC-007: Include CWE taxonomy when rules reference it
|
|
@@ -16682,7 +16682,7 @@ function enrichResultsWithRuleMetadata(results, rules) {
|
|
|
16682
16682
|
});
|
|
16683
16683
|
}
|
|
16684
16684
|
var program = new Command();
|
|
16685
|
-
program.name("sentriflow").description("SentriFlow Network Configuration Validator").version("0.4.
|
|
16685
|
+
program.name("sentriflow").description("SentriFlow Network Configuration Validator").version("0.4.1").argument("[files...]", "Path(s) to configuration file(s) (supports multiple files)").option("--ast", "Output the AST instead of rule results").option("-f, --format <format>", "Output format (json, sarif)", "json").option("-q, --quiet", "Only output failures (suppress passed results)").option("-c, --config <path>", "Path to config file (default: auto-detect)").option("--no-config", "Ignore config file").option("-r, --rules <path>", "Additional rules file to load (legacy)").option(
|
|
16686
16686
|
"--pack <path...>",
|
|
16687
16687
|
"Path(s) to rule pack(s) (auto-detects format: .grx2, .grpx, or unencrypted)"
|
|
16688
16688
|
).option(
|