This file is indexed.

/usr/share/doc/sniffit/BETA-TESTING is in sniffit 0.3.7.beta-17.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
This is a beta version, that means that some things need testing or
fine-tuning. This file includes the things I would like to be informed
about. So if you are able to test one of these things, please do so and mail
me back the results. (coder@reptile.rug.ac.be)

1. LINUX
2. SunOS/Solaris
3. Irix
4. FreeBSD
5. BSDi
6. DEC/OSF
7. NetBSD

-----------------------------------------------------------------------------

1. LINUX
  
  - Does sniffing a SLIP connection work?


2. SunOS/Solaris

 
3. Irix

  - Does sniffing a PPP connection work?
    
    If sniffit just sits there, doing nothing, try changing (sn_data.h)
    
    #ifdef IRIX
    #define NETDEV_NR      2
    char *NETDEV[]={"ppp","et"};
    int HEADSIZE[]={0    ,14};              /* ppp: 4 or 0 or nothing */
    #endif             

    to:   

    #ifdef IRIX
    #define NETDEV_NR      2
    char *NETDEV[]={"ppp","et"};
    int HEADSIZE[]={4    ,14};              /* ppp: 4 or 0 or nothing */
    #endif               


4. FreeBSD

  - Does sniffing a PPP connection work?
    To try this, remove the lines that are marked below with X in the
    sn_data.h file:  

    #ifdef FREEBSD                          /* ppp: 4 or 0 ? */      
    /*									X
    #define NETDEV_NR      2                                         
    char *NETDEV[]={"ppp","ed"};            
    int HEADSIZE[]={4    ,14};                                       
    */									X
    #define NETDEV_NR      1						X
    char *NETDEV[]={"ed"};          					X
    int HEADSIZE[]={14}; 						X
    #endif                             

    If it doesn't work, and sniffit just sits there, try changing:
    
    int HEADSIZE[]={4    ,14};

    to:

    int HEADSIZE[]={0    ,14};


5. BSDi

  - Does sniffing a PPP connection work?
    To try this, remove the lines that are marked below with X in the
    sn_data.h file:

    #ifdef BSDI                             /* ppp: 4 or 0 ? */
    /*									X
    #define NETDEV_NR      2                                         
    char *NETDEV[]={"ppp","ef"};                                     
    int HEADSIZE[]={4    ,14};                                       
    */									X
    #define NETDEV_NR      1						X
    char *NETDEV[]={"ef"};  						X
    int HEADSIZE[]={14}; 						X
    #endif                               

    If it doesn't work, and sniffit just sits there, try changing:

    int HEADSIZE[]={4    ,14};

    to:   

    int HEADSIZE[]={0    ,14};


6. DEC/OSF


7. NetBSD 

 - Does sniffing a PPP connection work?

   If sniffit just sits there, doing nothing, try changing the sn_data.h
   file. Search the line:
   
   #ifdef NETBSD   

   from there on change in every "int HEADSIZE[]={}" the 4 to a 0.

   e.g.: int HEADSIZE[]={4    ,14  ,14};
         becomes: int HEADSIZE[]={0    ,14  ,14};