Hacker News new | ask | show | jobs
by jasinjames 359 days ago
From “test_everything.c”:

// ============== TEST 6: ¿Claude AI militar?==============

int test_military_ai() { printf("\n[TEST] Claude AI Militar\n");

    // Check if military AI exists
    if (access("kernel/claude_military_grade.c", F_OK) == 0) {
        printf(" Archivo existe\n");
        
        // Check if it's real crypto or fake
        FILE* f = popen("grep -c 'XOR' kernel/claude_military_grade.c", "r");
        char buffer[128];
        fgets(buffer, sizeof(buffer), f);
        pclose(f);
        
        if (atoi(buffer) > 0) {
            printf(" Crypto FALSO (solo XOR)\n");
            return 0;
        } else {
            printf("? Crypto no verificable\n");
            return 0;
        }
    } else {
        printf(" NO EXISTE\n");
        return 0;
    }
}

New whole-program analysis just dropped (it's grep).

1 comments

Many years ago around 2010 you could find a lot of amateur keyloggers out there, and `strings bad.exe | grep -A1 '@gmail$'` was a valid way to extract the credentials of the mail portion on a frequent basis. They'd just leave it hanging out for grabs.