Advertisement
Guest User

Untitled

a guest
May 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. digraph G {
  2. subgraph cluster_0 {
  3. style=filled;
  4. color=lightgrey;
  5. node [style=filled,color=white];
  6. WAF -> "Firewall Rules" [style=dotted label="Stopped by WAF" constraint=false];
  7. "Firewall Rules" -> "(etc)" ;
  8. label = "example.com CF settings";
  9. }
  10.  
  11. subgraph cluster_1 {
  12. node [style=filled];
  13. "Page Rule: Disable Security";
  14. label = "example.net CF settings";
  15. color=blue
  16. }
  17.  
  18. "Page Rule: Disable Security" -> "Cloudflare proxy" [constraint=false];
  19. "(etc)" -> "Cloudflare proxy";
  20. "Malicious request" -> "Page Rule: Disable Security";
  21. "Malicious request" -> WAF ;
  22. "Cloudflare proxy" -> "192.0.2.1" ;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement