Changes between Version 4 and Version 5 of AuditFramework

Show
Ignore:
Timestamp:
04/06/11 10:35:54 (2 years ago)
Author:
nopper (IP: 193.205.82.9)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AuditFramework

    v4 v5  
    1111 
    1212=== Passive ==== 
    13  * dhcp [[BR]] 
    14  * fingerprint[[BR]] 
     13 * dhcp 
     14 * fingerprint 
    1515 * http 
    1616 * ip 
     
    4040 
    4141 
    42 == Build audit plugins ==  
     42== Procedure to build audit plugins ==  
     43 
     44This is a two-step procedure. First we need to call setup-autogen.py to generate setup.py files inside each audit directory. 
     45 
     46{{{ 
     47$ cd audits/ 
     48$ ./setup-autogen.py passive/ 
     49$ ./setup-autogen.py active/ 
     50}}} 
     51 
     52Then we need to actually build the audits (pack the source files inside ump UMIT Plugin file format). To do this just type: 
     53 
     54{{{ 
     55$ ./setup-autogen.py -b passive/ 
     56$ ./setup-autogen.py -b active/ 
     57}}} 
     58 
     59This will generate various ump files inside the `audits/compiled` directory. Now the last step to use the audits inside PacketManipulator is just to add that path in the plugins path (this is achieved by adding a new entry pointing to this directory by using the Plugin Window / Paths tab). 
     60 
     61=== Building or updating just a single audit === 
     62 
     63Please note that `setup-autogen.py` script can be used also for updating/creating just one single audit. The syntax is the same: 
     64 
     65{{{ 
     66$ ./setup-autogen.py passive/fingerprint    # This will create setup.py 
     67$ ./setup-autogen.py -b passive/fingerprint # This will actually build the ump file inside audits/compiled 
     68}}} 
    4369 
    4470 
    45 Sample: 
    46  
    47 Current dir: PacketManipulator root 
    48  
    49 $ cd audit 
    50  
    51 $ ./setup-autogen.py passive/fingerprint/ 
    52  
    53 $ ./setup-autogen.py -b passive/fingerprint/ 
    54  
    55  
    56  
    57  
    58