forked from github/server
neue passwortmimik
This commit is contained in:
parent
2a4a64081f
commit
09c322582a
|
@ -6,7 +6,7 @@ import sys
|
||||||
dbname=sys.argv[1]
|
dbname=sys.argv[1]
|
||||||
maxnum=int(sys.argv[2])
|
maxnum=int(sys.argv[2])
|
||||||
|
|
||||||
query = "select distinct u.email, r.name, u.locale, s.bonus from users u, races r, subscriptions s left join userips i on u.id=i.user left join bannedips b on i.ip=b.ip where s.user=u.id and b.ip is NULL and u.status='CONFIRMED' and r.race=s.race and r.locale='de' order by u.id"
|
query = "select distinct u.email, s.password, r.name, u.locale, s.bonus from users u, races r, subscriptions s left join userips i on u.id=i.user left join bannedips b on i.ip=b.ip where s.user=u.id and b.ip is NULL and u.status='CONFIRMED' and r.race=s.race and r.locale='de' order by u.id"
|
||||||
db=MySQLdb.connect(db=dbname)
|
db=MySQLdb.connect(db=dbname)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
num=cursor.execute(query)
|
num=cursor.execute(query)
|
||||||
|
@ -14,7 +14,7 @@ if num>maxnum:
|
||||||
num=maxnum
|
num=maxnum
|
||||||
while num:
|
while num:
|
||||||
num=num-1
|
num=num-1
|
||||||
email, race, locale, bonus = cursor.fetchone()
|
email, password, race, locale, bonus = cursor.fetchone()
|
||||||
if bonus==None:
|
if bonus==None:
|
||||||
bonus=0
|
bonus=0
|
||||||
print email+" "+race+" "+locale+" "+str(int(bonus))
|
print email+" "+race+" "+locale+" "+str(int(bonus))+" "+password
|
||||||
|
|
Loading…
Reference in New Issue