add attacker diagram

This commit is contained in:
fria 2025-10-23 08:00:51 -05:00 committed by GitHub
parent bee0b6d363
commit b7bd974b48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,4 +37,24 @@ Anyone outside the network is considered "untrusted" and are not given access to
D --> B;
B --> E[Printer];
E --> B;
```
This doesn't just include people physically inside the network, this also includes people connecting to the network over a VPN. Once the VPN spits you out, it's like you're physically there on the network, along with all the privileges that entails.
## Issues
You might notice this model leaves people on the network and the network itself highly vulnerable; once a malicious actor is inside the network, they can wreak havok and access troves of data and attack other users and devices.
``` mermaid
graph LR
A[Untrusted Traffic] -.-> B{Network Boundary};
B --> C[Network Drive];
C --> B;
B --> D[User];
D --> B;
B --> E[Printer];
E --> B;
C --> F(Attacker);
D --> F;
E --> F;
```