/usr/share/libpreludedb/classic/sqlite.sql is in libpreludedb0 1.0.0-1.1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | CREATE TABLE _format (
name TEXT NOT NULL,
version TEXT NOT NULL
);
INSERT INTO _format (name, version) VALUES('classic', '14.7');
CREATE TABLE Prelude_Alert (
_ident INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
messageid TEXT NULL
) ;
CREATE INDEX prelude_alert_messageid ON Prelude_Alert (messageid);
CREATE TABLE Prelude_Alertident (
_message_ident INTEGER NOT NULL,
_index INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
alertident TEXT NOT NULL,
analyzerid TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _index)
) ;
CREATE TABLE Prelude_ToolAlert (
_message_ident INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
command TEXT NULL
) ;
CREATE TABLE Prelude_CorrelationAlert (
_message_ident INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL
) ;
CREATE TABLE Prelude_OverflowAlert (
_message_ident INTEGER NOT NULL PRIMARY KEY,
program TEXT NOT NULL,
size INTEGER NULL,
buffer BLOB NULL
) ;
CREATE TABLE Prelude_Heartbeat (
_ident INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
messageid TEXT NULL,
heartbeat_interval INTEGER NULL
) ;
CREATE TABLE Prelude_Analyzer (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_index INTEGER NOT NULL,
analyzerid TEXT NULL,
name TEXT NULL,
manufacturer TEXT NULL,
model TEXT NULL,
version TEXT NULL,
class TEXT NULL,
ostype TEXT NULL,
osversion TEXT NULL,
PRIMARY KEY (_parent_type,_message_ident,_index)
) ;
CREATE INDEX prelude_analyzer_analyzerid ON Prelude_Analyzer (_parent_type,_index,analyzerid);
CREATE INDEX prelude_analyzer_index_model ON Prelude_Analyzer (_parent_type,_index,model);
CREATE TABLE Prelude_Classification (
_message_ident INTEGER NOT NULL PRIMARY KEY,
ident TEXT NULL,
text TEXT NOT NULL
) ;
CREATE INDEX prelude_classification_index_text ON Prelude_Classification (text);
CREATE TABLE Prelude_Reference (
_message_ident INTEGER NOT NULL,
_index INTEGER NOT NULL,
origin TEXT NOT NULL,
name TEXT NOT NULL,
url TEXT NOT NULL,
meaning TEXT NULL,
PRIMARY KEY (_message_ident, _index)
) ;
CREATE INDEX prelude_reference_index_name ON Prelude_Reference (name);
CREATE TABLE Prelude_Source (
_message_ident INTEGER NOT NULL,
_index INTEGER NOT NULL,
ident TEXT NULL,
spoofed TEXT NOT NULL,
interface TEXT NULL,
PRIMARY KEY (_message_ident, _index)
) ;
CREATE TABLE Prelude_Target (
_message_ident INTEGER NOT NULL,
_index INTEGER NOT NULL,
ident TEXT NULL,
decoy TEXT NOT NULL,
interface TEXT NULL,
PRIMARY KEY (_message_ident, _index)
) ;
CREATE TABLE Prelude_File (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
ident TEXT NULL,
path TEXT NOT NULL,
name TEXT NOT NULL,
category TEXT NULL,
create_time DATETIME NULL,
create_time_gmtoff INTEGER NULL,
modify_time DATETIME NULL,
modify_time_gmtoff INTEGER NULL,
access_time DATETIME NULL,
access_time_gmtoff INTEGER NULL,
data_size INTEGER NULL,
disk_size INTEGER NULL,
fstype TEXT NULL,
file_type TEXT NULL,
PRIMARY KEY (_message_ident, _parent0_index, _index)
) ;
CREATE TABLE Prelude_FileAccess (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
PRIMARY KEY (_message_ident, _parent0_index, _parent1_index, _index)
) ;
CREATE TABLE Prelude_FileAccess_Permission (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
_parent2_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
permission TEXT NOT NULL,
PRIMARY KEY (_message_ident, _parent0_index, _parent1_index, _parent2_index, _index)
) ;
CREATE TABLE Prelude_Linkage (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
category TEXT NOT NULL,
name TEXT NOT NULL,
path TEXT NOT NULL,
PRIMARY KEY (_message_ident, _parent0_index, _parent1_index, _index)
) ;
CREATE TABLE Prelude_Inode (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
change_time DATETIME NULL,
change_time_gmtoff INTEGER NULL,
number INTEGER NULL,
major_device INTEGER NULL,
minor_device INTEGER NULL,
c_major_device INTEGER NULL,
c_minor_device INTEGER NULL,
PRIMARY KEY (_message_ident, _parent0_index, _parent1_index)
) ;
CREATE TABLE Prelude_Checksum (
_message_ident INTEGER NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
algorithm TEXT NOT NULL,
value TEXT NOT NULL,
checksum_key TEXT NULL,
PRIMARY KEY (_message_ident, _parent0_index, _parent1_index, _index)
) ;
CREATE TABLE Prelude_Impact (
_message_ident INTEGER NOT NULL PRIMARY KEY,
description TEXT NULL,
severity TEXT NULL,
completion TEXT NULL,
type TEXT NOT NULL
) ;
CREATE INDEX prelude_impact_index_severity ON Prelude_Impact (severity);
CREATE INDEX prelude_impact_index_completion ON Prelude_Impact (completion);
CREATE INDEX prelude_impact_index_type ON Prelude_Impact (type);
CREATE TABLE Prelude_Action (
_message_ident INTEGER NOT NULL,
_index INTEGER NOT NULL,
description TEXT NULL,
category TEXT NOT NULL,
PRIMARY KEY (_message_ident, _index)
) ;
CREATE TABLE Prelude_Confidence (
_message_ident INTEGER NOT NULL PRIMARY KEY,
confidence FLOAT NULL,
rating TEXT NOT NULL
) ;
CREATE TABLE Prelude_Assessment (
_message_ident INTEGER NOT NULL PRIMARY KEY
) ;
CREATE TABLE Prelude_AdditionalData (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_index INTEGER NOT NULL,
type TEXT NOT NULL,
meaning TEXT NULL,
data BLOB NOT NULL,
PRIMARY KEY (_parent_type, _message_ident, _index)
) ;
CREATE TABLE Prelude_CreateTime (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
time DATETIME NOT NULL,
usec INTEGER NOT NULL,
gmtoff INTEGER NOT NULL,
PRIMARY KEY (_parent_type,_message_ident)
) ;
CREATE INDEX prelude_createtime_index ON Prelude_CreateTime (_parent_type,time);
CREATE TABLE Prelude_DetectTime (
_message_ident INTEGER NOT NULL PRIMARY KEY,
time DATETIME NOT NULL,
usec INTEGER NOT NULL,
gmtoff INTEGER NOT NULL
) ;
CREATE INDEX prelude_detecttime_index ON Prelude_DetectTime (time);
CREATE TABLE Prelude_AnalyzerTime (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
time DATETIME NOT NULL,
usec INTEGER NOT NULL,
gmtoff INTEGER NOT NULL,
PRIMARY KEY (_parent_type, _message_ident)
) ;
CREATE INDEX prelude_analyzertime_index ON Prelude_AnalyzerTime (_parent_type,time);
CREATE TABLE Prelude_Node (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
ident TEXT NULL,
category TEXT NULL,
location TEXT NULL,
name TEXT NULL,
PRIMARY KEY(_parent_type, _message_ident, _parent0_index)
) ;
CREATE INDEX prelude_node_index_location ON Prelude_Node (_parent_type,_parent0_index,location);
CREATE INDEX prelude_node_index_name ON Prelude_Node (_parent_type,_parent0_index,name);
CREATE TABLE Prelude_Address (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
ident TEXT NULL,
category TEXT NOT NULL,
vlan_name TEXT NULL,
vlan_num INTEGER NULL,
address TEXT NOT NULL,
netmask TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index, _index)
) ;
CREATE INDEX prelude_address_index_address ON Prelude_Address (_parent_type,_parent0_index,_index,address);
CREATE TABLE Prelude_User (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
ident TEXT NULL,
category TEXT NOT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index)
) ;
CREATE TABLE Prelude_UserId (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
_parent1_index INTEGER NOT NULL,
_parent2_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
ident TEXT NULL,
type TEXT NOT NULL,
name TEXT NULL,
tty TEXT NULL,
number INTEGER NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index, _parent1_index, _parent2_index, _index)
) ;
CREATE TABLE Prelude_Process (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
ident TEXT NULL,
name TEXT NOT NULL,
pid INTEGER NULL,
path TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index)
) ;
CREATE TABLE Prelude_ProcessArg (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL DEFAULT 'A',
_parent0_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
arg TEXT NOT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index, _index)
) ;
CREATE TABLE Prelude_ProcessEnv (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
env TEXT NOT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index, _index)
) ;
CREATE TABLE Prelude_Service (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
ident TEXT NULL,
ip_version INTEGER NULL,
name TEXT NULL,
port INTEGER NULL,
iana_protocol_number INTEGER NULL,
iana_protocol_name TEXT NULL,
portlist VARCHAR NULL,
protocol TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index)
) ;
CREATE INDEX prelude_service_index_protocol_port ON Prelude_Service (_parent_type,_parent0_index,protocol,port);
CREATE INDEX prelude_service_index_protocol_name ON Prelude_Service (_parent_type,_parent0_index,protocol,name);
CREATE TABLE Prelude_WebService (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
url TEXT NOT NULL,
cgi TEXT NULL,
http_method TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index)
) ;
CREATE TABLE Prelude_WebServiceArg (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
_index INTEGER NOT NULL,
arg TEXT NOT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index, _index)
) ;
CREATE TABLE Prelude_SnmpService (
_message_ident INTEGER NOT NULL,
_parent_type TEXT NOT NULL,
_parent0_index INTEGER NOT NULL,
snmp_oid TEXT NULL,
message_processing_model INTEGER NULL,
security_model INTEGER NULL,
security_name TEXT NULL,
security_level INTEGER NULL,
context_name TEXT NULL,
context_engine_id TEXT NULL,
command TEXT NULL,
PRIMARY KEY (_parent_type, _message_ident, _parent0_index)
) ;
|