This guide is currently under development, and I greatly welcome any suggestions or feedback or at reaper.gitbook@gmail.com

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:

  1. Clients to AP relationship.

  2. 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:

  1. Green -> WPA

  2. Yellow -> WEP

  3. Red -> OPEN (or OPN)

  4. Black -> Unknown

To create such a graph we will use the command below:

airgraph-ng -i <Capture CSV> -o <Output Image> -g CAPR

Clients 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 CPG

Last updated

Was this helpful?