Developers Guide

//Include script src as https://cdnjs.cloudflare.com/ajax/libs/js-sha3/0.7.0/sha3.js" 
JQuery(document).ready(function() {
    $("#go").click(function(abacus) {
            abacus.preventDefault();
            var pwd_hash = (keccak_512($("#passwd").val()).substring(0, 10));
            koodudal = 'https://xposedornot.com/api/v1/pass/anon/' + encodeURIComponent(pwd_hash);
            var pwd_str = document.getElementById("passwd").value;
            if (pwd_str.length != 0) {
                var xon_response = $.ajax(koodudal)
                    .done(function(n) {
                        $('#message-text').html("Oops : Password looks exposed and hence avoid using this");
                    })
            })
    }
    else {
        $('#message-text').html("Oops! Try again with a valid password. ");
        $('#password').focus();
    })
})