Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View wvrld's full-sized avatar
XMR
XMR

Block or report wvrld

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
wvrld/README.md
// wvrld/README.ts

interface Identity {
    readonly handle:     string;
    readonly alias:      string;
    readonly role:       Role[];
    readonly company:    string;
    readonly website:    string;
    readonly mission:    string;
}

type Role = "Pentester" | "Developer" | "Privacy & Security Promoter";

const wvrld: Identity = {
    handle:    "62104e53b9fc85ef",
    alias:     "wvrld",
    role:      ["Pentester", "Developer", "Privacy & Security Promoter"],
    company:   "Bitbone",
    website:   "https://wvrld.cloud",
    mission:   "Software was meant to be light and feel effortless to use.",
};

type TechStack = {
    languages:  readonly string[];
    os:         readonly string[];
    interests:  readonly string[];
};

const stack: TechStack = {
    languages:  ["Python", "JavaScript", "TypeScript", "Solidity", "Go"],
    os:         ["macOS Tahoe", "TailsOS", "ParrotOS"],
    interests:  ["Offensive Security", "Privacy Engineering", "Web3", "OSINT", "GEOINT", "IMINT", "SOCMINT", "TECHINT", "Reverse Engineering"],
};

// Bitbone — Cybersecurity & AI Solutions | Brno, CZ
// https://bitbone.io

type Service = {
    name:         string;
    description:  string;
};

const bitbone: Service[] = [
    {
        name:         "Application Security",
        description:  "Code review and security analysis across Python, TypeScript, and Go",
    },
    {
        name:         "Penetration Testing",
        description:  "Manual testing and advanced threat simulations for web apps, APIs, and networks",
    },
    {
        name:         "Infrastructure Security",
        description:  "Cloud and hybrid environment assessments — AWS, Azure, GCP",
    },
    {
        name:         "AI Solutions",
        description:  "Production-ready RAG systems, custom LLM integrations, and intelligent automation",
    },
    {
        name:         "Secure Development",
        description:  "Architecture review, auth mechanisms, and data handling from day one",
    },
];

const links: Record<string, string> = {
    portfolio:    "https://wvrld.cloud",
    tryhackme:    "https://tryhackme.com/p/xwvrld",
    company:      "https://bitbone.io",
};

TryHackMe


type Contact = {
    email:        () => string;
    pgp: {
        fingerprint:  string;
        keyserver:    string;
        download:     string;
    };
};

const contact: Contact = {
    email:        () => atob("bHVrYXNAYml0Ym9uZS5pbw=="),
    pgp: {
        fingerprint:  "04BC DACE 96C2 F6AE 58E1 5F25 E7C8 355A 9F42 AC35",
        keyserver: "https://keys.openpgp.org/search?q=04BCDACE96C2F6AE58E15F25E7C8355A9F42AC35",
        download: "https://keys.openpgp.org/vks/v1/by-fingerprint/04BCDACE96C2F6AE58E15F25E7C8355A9F42AC35",
    },
};

// Please encrypt and sign your emails if you are a PGP user. All communication is expected to be encrypted where possible.

const principles: readonly string[] = [
    "Privacy is a fundamental right, not a feature.",
    "Security through obscurity is no security at all.",
    "If it's not open source, it's not trustworthy.",
    "Minimal footprint. Maximum impact.",
];


"Arguing that you don't care about the right to privacy because you have nothing to hide is no different than saying you don't care about free speech because you have nothing to say."

"A free press benefits more than just those who read the paper."

E. J. Snowden, 2015


// EOF

Popular repositories Loading

  1. cybertutorial cybertutorial Public

    concept of my book.

    7 1

  2. AndroidHacking AndroidHacking Public

    Everything here is only for educational purposes only. Add star if u want, i will be very happy. Thanks :)

    4

  3. BitLocker-Encryption-Attack BitLocker-Encryption-Attack Public

    Microsoft Bitlocker drive encryption attack.

    4

  4. wvrld wvrld Public

    4

  5. pyarmor-deobfuscate pyarmor-deobfuscate Public

    Python 3

  6. Hacking-Cheatsheet Hacking-Cheatsheet Public

    Forked from kobs0N/Hacking-Cheatsheet

    List of commands and techniques to while conducting any kind of hacking :)

    2