Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
adv ex on 5 january 2024
adv ex on 22 February 2024
banner Expire 26 October 2024
Rescator cvv and dump shop
banner expire at 13 May

Yale lodge shop
UniCvv
banner Expire 1 April  2021

Premiums

TRUSTED VENDOR
Joined
Dec 5, 2020
Messages
1,464
it worked very effectively on my computer, I hope it will work well on your computer




#!/usr/bin/python
#Collects email addr from database
#and writes them to a file.

import sys, re, sets

if len(sys.argv) != 3:
print "\nUsage: ./dumpemail.py <database> <save file>"
print "Example:"
print "\t ./dumpemail.py db.sql emails.txt\n"
sys.exit(1)

try:
database = open(sys.argv***91;1***93;, "r").read()
except(IOError):
print "\nError: Check your db path\n"
sys.exit(1)

emails = list(sets.Set(re.findall('***91;\.\w***93;+@***91;a-zA-Z_***93;+?\.***91;a-zA-Z***93;{2,3}', database)))
if len(emails) >= 1:
ofile = open(sys.argv***91;2***93;, "a")
print "\nFound:",len(emails)
print "Writing to file:",sys.argv***91;2***93;,"\n\n"
for e in emails:
print e
ofile.writelines(e+"\n")
ofile.close()
else:
print "\n***91;-***93; No email addresses found\n"
print "\n***91;+***93; Done\n"
 
Top Bottom