AntiDisposmail : Detecting Disposable Email Addresses

AntiDisposmail is a tool for detecting Disposable Email Addresses. Antbot.pw provides a free, open API endpoint for checking a domain or email address against a frequently-updated list of disposable domains. CORS is enabled for all originating domains, so you can call the API directly from your client-side code.

GET https://antibot.pw/api/disposable?email=radenvodka@0815.su HTTP/1.1

The response will be JSON with one boolean property, e.g. {"disposable":false}

Also Read – CodeCat : Tool To Help In Manual Analysis In CodeReview

Using jQuery

<script>
$( “#email” ).change(function() {
var val = $(“#email”).val();
$.get(‘https://antibot.pw/api/disposable?email=’+val,
function (data, textStatus) {
if(data[‘disposable’] == true){
alert(“email disposable”);
}
});
});
</script>

R K

Recent Posts

Cybersecurity Toolkit – Essential Python Tools For Penetration Testing

Welcome to the Cybersecurity Toolkit, a collection of essential Python tools designed for penetration testing…

22 hours ago

i-Haklab : Unleashing The Power Of Termux For Enhanced Cybersecurity

The main objective of the creation of this laboratory is to transport the applications, tools…

22 hours ago

Dark FB – A Comprehensive Toolkit For Advanced Facebook Interactions

"Dark FB" is a powerful toolkit designed for those who wish to delve deeper into…

22 hours ago

Wifi-Hacking.py : Your Ultimate Guide To Ethical WiFi Penetration Testing

Unlock the potential of ethical hacking with Wifi-Hacking.py, a powerful cybersecurity tool designed to navigate…

2 days ago

THREAT ACTORS – TTPs : Decoding The Digital Underworld Through Comprehensive Mapping

This repository was created with the aim of assisting companies and independent researchers about Tactics,…

2 days ago

MagicDot : Harnessing DOT-To-NT Path Conversion For Rootkit-Like Capabilities

A set of rootkit-like abilities for unprivileged users, and vulnerabilities based on the DOT-to-NT path…

2 days ago