(event)
| 754 | } |
| 755 | |
| 756 | function cert_page_back(event) { |
| 757 | var url; |
| 758 | if (certSource === "censys") { |
| 759 | url = "/api/v1.0/censys/cert_ca/" + current_ca_name; |
| 760 | } else { |
| 761 | url = api_map["zgrab_root"] + "443/cert_ca/" + current_ca_name; |
| 762 | } |
| 763 | let query = ""; |
| 764 | event.preventDefault(); |
| 765 | page_back(url, query, "certs"); |
| 766 | } |
| 767 | |
| 768 | function cert_page_forward(event) { |
| 769 | var url; |
nothing calls this directly
no test coverage detected