Interface Hacker

Generator to generate hacker/IT words and phrases.

interface Hacker {
    hackerAbbreviation(): string;
    hackerAdjective(): string;
    hackerNoun(): string;
    hackerPhrase(): string;
    hackerVerb(): string;
    hackeringVerb(): string;
}

Methods

  • Abbreviations and acronyms commonly used in the hacking and cybersecurity community.

    Returns string

    a random hacker abbreviation

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackerAbbreviation())
    }

    Output (formatted as JSON value)

    "GB"
    
  • Adjectives describing terms often associated with hackers and cybersecurity experts.

    Returns string

    a random hacker adjective

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackerAdjective())
    }

    Output (formatted as JSON value)

    "auxiliary"
    
  • Noun representing an element, tool, or concept within the realm of hacking and cybersecurity.

    Returns string

    a random hacker noun

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackerNoun())
    }

    Output (formatted as JSON value)

    "application"
    
  • Informal jargon and slang used in the hacking and cybersecurity community.

    Returns string

    a random hacker phrase

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackerPhrase())
    }

    Output (formatted as JSON value)

    "Try to transpile the EXE sensor, maybe it will deconstruct the wireless interface!"
    
  • Verbs associated with actions and activities in the field of hacking and cybersecurity.

    Returns string

    a random hacker verb

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackerVerb())
    }

    Output (formatted as JSON value)

    "read"
    
  • Verb describing actions and activities related to hacking, often involving computer systems and security.

    Returns string

    a random hackering verb

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.hacker.hackeringVerb())
    }

    Output (formatted as JSON value)

    "quantifying"