July 30, 2022 at 11:48 PM
Hello,
I just made this quick script in a few seconds to separate e-mails and passwords from combolists, because I needed to use e-mails and passwords payloads combinations in Burpsuite, and that the combolist format isn't supported by the application.
Hopefully it will be useful for other people as well. :D
Don't forget to change the COMBOLIST value to your file name for this to work.
I just made this quick script in a few seconds to separate e-mails and passwords from combolists, because I needed to use e-mails and passwords payloads combinations in Burpsuite, and that the combolist format isn't supported by the application.
COMBOLIST = 'FILENAME'
with open(COMBOLIST, 'r+') as f:
combolist = f.readlines()
emails = open('emails.txt', 'a+')
passwords = open('passwords.txt', 'a+')
for combos in combolist:
combo = combos.split(":")
emails.write(combo[0])
emails.write('
')
passwords.write(combo[1])
print('Success.')
Hopefully it will be useful for other people as well. :D
Don't forget to change the COMBOLIST value to your file name for this to work.


