blogroll_tags
Data license: All Rights Reserved · Data source: krisyotam.com · About: Kris Yotam
9 rows where blogroll_id = 47
This data as json, CSV (advanced)
| id ▼ | blogroll_id | tag |
|---|---|---|
| 380 | absolomb 47 | HackTheBox |
| 381 | absolomb 47 | UnderTheWire |
| 382 | absolomb 47 | SLAE |
| 383 | absolomb 47 | writeups |
| 384 | absolomb 47 | security |
| 385 | absolomb 47 | privilege escalation |
| 386 | absolomb 47 | shellcode |
| 387 | absolomb 47 | Linux |
| 388 | absolomb 47 | Windows |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE blogroll_tags (
id INTEGER PRIMARY KEY AUTOINCREMENT,
blogroll_id INTEGER NOT NULL,
tag TEXT NOT NULL,
FOREIGN KEY (blogroll_id) REFERENCES blogroll(id) ON DELETE CASCADE,
UNIQUE(blogroll_id, tag)
);