The program below can take one or more plain text files as input. It works with python2 and python3.
Let's say we have two files that may contain email addresses:
- file_a.txt
foo bar
ok [email protected] sup
[email protected],wyd
hello world!
import requests | |
postData = { | |
'name': 'username', | |
'pass': 'secret!', | |
'form_id': 'user_login', | |
'op': 'Log in' | |
} | |
loginUrl = 'http://www.some-drupal-site.com/user' |
The program below can take one or more plain text files as input. It works with python2 and python3.
Let's say we have two files that may contain email addresses:
foo bar
ok [email protected] sup
[email protected],wyd
hello world!