├── data
├── layer7-logs
├── layer7.php
└── layer4.php
├── .idea
├── .gitignore
├── misc.xml
├── vcs.xml
├── modules.xml
└── Layer-Graph.iml
├── README.md
├── config
└── config.php
└── index.php
/data/layer7-logs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://codeclimate.com/github/cK0nrad/Layer-Graph/maintainability)
2 |
3 | # Layer-Graph
4 | Real time layer 4 & 7 traffic.
5 | # How to use it
6 | Clone repository and set 'data/layer7-logs' to chmod 777.
7 |
8 | Configuration avaible in 'config/config.php'.
9 |
10 | #Konrad
11 |
--------------------------------------------------------------------------------
/data/layer7.php:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/.idea/Layer-Graph.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/data/layer4.php:
--------------------------------------------------------------------------------
1 | {$ip} PORT {$port} <==";
30 | $Layer7Title = "Layer 7 ==>{$ip} PORT {$port} <==";
31 |
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
21 |
24 |
29 |
30 |
121 |
122 |
123 |
124 |
--------------------------------------------------------------------------------