Gmail validity checker
The program will return only two results:
Alive
: means that everything is fine with this Gmail and is being used.Unregistered
: It means that the Gmail is not registered or is blocked.
You must be aware that an Unregistered
status does not mean that you are truly unregistered. The program cannot determine whether Gmail is unregistered or blocked.
Determining whether a state is truly unregistered is already supported in the Enhanced Mode
.
- Hide
Chrome
Windows, using no-browser. - Record results to
result.txt
file.
- Fixed bug
- Add Enhanced Mode
- Support for truly unregistered judgments
You need to install GmailChecker
before.
pip install GmailChecker
- Create a new
.py
file with the following codes.
from GmailChecker import GmailChecker
# Only Print Unregistered Result
GmailChecker.verify("[email protected]")
# Print Alive Result
GmailChecker.verify("[email protected]", 1)
- If you want to scan Gmails in bulk, you can use the following codes.
from GmailChecker import GmailChecker
for i in range(1000000, 9999999):
email = str(i) + '@gmail.com'
GmailChecker.verify(email)
-
You should download
chromedriver
to file directory. -
Create a new
.py
file with the following codes.
from GmailChecker import GmailCheckerEnhanced
for i in range(9960001, 9969999):
# By default only unregistered results will be output
GmailCheckerEnhanced.scan(i)
Abusing Gmail to get previously unlisted e-mail addresses
GmailValidChecker © Vincent Young, Released under the MIT License.