This file is indexed.

/usr/share/pyshared/logsparser/tests/test_normalizer.py is in python-logsparser 0.4-1.

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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# -*- python -*-

# pylogsparser - Logs parsers python library
#
# Copyright (C) 2011 Wallix Inc.
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; either version 2.1 of the License, or (at your
# option) any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

import os
import unittest
from datetime import datetime
from logsparser.normalizer import Normalizer, TagType, Tag, CallbackFunction, CSVPattern, get_generic_tagTypes
from lxml.etree import parse, DTD
from StringIO import StringIO

class TestSample(unittest.TestCase):
    """Unit tests for logsparser.normalize. Validate sample log example"""
    normalizer_path = os.environ['NORMALIZERS_PATH']

    def normalize_samples(self, norm, name, version):
        """Test logparser.normalize validate for syslog normalizer."""
        # open parser
        n = parse(open(os.path.join(self.normalizer_path, norm)))
        # validate DTD
        dtd = DTD(open(os.path.join(self.normalizer_path,
                                    'normalizer.dtd')))
        dtd.assertValid(n)
        # Create normalizer from xml definition
        normalizer = Normalizer(n, os.path.join(self.normalizer_path, 'common_tagTypes.xml'), os.path.join(self.normalizer_path, 'common_callBacks.xml'))
        self.assertEquals(normalizer.name, name)
        self.assertEquals(normalizer.version, version)
        self.assertTrue(normalizer.validate())

    def test_normalize_samples_001_syslog(self):
        self.normalize_samples('syslog.xml', 'syslog', 0.99)

    def test_normalize_samples_002_apache(self):
        self.normalize_samples('apache.xml', 'apache', 0.99)
    
    def test_normalize_samples_003_dhcpd(self):
        self.normalize_samples('dhcpd.xml', 'DHCPd', 0.99)
    
    def test_normalize_samples_004_lea(self):
        self.normalize_samples('LEA.xml', 'LEA', 0.99)
    
    def test_normalize_samples_005_netfilter(self):
        self.normalize_samples('netfilter.xml', 'netfilter', 0.99)
    
    def test_normalize_samples_006_pam(self):
        self.normalize_samples('pam.xml', 'PAM', 0.99)
    
    def test_normalize_samples_007_postfix(self):
        self.normalize_samples('postfix.xml', 'postfix', 0.99)
    
    def test_normalize_samples_008_squid(self):
        self.normalize_samples('squid.xml', 'squid', 0.99)
    
    def test_normalize_samples_009_sshd(self):
        self.normalize_samples('sshd.xml', 'sshd', 0.99)
    
    def test_normalize_samples_010_named(self):
        self.normalize_samples('named.xml', 'named', 0.99)
    
    def test_normalize_samples_011_named2(self):
        self.normalize_samples('named-2.xml', 'named-2', 0.99)
    
    def test_normalize_samples_012_symantec(self):
        self.normalize_samples('symantec.xml', 'symantec', 0.99)
    
    def test_normalize_samples_013_msexchange2007MTL(self):
        self.normalize_samples('MSExchange2007MessageTracking.xml', 'MSExchange2007MessageTracking', 0.99)

    def test_normalize_samples_014_arkoonfast360(self):
        self.normalize_samples('arkoonFAST360.xml', 'arkoonFAST360', 0.99)

    def test_normalize_samples_015_s3(self):
        self.normalize_samples('s3.xml', 's3', 0.99)

    def test_normalize_samples_016_snare(self):
        self.normalize_samples('snare.xml', 'snare', 0.99)

    def test_normalize_samples_017_vmware(self):
        self.normalize_samples('VMWare_ESX4-ESXi4.xml', 'VMWare_ESX4-ESXi4', 0.99)

#    def test_normalize_samples_018_mysql(self):
#        self.normalize_samples('mysql.xml', 'mysql', 0.99)

    def test_normalize_samples_019_IIS(self):
        self.normalize_samples('IIS.xml', 'IIS', 0.99)

    def test_normalize_samples_020_fail2ban(self):
        self.normalize_samples('Fail2ban.xml', 'Fail2ban', 0.99)
        
    def test_normalize_samples_021_GeoIPsource(self):
        try:
            import GeoIP #pyflakes:ignore
            self.normalize_samples('GeoIPsource.xml', 'GeoIPsource', 0.99)
        except ImportError:
            # cannot test
            pass

    def test_normalize_samples_022_URL_parsers(self):
        self.normalize_samples('URLparser.xml', 'URLparser', 0.99)
        self.normalize_samples('RefererParser.xml', 'RefererParser', 0.99)
    
    def test_normalize_samples_023_bitdefender(self):
        self.normalize_samples('bitdefender.xml', 'bitdefender', 0.99)

    def test_normalize_samples_024_denyall_traffic(self):
        self.normalize_samples('deny_traffic.xml', 'deny_traffic', 0.99)

    def test_normalize_samples_025_denyall_event(self):
        self.normalize_samples('deny_event.xml', 'deny_event', 0.99)

    def test_normalize_samples_026_xferlog(self):
        self.normalize_samples('xferlog.xml', 'xferlog', 0.99)

    def test_normalize_samples_027_wabauth(self):
        self.normalize_samples('wabauth.xml', 'wabauth', 0.99)

    def test_normalize_samples_028_dansguardian(self):
        self.normalize_samples('dansguardian.xml', 'dansguardian', 0.99)

    def test_normalize_samples_029_cisco_asa_header(self):
        self.normalize_samples('cisco-asa_header.xml', 'cisco-asa_header', 0.99)

    def test_normalize_samples_030_cisco_asa_msg(self):
        self.normalize_samples('cisco-asa_msg.xml', 'cisco-asa_msg', 0.99)

class TestCSVPattern(unittest.TestCase):
    """Test CSVPattern behaviour"""
    normalizer_path = os.environ['NORMALIZERS_PATH']
   
    tt1 = TagType(name='Anything', ttype=str, regexp='.*')

    tt2 = TagType(name='SyslogDate', ttype=datetime,
                  regexp='[A-Z][a-z]{2} [ 0-9]\d \d{2}:\d{2}:\d{2}')
        
    tag_types = {}
    for tt in (tt1, tt2):
        tag_types[tt.name] = tt

    generic_tagTypes = get_generic_tagTypes(path = os.path.join(normalizer_path,
                                                 'common_tagTypes.xml'))

    cb_syslogdate = CallbackFunction("""
MONTHS = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
          'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
now = datetime.now()
currentyear = now.year
# Following line may throw a lot of ValueError
newdate = datetime(currentyear,
                   MONTHS.index(value[0:3]) + 1,
                   int(value[4:6]),
                   int(value[7:9]),
                   int(value[10:12]),
                   int(value[13:15]))
log["date"] = newdate
""", name = 'formatsyslogdate')

    def test_normalize_csv_pattern_001(self):
        t1 = Tag(name='date',
                tagtype = 'Anything',
                substitute = 'DATE')
        t2 = Tag(name='id',
                tagtype = 'Anything',
                substitute = 'ID')
        t3 = Tag(name='msg',
                tagtype = 'Anything',
                substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t

        p = CSVPattern('test', 'DATE,ID,MSG', tags = p_tags, tagTypes = self.tag_types, genericTagTypes = self.generic_tagTypes)
        ret = p.normalize('Jul 18 08:55:35,83,"start listening on 127.0.0.1, pam auth started"')
        self.assertEqual(ret['date'], 'Jul 18 08:55:35')
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on 127.0.0.1, pam auth started')
        
    def test_normalize_csv_pattern_002(self):
        t1 = Tag(name='date',
                tagtype = 'SyslogDate',
                substitute = 'DATE')
        t2 = Tag(name='id',
                tagtype = 'Anything',
                substitute = 'ID')
        t3 = Tag(name='msg',
                tagtype = 'Anything',
                substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t
        
        p = CSVPattern('test', 'DATE,ID,MSG', tags = p_tags, tagTypes = self.tag_types, genericTagTypes = self.generic_tagTypes)

        ret = p.normalize('Jul 18 08:55:35,83,"start listening on 127.0.0.1, pam auth started"')
        self.assertEqual(ret['date'], 'Jul 18 08:55:35')
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on 127.0.0.1, pam auth started')
            
        ret = p.normalize('2011 Jul 18 08:55:35,83,"start listening on 127.0.0.1, pam auth started"')
        self.assertEqual(ret, None)
        
    def test_normalize_csv_pattern_003(self):
        t1 = Tag(name='date',
               tagtype = 'SyslogDate',
               substitute = 'DATE',
               callbacks = ['formatsyslogdate'])
        t2 = Tag(name='id',
               tagtype = 'Anything',
               substitute = 'ID')
        t3 = Tag(name='msg',
               tagtype = 'Anything',
               substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t
        
        p = CSVPattern('test', 'DATE,ID,MSG', tags = p_tags,
                        tagTypes = self.tag_types, callBacks = {self.cb_syslogdate.name:self.cb_syslogdate},
                        genericTagTypes = self.generic_tagTypes)

        ret = p.normalize('Jul 18 08:55:35,83,"start listening on 127.0.0.1, pam auth started"')
        self.assertEqual(ret['date'], datetime(datetime.now().year, 7, 18, 8, 55, 35))
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on 127.0.0.1, pam auth started')
    
    def test_normalize_csv_pattern_004(self):
        t1 = Tag(name='date',
                tagtype = 'Anything',
                substitute = 'DATE')
        t2 = Tag(name='id',
                tagtype = 'Anything',
                substitute = 'ID')
        t3 = Tag(name='msg',
                tagtype = 'Anything',
                substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t

        p = CSVPattern('test', ' DATE; ID ;MSG ', separator = ';', quotechar = '=', tags = p_tags, tagTypes = self.tag_types, genericTagTypes = self.generic_tagTypes)
        ret = p.normalize('Jul 18 08:55:35;83;=start listening on 127.0.0.1; pam auth started=')
        self.assertEqual(ret['date'], 'Jul 18 08:55:35')
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on 127.0.0.1; pam auth started')
    
    def test_normalize_csv_pattern_005(self):
        t1 = Tag(name='date',
                tagtype = 'Anything',
                substitute = 'DATE')
        t2 = Tag(name='id',
                tagtype = 'Anything',
                substitute = 'ID')
        t3 = Tag(name='msg',
                tagtype = 'Anything',
                substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t

        p = CSVPattern('test', 'DATE ID MSG', separator = ' ', quotechar = '=', tags = p_tags, tagTypes = self.tag_types, genericTagTypes = self.generic_tagTypes)
        ret = p.normalize('=Jul 18 08:55:35= 83 =start listening on 127.0.0.1 pam auth started=')
        self.assertEqual(ret['date'], 'Jul 18 08:55:35')
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on 127.0.0.1 pam auth started')
    
    def test_normalize_csv_pattern_006(self):
        t1 = Tag(name='date',
                tagtype = 'Anything',
                substitute = 'DATE')
        t2 = Tag(name='id',
                tagtype = 'Anything',
                substitute = 'ID')
        t3 = Tag(name='msg',
                tagtype = 'Anything',
                substitute = 'MSG')

        p_tags = {}
        for t in (t1, t2, t3):
            p_tags[t.name] = t

        p = CSVPattern('test', 'DATE ID MSG', separator = ' ', quotechar = '=', tags = p_tags, tagTypes = self.tag_types, genericTagTypes = self.generic_tagTypes)
        # Default behaviour of csv reader is doublequote for escape a quotechar.
        ret = p.normalize('=Jul 18 08:55:35= 83 =start listening on ==127.0.0.1 pam auth started=')
        self.assertEqual(ret['date'], 'Jul 18 08:55:35')
        self.assertEqual(ret['id'], '83')
        self.assertEqual(ret['msg'], 'start listening on =127.0.0.1 pam auth started')


class TestCommonElementsPrecedence(unittest.TestCase):
    """Unit test used to validate that callbacks defined in a normalizer
    take precedence over common callbacks."""

    normalizer_path = os.environ['NORMALIZERS_PATH']
    fake_syslog = StringIO("""<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE normalizer SYSTEM "normalizer.dtd">
<normalizer name="syslog"
            version="0.99"
            unicode="yes"
            ignorecase="yes"
            matchtype="match"
            appliedTo="raw">
 <description>
  <localized_desc language="en">Uh</localized_desc>
  <localized_desc language="fr">Ah</localized_desc>
 </description>
 <authors>
  <author>mhu@wallix.com</author>
 </authors>
<tagTypes>
  <tagType name="MACAddress" type="basestring">
   <description>
    <localized_desc language="en">Oh</localized_desc>
    <localized_desc language="fr">Eh</localized_desc>
   </description>
   <regexp>\d{1,3}</regexp>
  </tagType>
 </tagTypes>
 <callbacks>
  <callback name="MMM dd hh:mm:ss">
log["TEST"] = "TEST"
  </callback>
 </callbacks>
 <patterns>
  <pattern name="syslog-001">
   <description>
    <localized_desc language="en">Hoo</localized_desc>
    <localized_desc language="fr">Hi</localized_desc>
   </description>
   <text>MYMAC MYWHATEVER</text>
   <tags>
    <tag name="mac" tagType="MACAddress">
     <description>
      <localized_desc language="en">the log's priority</localized_desc>
      <localized_desc language="fr">urrrh</localized_desc>
     </description>
     <substitute>MYMAC</substitute>
    </tag>
    <tag name="__whatever" tagType="Anything">
     <description>
     <localized_desc language="en">the log's date</localized_desc>
     <localized_desc language="fr">bleeeh</localized_desc></description>
     <substitute>MYWHATEVER</substitute>
     <callbacks>
      <callback>MMM dd hh:mm:ss</callback>
     </callbacks>
    </tag>
   </tags>
   <examples>
    <example>
     <text>99 HERPA DERP</text>
     <expectedTags>
      <expectedTag name="mac">99</expectedTag>
      <expectedTag name="TEST">TEST</expectedTag>
     </expectedTags>
    </example>
   </examples>
  </pattern>
 </patterns>
</normalizer>""")
    n = parse(fake_syslog)

    def test_00_validate_fake_syslog(self):
        """Validate the fake normalizer"""
        dtd = DTD(open(os.path.join(self.normalizer_path,
                                    'normalizer.dtd')))
        self.assertTrue(dtd.validate(self.n))
        
    def test_10_common_elements_precedence(self):
        """Testing callbacks priority"""
        normalizer = Normalizer(self.n, 
                                os.path.join(self.normalizer_path, 'common_tagTypes.xml'), 
                                os.path.join(self.normalizer_path, 'common_callBacks.xml'))
        self.assertTrue(normalizer.validate())


class TestFinalCallbacks(unittest.TestCase):
    """Unit test used to validate FinalCallbacks"""

    normalizer_path = os.environ['NORMALIZERS_PATH']
    fake_syslog = StringIO("""<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE normalizer SYSTEM "normalizer.dtd">
<normalizer name="syslog"
            version="0.99"
            unicode="yes"
            ignorecase="yes"
            matchtype="match"
            appliedTo="raw">
 <description>
  <localized_desc language="en">Uh</localized_desc>
  <localized_desc language="fr">Ah</localized_desc>
 </description>
 <authors>
  <author>mhu@wallix.com</author>
 </authors>
<tagTypes>
  <tagType name="blop" type="basestring">
   <description>
    <localized_desc language="en">Oh</localized_desc>
    <localized_desc language="fr">Eh</localized_desc>
   </description>
   <regexp>[a-zA-Z]</regexp>
  </tagType>
 </tagTypes>
 <callbacks>
  <callback name="toto">
log["toto"] = log["a"] + log["b"]
  </callback>
  <callback name="tata">
if not value:
    log["tata"] = log["toto"] * 2
else:
    log["tata"] = log["toto"] * 3
  </callback>
  <callback name="tutu">
log['b'] = value * 2
  </callback>
 </callbacks>
 <patterns>
  <pattern name="syslog-001">
   <description>
    <localized_desc language="en">Hoo</localized_desc>
    <localized_desc language="fr">Hi</localized_desc>
   </description>
   <text>A B C</text>
   <tags>
    <tag name="a" tagType="blop">
     <description>
      <localized_desc language="en">the log's priority</localized_desc>
      <localized_desc language="fr">urrrh</localized_desc>
     </description>
     <substitute>A</substitute>
    </tag>
    <tag name="__b" tagType="blop">
     <description>
     <localized_desc language="en">the log's date</localized_desc>
     <localized_desc language="fr">bleeeh</localized_desc></description>
     <substitute>B</substitute>
     <callbacks>
      <callback>tutu</callback>
     </callbacks>
    </tag>
    <tag name="c" tagType="blop">
     <description>
      <localized_desc language="en">the log's priority</localized_desc>
      <localized_desc language="fr">urrrh</localized_desc>
     </description>
     <substitute>C</substitute>
    </tag>
   </tags>
   <examples>
    <example>
     <text>a b c</text>
     <expectedTags>
      <expectedTag name="a">a</expectedTag>
      <expectedTag name="b">bb</expectedTag>
      <expectedTag name="c">c</expectedTag>
      <expectedTag name="toto">abb</expectedTag>
      <expectedTag name="tata">abbabb</expectedTag>
     </expectedTags>
    </example>
   </examples>
  </pattern>
 </patterns>
 <finalCallbacks>
    <callback>toto</callback>
    <callback>tata</callback>
 </finalCallbacks>
</normalizer>""")
    n = parse(fake_syslog)

    def test_00_validate_fake_syslog(self):
        """Validate the fake normalizer"""
        dtd = DTD(open(os.path.join(self.normalizer_path,
                                    'normalizer.dtd')))
        self.assertTrue(dtd.validate(self.n))

    def test_10_final_callbacks(self):
        """Testing final callbacks"""
        normalizer = Normalizer(self.n, 
                                os.path.join(self.normalizer_path, 'common_tagTypes.xml'), 
                                os.path.join(self.normalizer_path, 'common_callBacks.xml'))
        self.assertTrue(['toto', 'tata'] == normalizer.finalCallbacks)
        self.assertTrue(normalizer.validate())


if __name__ == "__main__":
    unittest.main()