Request Xin tools lọc email | pass 8 char

Joined
Jul 2, 2016
Messages
8
Reactions
3
MR
0.000
Chào bà con .

Mới mua đc 1 triệu mail | pass. mình muốn 1 cái tools lọc pass 8 kí tự thật nhanh . mình biết rất nhiều người ghét thái độ post topic của mình. nhưng ai có thì xin hãy làm ơn. giúp tôi. cám ơn bà con
 
Ib ,t coder giá rẻ =))
 
1705509233063.png
mình xin với
 
Python code cho bác nào cần

Python:
def filter_emails(input_file, output_file):
    with open(input_file, 'r') as file:
        with open(output_file, 'w') as output:
            for line in file:
                # Splitting the line into email and password
                parts = line.strip().split('|')
                if len(parts) == 2:
                    email, password = parts
                    # Checking if the password length is greater than 8
                    if len(password) > 8:
                        output.write(line)

# Usage
input_file = 'email.txt'
output_file = 'filtered_emails.txt'
filter_emails(input_file, output_file)
 

Announcements

Forum statistics

Threads
421,057
Messages
7,104,894
Members
173,137
Latest member
chubao

Most viewed of week

Most discussed of week

Most viewed of week

Most discussed of week

Back
Top Bottom