Airgraph-ng
A python script that is used to create graphs of the network depending on the CSV files generated by airodump-ng , these CSV files contain the relationships between wireless clients and APs, also the list of probed networks.
There are 2 types of graphs that we can get from this tool:
Clients to AP relationship.
Clients Probe graph.
Clients to AP Relationship Graph (CAPR)
The name explains everything, this type focuses more on the clients, so it won't draw any AP that doesn't have any client, it assigns colors to the APs depending on the encryption type provided, the colors indicate the following:
Green -> WPA
Yellow -> WEP
Red -> OPEN (or OPN)
Black -> Unknown
To create such a graph we will use the command below:
airgraph-ng -i <Capture CSV> -o <Output Image> -g CAPRClients Probe Graph (CPG)
This graph displays the relationship between clients and the probed networks; to generate this graph we use the command below:
airgraph-ng -i <Capture CSV> -o <Output Image> -g CPGLast updated
Was this helpful?