Skip to content

Commit 6526583

Browse files
committed
new pass
1 parent f011b7b commit 6526583

File tree

2 files changed

+147
-0
lines changed

2 files changed

+147
-0
lines changed

pass/password.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import sys
2+
diclist=open('str.dic').readlines()
3+
prelist=diclist[diclist.index('##pre\n')+1:diclist.index('##preend\n')]
4+
extlist=diclist[diclist.index('##ext\n')+1:diclist.index('##extend\n')]
5+
andlist=diclist[diclist.index('##and\n')+1:diclist.index('##andend\n')]
6+
passlist=diclist[diclist.index('##pass\n')+1:diclist.index('##passend\n')]
7+
passwordlist=[]
8+
for Pre in prelist:
9+
for Ext in extlist:
10+
for And in andlist:
11+
passwordlist.append(Pre.strip()+sys.argv[1].strip()+And.strip()+Ext.strip())
12+
for Pass in passlist:
13+
passwordlist.append(Pass.strip())
14+
for i in passwordlist:
15+
print sys.argv[1].strip()+':'+i.strip()

pass/str.dic

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
##pre
2+
1
3+
4+
##preend
5+
##ext
6+
1
7+
520
8+
123
9+
666
10+
888
11+
wsx
12+
345
13+
1234
14+
12345
15+
123456
16+
2016
17+
2015
18+
2014
19+
123..
20+
21+
##extend
22+
##and
23+
@
24+
_
25+
.
26+
%
27+
28+
##andend
29+
##pass
30+
Aa111111
31+
Aa123456s
32+
123456
33+
a123456
34+
123456a
35+
5201314
36+
111111
37+
woaini1314
38+
qq123456
39+
123123
40+
000000
41+
1qaz2wsx
42+
1q2w3e4r
43+
qwe123
44+
7758521
45+
123qwe
46+
a123123
47+
123456aa
48+
woaini520
49+
woaini
50+
100200
51+
1314520
52+
woaini123
53+
123321
54+
q123456
55+
123456789
56+
123456789a
57+
5211314
58+
asd123
59+
a123456789
60+
z123456
61+
asd123456
62+
a5201314
63+
aa123456
64+
zhang123
65+
aptx4869
66+
123123a
67+
1q2w3e4r5t
68+
1qazxsw2
69+
5201314a
70+
1q2w3e
71+
aini1314
72+
31415926
73+
q1w2e3r4
74+
123456qq
75+
woaini521
76+
1234qwer
77+
a111111
78+
520520
79+
iloveyou
80+
abc123
81+
110110
82+
111111a
83+
123456abc
84+
w123456
85+
7758258
86+
123qweasd
87+
159753
88+
qwer1234
89+
a000000
90+
qq123123
91+
zxc123
92+
123654
93+
abc123456
94+
123456q
95+
qq5201314
96+
12345678
97+
000000a
98+
456852
99+
as123456
100+
1314521
101+
112233
102+
521521
103+
qazwsx123
104+
zxc123456
105+
abcd1234
106+
asdasd
107+
666666
108+
love1314
109+
QAZ123
110+
aaa123
111+
q1w2e3
112+
aaaaaa
113+
a123321
114+
123000
115+
11111111
116+
12qwaszx
117+
5845201314
118+
s123456
119+
nihao123
120+
caonima123
121+
zxcvbnm123
122+
wang123
123+
159357
124+
1A2B3C4D
125+
asdasd123
126+
584520
127+
753951
128+
147258
129+
1123581321
130+
110120
131+
qq1314520
132+
##passend

0 commit comments

Comments
 (0)