how to clean database? 09-07-2020, 08:18 PM
#1
like any xyz database leak it got name,email,pass,xyz details , so i want to know how should i extract only email:pass in this situation any idea?
Diamond how to clean database? filter_list | |
(09-07-2020, 08:18 PM)fsociety Wrote: like any xyz database leak it got name,email,pass,xyz details , so i want to know how should i extract only email:pass in this situation any idea?
(09-07-2020, 08:50 PM)Pikami Wrote:(09-07-2020, 08:18 PM)fsociety Wrote: like any xyz database leak it got name,email,pass,xyz details , so i want to know how should i extract only email:pass in this situation any idea?
If it's in a clean csv format you can write a simple python script to just split by the comma symbol and take the 2nd and 3rd values.
(09-07-2020, 08:50 PM)Pikami Wrote:(09-07-2020, 08:18 PM)fsociety Wrote: like any xyz database leak it got name,email,pass,xyz details , so i want to know how should i extract only email:pass in this situation any idea?
If it's in a clean csv format you can write a simple python script to just split by the comma symbol and take the 2nd and 3rd values.
(09-08-2020, 01:25 AM)Dismas Wrote:(09-07-2020, 08:50 PM)Pikami Wrote:(09-07-2020, 08:18 PM)fsociety Wrote: like any xyz database leak it got name,email,pass,xyz details , so i want to know how should i extract only email:pass in this situation any idea?
If it's in a clean csv format you can write a simple python script to just split by the comma symbol and take the 2nd and 3rd values.
If it's in SQL format, you should be able to export it as CSV as well.