This file is indexed.

/usr/lib/python2.7/dist-packages/captcha/south_migrations/0001_initial.py is in python-django-captcha 0.5.1-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
# encoding: utf-8
import datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models

class Migration(SchemaMigration):

    def forwards(self, orm):
        
        # Adding model 'CaptchaStore'
        db.create_table('captcha_captchastore', (
            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
            ('challenge', self.gf('django.db.models.fields.CharField')(max_length=32)),
            ('response', self.gf('django.db.models.fields.CharField')(max_length=32)),
            ('hashkey', self.gf('django.db.models.fields.CharField')(unique=True, max_length=40)),
            ('expiration', self.gf('django.db.models.fields.DateTimeField')()),
        ))
        db.send_create_signal('captcha', ['CaptchaStore'])


    def backwards(self, orm):
        
        # Deleting model 'CaptchaStore'
        db.delete_table('captcha_captchastore')


    models = {
        'captcha.captchastore': {
            'Meta': {'object_name': 'CaptchaStore'},
            'challenge': ('django.db.models.fields.CharField', [], {'max_length': '32'}),
            'expiration': ('django.db.models.fields.DateTimeField', [], {}),
            'hashkey': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '40'}),
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
            'response': ('django.db.models.fields.CharField', [], {'max_length': '32'})
        }
    }

    complete_apps = ['captcha']