(event)
| 766 | } |
| 767 | |
| 768 | function cert_page_forward(event) { |
| 769 | var url; |
| 770 | if (certSource === "censys") { |
| 771 | url = "/api/v1.0/censys/cert_ca/" + current_ca_name; |
| 772 | } else { |
| 773 | url = api_map["zgrab_root"] + "443/cert_ca/" + current_ca_name; |
| 774 | } |
| 775 | let query = ""; |
| 776 | event.preventDefault(); |
| 777 | page_forward(url, query, "certs"); |
| 778 | } |
| 779 | |
| 780 | function fetch_scan_issuer(name) { |
| 781 | var url; |
nothing calls this directly
no test coverage detected