Sha256: d58db77d64b1bdb962aee1d16d3d9b374738450ad7432de100de303bbaff183f
Contents?: true
Size: 436 Bytes
Versions: 18
Compression:
Stored size: 436 Bytes
Contents
import { BaseLink } from "@/links/base" import type { Link, LinkType } from "@/types" export class Censys extends BaseLink implements Link { public baseURL: string public name: string public type: LinkType public constructor() { super() this.baseURL = "https://search.censys.io" this.name = "Censys" this.type = "ip" } public href(data: string): string { return this.baseURL + `/hosts/${data}` } }
Version data entries
18 entries across 18 versions & 1 rubygems