User Tools

Site Tools


airgraph-ng

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
airgraph-ng [2009/04/05 19:14] – Make the guide more clear. mister_xairgraph-ng [2018/12/14 22:02] – [Installing] Fixed instructions mister_x
Line 1: Line 1:
-====== Aigraph-ng - A basic guide ======+====== Aigraph-ng ======
  
-Author: digitalpsyko \\+Author: digitalpsyko, TheX1le \\
 Version: 1.01 \\ Version: 1.01 \\
-Last modified on: 5 April 2009+Last modified on: 23/5/2010
  
-===== Installing =====+===== Requirements ===== 
 +  * python 
 +  * graphviz 
 +  * make 
 +  * aircrack-ng 1.0 (rc2 or better is recommended) 
 +  * psyco is recommended but not mandatory
  
-1. Install python, subversion, and graphviz. \\ +===== Installing =====
-2. Download and install airgraph-ng (even if you have aircrack-ng rc2 installed)+
  
-  svn co http://trac.aircrack-ng.org/svn/trunk/airgraph-ng +  git clone http://github.com/aircrack-ng/aircrack-ng 
-  cd airgraph-ng+  cd aircrack-ng 
 +  autoreconf -i 
 +  ./configure 
 +  cd scripts/airgraph-ng
   make install   make install
  
-===== Usage =====+===== Graph types =====
  
 +  * CAPR: Client to AP Relationship. This shows all the clients attached to a particular AP.
 +  * CPG: Common Probe Graph. This will show all probed SSID by clients.
 +
 +===== Usage =====
 ==== Help screen ==== ==== Help screen ====
  
Line 29: Line 40:
   -a      Print the about   -a      Print the about
   -h      Print this help   -h      Print this help
- 
-==== Graph types ==== 
- 
-  * CAPR: Client to AP Relationship. This shows all the clients attached to a particular AP. 
-  * CPG: Common Probe Graph. This will show all probed SSID by clients. 
- 
 ==== Creating graphs ==== ==== Creating graphs ====
  
 Now that you've got your nifty new program installed, its time to run some [[airodump-ng]] CSV files through it so you can see the graphs this program creates. Now that you've got your nifty new program installed, its time to run some [[airodump-ng]] CSV files through it so you can see the graphs this program creates.
-So you have airodump-ng .txt/.csv files to run through airgraph-ng goto your favorite terminal and cd into the directory where you're keeping them in then type:+So you have airodump-ng .txt/.csv files to run through airgraph-ng goto your favorite terminal and cd into the directory where you're keeping them.
  
-  airgraph-ng.py -i <choosenfile>.txt -o <choosenfilename>.png -g CAPR + The following creates a Client to Access point Relationship Graph 
 +  airdgraph-ng -i demo.csv -o demo.png -g CAPR
  
-The graph size and the time to generate it depends on the size of your CSV file. So, the more AP's and Clients you get with airodump-ng the bigger the graph will be+ The following creates a Client to Probe Request Graph 
 +  airgraph-ng -i demo.csv -o demo.png -g CPG 
 + 
 + 
 +The graph size and the time to generate it depends on the size of your CSV file. So, the more AP's and Clients you get with airodump-ng the bigger the graph it will be.
  
 ==== Combining CSV files ==== ==== Combining CSV files ====
Line 51: Line 61:
  
 Now you can take your combined airodump-ng .txt/.csv files and run it through airgraph-ng to make a larger graph. Now you can take your combined airodump-ng .txt/.csv files and run it through airgraph-ng to make a larger graph.
 +
 +===== Troubleshooting =====
 +==== Airodump-ng doesn't create .txt files anymore ====
 +
 +Starting from aircrack-ng 1.0rc3, .txt files were renamed to .csv.
 +
 +==== I get 'Psyco optimizer not installed, You may want to download and install it!' ====
 +
 +This is just a warning and you can safely ignore this message. However, it is recommended install [[http://psyco.sourceforge.net/|psyco]] because it speeds up execution of python code.
airgraph-ng.txt · Last modified: 2018/12/14 22:02 by mister_x