This file is indexed.

/usr/share/pyshared/social_auth/management/commands/clean_associations.py is in python-django-social-auth 0.7.23-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
import time
import base64

from openid.server.server import Signatory
from openid.association import Association as OIDAssociation

from django.core.management.base import BaseCommand


class Command(BaseCommand):
    help = 'Clear expired Associations instances from db'

    def handle(self, *args, **options):
        from social_auth.models import Association
        print 'Clearing expired Association instances'
        timestamp = time.time() + Signatory.SECRET_LIFETIME
        associations = Association.objects.filter(issued__lt=timestamp)
        remove = []

        for assoc in associations:
            oid = OIDAssociation(assoc.handle,
                                 base64.decodestring(assoc.secret),
                                 assoc.issued,
                                 assoc.lifetime,
                                 assoc.assoc_type)
            if oid.getExpiresIn() == 0:
                remove.append(assoc.pk)
        if remove:
            print 'Cleaning %s Associations' % len(remove)
            Association.filter(pk__in=remove).delete()
        else:
            print 'No Associations to remove'