MCPcopy Create free account
hub / github.com/adobe/Marinus / censys_rec

Function censys_rec

web_server/public/javascripts/api.js:617–628  ·  view source on GitHub ↗
(type, value)

Source from the content-addressed store, hash-verified

615}
616
617function censys_rec(type, value) {
618 var url, query;
619 if (type === "domain") {
620 url = "/api/v1.0/censys/certs";
621 query = "?common_name=" + value;
622 } else {
623 url = "/api/v1.0/censys/ips";
624 query = "?ip=" + value;
625 }
626
627 make_get_request(url + query, censysResult, null, "scanInformation");
628}
629
630function display_scan_output(results, port) {
631 let data = "";

Callers 1

queriesFunction · 0.85

Calls 1

make_get_requestFunction · 0.85

Tested by

no test coverage detected