mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-27 12:04:51 +02:00
12 lines
214 B
Python
12 lines
214 B
Python
import sys
|
|
|
|
filename = "vascolist.txt"
|
|
files = open(filename, 'r')
|
|
list = files.readlines()
|
|
|
|
for x in list:
|
|
x = x.strip()
|
|
a = x.split(" ")
|
|
if len(a) == 2:
|
|
print a[0] + "." + a[1] + "@vasco.com"
|