This is an automated email from the ASF dual-hosted git repository.
sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
The following commit(s) were added to refs/heads/develop by this push:
new f577e1593a chore(docs): fix rat failures
f577e1593a is described below
commit f577e1593abd34920969adf22df4398a9a223b01
Author: Sebastian Rühl <[email protected]>
AuthorDate: Mon Jun 15 09:01:51 2026 +0200
chore(docs): fix rat failures
---
AGENTS.md | 4 ++--
SECURITY.md | 2 +-
draft-THREAT-MODEL.md => THREAT-MODEL.md | 19 -------------------
pom.xml | 5 +++++
4 files changed, 8 insertions(+), 22 deletions(-)
diff --git a/AGENTS.md b/AGENTS.md
index 40fff32326..ae79cc8317 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -7,9 +7,9 @@ human-authored references they should consult before producing
output.
## Security
Security model: [SECURITY.md](./SECURITY.md), which links to the project's
-threat model at [draft-THREAT-MODEL.md](./draft-THREAT-MODEL.md).
+threat model at [THREAT-MODEL.md](THREAT-MODEL.md).
-Agents that scan this repository should consult `draft-THREAT-MODEL.md` for
+Agents that scan this repository should consult `THREAT-MODEL.md` for
the project's in-scope / out-of-scope declarations, adversary model, security
properties, and known non-findings before reporting issues. Apache PLC4X is a
client library for industrial protocols (most of which are unauthenticated /
diff --git a/SECURITY.md b/SECURITY.md
index 558897462d..8bf8fcf7dd 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -12,7 +12,7 @@ pull requests for security reports.
Apache PLC4X's security threat model — what is in and out of scope, the
security properties the project provides and disclaims, the adversary model,
the environmental assumptions, and how findings are triaged — is documented in
-[draft-THREAT-MODEL.md](./draft-THREAT-MODEL.md).
+[THREAT-MODEL.md](THREAT-MODEL.md).
PLC4X speaks industrial protocols (Modbus, S7, OPC-UA, ADS, EtherNet/IP, …),
most of which are unauthenticated and unencrypted by design. The threat model
diff --git a/draft-THREAT-MODEL.md b/THREAT-MODEL.md
similarity index 99%
rename from draft-THREAT-MODEL.md
rename to THREAT-MODEL.md
index 99d61429bf..a961e5e04d 100644
--- a/draft-THREAT-MODEL.md
+++ b/THREAT-MODEL.md
@@ -1,22 +1,3 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
# Apache PLC4X Security Threat Model (draft)
## §1 Header
diff --git a/pom.xml b/pom.xml
index 79309e0f6e..fe12d30386 100644
--- a/pom.xml
+++ b/pom.xml
@@ -801,6 +801,11 @@
<!-- Exclude core dumps-->
<inputExclude>**/hs_err_pid*</inputExclude>
<inputExclude>**/replay_pid*</inputExclude>
+
+ <!-- Agents exclude -->
+ <inputExclude>AGENTS.md</inputExclude>
+ <inputExclude>SECURITY.MD</inputExclude>
+ <inputExclude>THREAT-MODEL.md</inputExclude>
</inputExcludes>
</configuration>
</plugin>