Combo List Fixer
A simple python code to fix your combo list by removing any text after a separator or removing duplicate combos
Removing any text after a separator
As an example we have the following combo list file:
[email protected]:password | leaked by anonymous
[email protected]:password | leaked by anonymous
[email protected]:password | leaked by anonymous
Obviously, if you want to check these accounts with a checker, you will encounter some problems.
So, by using this code, the above combo list will be like the bottom by setting " |" as the separator:
[email protected]:password
[email protected]:password
[email protected]:password
Removing duplicate combos
As an example we have the result of that following combo list file:
[email protected]:password
[email protected]:password
[email protected]:password
[email protected]:password
Then after you accept to remove duplicate combos, the results bottom will be saved:
[email protected]:password
[email protected]:password
[email protected]:password
Output
After you enter the required info, if the operation completes successfully, the results will be saved as output.txt
.
Hope you like the code