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