public-life
twitter
  • $ WHO'A'MI
  • writeups
    • boxes
      • windows
        • 🔎ANALYSIS
      • linux
        • clicker
        • 🐒BIZNESS
        • MONITORED
    • general
  • pentesting
    • Footprinting
    • WebEngagements
      • One-Click-ATO
    • Network
      • XSS-BoF-DomainAdmin
    • AD-DIARIES
      • S1P1
Powered by GitBook
On this page

Was this helpful?

$ WHO'A'MI

#include <iostream>

std::string whoami = R"(
# $ whoami
~ just a man who lives between zeros and ones.
)";

std::string love = R"(
# $ love
~ cars & codes & offensive security
)";

int main() {
    std::cout << whoami;
    std::cout << love;

    return 0;
}
➜ z1ntrx@leet  ~/pl  g++ whoami.cpp  -o whoami
➜ z1ntrx@leet  ~/pl  ./whoami                                       

# $ whoami
~ just a man who lives between zeros and ones.

# $ love
~ cars & codes & offensive security

Last updated 7 months ago

Was this helpful?