This post is by a banned member (ujangsambo) - Unhide
26 October, 2025 - 05:54 AM
Reply
(18 April, 2025 - 02:01 AM)lguesslmlose Wrote: Show More
This script filters lines from a text file (combo.txt) and writes only specific lines to a new file (filtered.txt). Here’s how it works:
Symbols List: The script starts by defining a list of special symbols (symbols = ['@', ':', ';', '|', '#', '%', '!', '*']).
File Names: It specifies the input file (combo.txt) and the output file (filtered.txt).
Reading and Filtering: It opens both files:
For each line in the input file (combo.txt), it removes any extra whitespace.
It checks if the line contains a colon (:). If it does, the line is split into two parts: email and password.
It then checks if the password contains any of the symbols from the list.
If the password includes any of these symbols, the entire line is written to the output file (filtered.txt).
In short, this script helps filter email-password combinations where the password contains specific special characters. It’s useful for identifying or processing login credentials that meet certain criteria.
Example of how it works:
If a line in combo.txt is user@example.com:Pa$$w0rd!, it will be written to filtered.txt because Pa$$w0rd! contains the symbols !.
If a line is user2@example.com:password123, it will not be written to filtered.txt because password123 does not contain any of the specified symbols.
![[Image: popcorn2.gif]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstatic.cracked.sh%2Fimages%2Fsmilies%2Fpopcorn2.gif) thnkss mannnnnn
This post is by a banned member (Hernandez8) - Unhide
01 November, 2025 - 12:06 AM
Reply
This post is by a banned member (Cobra1010) - Unhide
01 November, 2025 - 03:17 AM
Reply
(18 April, 2025 - 02:01 AM)lguesslmlose Wrote: Show More
This script filters lines from a text file (combo.txt) and writes only specific lines to a new file (filtered.txt). Here’s how it works:
Symbols List: The script starts by defining a list of special symbols (symbols = ['@', ':', ';', '|', '#', '%', '!', '*']).
File Names: It specifies the input file (combo.txt) and the output file (filtered.txt).
Reading and Filtering: It opens both files:
For each line in the input file (combo.txt), it removes any extra whitespace.
It checks if the line contains a colon (:). If it does, the line is split into two parts: email and password.
It then checks if the password contains any of the symbols from the list.
If the password includes any of these symbols, the entire line is written to the output file (filtered.txt).
In short, this script helps filter email-password combinations where the password contains specific special characters. It’s useful for identifying or processing login credentials that meet certain criteria.
Example of how it works:
If a line in combo.txt is user@example.com:Pa$$w0rd!, it will be written to filtered.txt because Pa$$w0rd! contains the symbols !.
If a line is user2@example.com:password123, it will not be written to filtered.txt because password123 does not contain any of the specified symbols.
ccccccccccc
This post is by a banned member (IXONE) - Unhide
02 November, 2025 - 04:39 AM
Reply
(18 April, 2025 - 02:01 AM)lguesslmlose Wrote: Show More
[font][font]Este script filtra líneas de un archivo de texto (combo.txt) y escribe solo las líneas seleccionadas en un nuevo archivo (filtered.txt). Así funciona: [/font][/font]
[font][font]Lista de símbolos: El script comienza definiendo una lista de símbolos especiales (symbols = ['@', ':', ';', '|', '#', '%', '!', '*']). [/font][/font]
[font][font]Nombres de archivo: Especifica el archivo de entrada (combo.txt) y el archivo de salida (filtered.txt). [/font][/font]
[font][font]Lectura y filtrado: Abre ambos archivos: [/font][/font]
[font][font]Para cada línea del archivo de entrada (combo.txt), elimina los espacios en blanco adicionales. [/font][/font]
[font][font]Comprueba si la línea contiene dos puntos (:). Si los contiene, la línea se divide en dos partes: correo electrónico y contraseña. [/font][/font]
[font][font]Luego, comprueba si la contraseña contiene alguno de los símbolos de la lista. [/font][/font]
[font][font]Si la contraseña incluye alguno de estos símbolos, la línea completa se escribe en el archivo de salida (filtered.txt). [/font][/font]
[font][font]En resumen, este script ayuda a filtrar combinaciones de correo electrónico y contraseña donde la contraseña contiene caracteres especiales específicos. Es útil para identificar o procesar credenciales de inicio de sesión que cumplan ciertos criterios. [/font][/font]
[font][font]Ejemplo de funcionamiento: [/font][/font]
[font][font]si una línea en combo.txt es user@example.com:Pa$$w0rd!, se escribirá en filtered.txt porque Pa$$w0rd! contiene el símbolo !. [/font][/font]
[font][font]Si una línea es user2@example.com:password123, no se escribirá en filtered.txt porque password123 no contiene ninguno de los símbolos especificados.[/font][/font]
[font][font]tns[/font][/font]
|