Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b26e09f

Browse files
committed
another minor update
1 parent f712d24 commit b26e09f

3 files changed

Lines changed: 13 additions & 31 deletions

File tree

extra/shutils/duplicates.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,18 @@
1818

1919
for item in f.readlines():
2020
item = item.strip()
21-
if item in items:
22-
if item:
23-
print item
24-
items.append(item)
25-
21+
try:
22+
str.encode(item)
23+
if item in items:
24+
if item:
25+
print item
26+
else:
27+
items.append(item)
28+
29+
if not item:
30+
items.append('')
31+
except:
32+
pass
2633
f.close()
2734

2835
f = open(sys.argv[1], 'w+')

txt/common-columns.txt

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -474,21 +474,14 @@ module_addr
474474

475475
# List from schemafuzz.py (http://www.beenuarora.com/code/schemafuzz.py)
476476
user
477-
username
478-
password
479-
passwd
480477
pass
481478
cc_number
482-
id
483-
email
484479
emri
485480
fjalekalimi
486481
pwd
487-
user_name
488482
customers_email_address
489483
customers_password
490484
user_password
491-
name
492485
user_pass
493486
admin_user
494487
admin_password
@@ -522,9 +515,6 @@ usrpass
522515
usr_pass
523516
usrnam
524517
nc
525-
uid
526-
userid
527-
user_id
528518
myusername
529519
mail
530520
emni
@@ -594,13 +584,11 @@ access
594584
accnt
595585
accnts
596586
account
597-
accounts
598587
admin
599588
adminemail
600589
adminlogin
601590
adminmail
602591
admins
603-
aid
604592
aim
605593
auth
606594
authenticate
@@ -610,20 +598,16 @@ cc_expires
610598
cc_owner
611599
cc_type
612600
cfg
613-
cid
614601
clientname
615602
clientpassword
616603
clientusername
617-
conf
618604
config
619605
contact
620606
converge_pass_hash
621607
converge_pass_salt
622608
crack
623-
customer
624609
customers
625610
cvvnumber]
626-
data
627611
db_database_name
628612
db_hostname
629613
db_password
@@ -632,23 +616,18 @@ download
632616
e-mail
633617
emailaddress
634618
full
635-
gid
636619
group
637-
group_name
638620
hash
639621
hashsalt
640622
homepage
641623
icq
642624
icq_number
643-
id_group
644625
id_member
645626
images
646627
index
647628
ip_address
648629
last_ip
649630
last_login
650-
lastname
651-
log
652631
login_name
653632
login_pw
654633
loginkey
@@ -683,8 +662,6 @@ serial
683662
session_member_id
684663
session_member_login_key
685664
sesskey
686-
setting
687-
sid
688665
spacer
689666
status
690667
store
@@ -697,7 +674,6 @@ temp_pass
697674
temp_password
698675
temppass
699676
temppasword
700-
text
701677
un
702678
user_email
703679
user_icq
@@ -722,4 +698,3 @@ usrs
722698
warez
723699
xar_name
724700
xar_pass
725-
id

txt/common-tables.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2048,4 +2048,4 @@ Site_Login
20482048
UserAdmin
20492049
Admins
20502050
Login
2051-
Logins
2051+
Logins

0 commit comments

Comments
 (0)