Skip to content
Snippets Groups Projects
phyPswdGet.py 365 B
Newer Older
Recolic Keghart's avatar
Recolic Keghart committed
#!/bin/env python3
# -*- coding: UTF-8 -*-
# Scan password and personal information.

import urllib.parse, urllib.request
import sys

def doTest(sid):



    return (True, 'cookie')

def grepPriv(sid, cookie):

    print('Name:... Sid:...')

for sid in range(201610001, 201617174):
    bSuccess, cookie = doTest(sid)[0]
    if bSuccess:
        grepPriv()