fix(security): add shared outbound egress guard (#3567)

* fix(security): block unsafe outbound webhook targets

* chore: keep issue-3557 plan local only
This commit is contained in:
houseme
2026-06-18 15:30:09 +08:00
committed by GitHub
parent fc93a27974
commit 8cf11af649
10 changed files with 292 additions and 50 deletions
+4
View File
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#[cfg(feature = "egress")]
pub mod egress;
#[cfg(feature = "ip")]
pub mod ip;
#[cfg(feature = "net")]
@@ -20,6 +22,8 @@ pub mod net;
#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "egress")]
pub use egress::*;
#[cfg(feature = "net")]
pub use net::*;