@@ -27,7 +27,7 @@ def check(plugin, passport, passport_type):
27
27
return
28
28
app_name = plugin ['information' ]['name' ]
29
29
category = plugin ["information" ]["category" ]
30
- website = plugin ["information" ]["website" ]
30
+ website = plugin ["information" ]["website" ]. encode ( "utf-8" )
31
31
judge_yes_keyword = plugin ['status' ]['judge_yes_keyword' ].encode ("utf-8" )
32
32
judge_no_keyword = plugin ['status' ]['judge_no_keyword' ].encode ("utf-8" )
33
33
headers = {
@@ -115,15 +115,15 @@ def main():
115
115
print '\n Input "-h" view the help information.'
116
116
sys .exit (0 )
117
117
if parser_argument .cellphone :
118
- print inRed ('\n [+] Phone Checking: %s\n ' ) % parser_argument .cellphone
118
+ print inYellow ('\n [+] Phone Checking: %s\n ' ) % parser_argument .cellphone
119
119
file_name = "cellphone_" + str (parser_argument .cellphone )
120
120
output_init (file_name , "Phone: " , str (parser_argument .cellphone ))
121
121
if parser_argument .user :
122
- print inRed ('\n [+] Username Checking: %s\n ' ) % parser_argument .user
122
+ print inYellow ('\n [+] Username Checking: %s\n ' ) % parser_argument .user
123
123
file_name = "user_" + str (parser_argument .user )
124
124
output_init (file_name , "UserName: " , str (parser_argument .user ))
125
125
if parser_argument .email :
126
- print inRed ('\n [+] Email Checking: %s\n ' ) % parser_argument .email
126
+ print inYellow ('\n [+] Email Checking: %s\n ' ) % parser_argument .email
127
127
file_name = "email_" + str (parser_argument .email )
128
128
output_init (file_name , "E-mail: " , str (parser_argument .email ))
129
129
jobs = []
0 commit comments