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 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
|
# Web browser artifacts.
name: BrowserCache
doc: Web browser cache of multiple web browsers.
sources:
- type: ARTIFACT_GROUP
attributes:
names:
- 'ChromeCache'
- 'FirefoxCache'
- 'InternetExplorerCache'
- 'SafariCache'
labels: [Browser]
supported_os: [Darwin,Linux,Windows]
---
name: BrowserHistory
doc: Web browser history of multiple web browsers.
sources:
- type: ARTIFACT_GROUP
attributes:
names:
- 'ChromeHistory'
- 'FirefoxHistory'
- 'InternetExplorerHistory'
- 'OperaHistory'
- 'SafariDownloads'
- 'SafariHistory'
labels: [Browser]
supported_os: [Darwin,Linux,Windows]
---
name: ChromeStorage
doc: |
Google Chrome, Canary and Chromium browser artifacts for Storage APIs.
Includes Web Storage (sessionStorage for session-only data and
localStorage for persistent data), IndexedDB (used for structured data),
and FileSystem (object storage in a virtual file system).
sources:
- type: ARTIFACT_GROUP
attributes:
names:
- 'ChromeLocalStorage'
- 'ChromeSessionStorage'
- 'ChromeFileSystem'
- 'ChromeIndexedDB'
labels: [Browser]
supported_os: [Darwin,Linux,Windows]
urls:
- 'https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API'
- 'https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API'
- 'https://developer.mozilla.org/en-US/docs/Web/API/FileSystem'
---
name: ChromeCache
doc: |
Google Chrome, Canary and Chromium browser caches.
Canary uses "Chrome SxS" on windows.
* Disk cache (or Cache)
* Media cache
* Application cache
* GPU shader cache
* PNaCl translation cache
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Google\Chrome\User Data\*\Application Cache\Cache\*'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Cache\*'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Media Cache\*'
- '%%users.localappdata%%\Google\Chrome\User Data\*\GPUCache\*'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Application Cache\Cache\*'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Cache\*'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Media Cache\*'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\GPUCache\*'
- '%%users.localappdata%%\Chromium\User Data\*\Application Cache\Cache\*'
- '%%users.localappdata%%\Chromium\User Data\*\Cache\*'
- '%%users.localappdata%%\Chromium\User Data\*\Media Cache\*'
- '%%users.localappdata%%\Chromium\User Data\*\GPUCache\*'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Caches/Google/Chrome/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome/*/Media Cache/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Application Cache/Cache/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/GPUCache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome/PnaclTranslationCache/*'
- '%%users.homedir%%/Caches/Google/Chrome Canary/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome Canary/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome Canary/*/Media Cache/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Application Cache/Cache/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/GPUCache/*'
- '%%users.homedir%%/Library/Caches/Google/Chrome Canary/PnaclTranslationCache/*'
- '%%users.homedir%%/Caches/Chromium/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Chromium/*/Cache/*'
- '%%users.homedir%%/Library/Caches/Chromium/*/Media Cache/*'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Application Cache/Cache/*'
- '%%users.homedir%%/Library/Application Support/Chromium/*/GPUCache/*'
- '%%users.homedir%%/Library/Caches/Chromium/PnaclTranslationCache/*'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.cache/google-chrome/Cache/*'
- '%%users.homedir%%/.cache/google-chrome/*/Cache/*'
- '%%users.homedir%%/.cache/google-chrome/*/Media Cache/*'
- '%%users.homedir%%/.cache/google-chrome/PnaclTranslationCache/*'
- '%%users.homedir%%/.config/google-chrome/*/Application Cache/*'
- '%%users.homedir%%/.config/google-chrome/*/Cache/*'
- '%%users.homedir%%/.config/google-chrome/*/Media Cache/*'
- '%%users.homedir%%/.config/google-chrome/*/GPUCache/*'
- '%%users.homedir%%/.cache/chromium/Cache/*'
- '%%users.homedir%%/.cache/chromium/*/Cache/*'
- '%%users.homedir%%/.cache/chromium/*/Media Cache/*'
- '%%users.homedir%%/.cache/chromium/PnaclTranslationCache/*'
- '%%users.homedir%%/.config/chromium/*/Application Cache/*'
- '%%users.homedir%%/.config/chromium/*/Cache/*'
- '%%users.homedir%%/.config/chromium/*/Media Cache/*'
- '%%users.homedir%%/.config/chromium/*/GPUCache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-profile/Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-profile/*/Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-profile/*/Media Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-profile/PnaclTranslationCache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-config/google-chrome/Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-config/google-chrome/*/Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-config/google-chrome/*/Media Cache/*'
- '%%users.homedir%%/.cache/chrome-remote-desktop/chrome-config/google-chrome/PnaclTranslationCache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Application Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Media Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/GPUCache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Application Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Media Cache/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/GPUCache/*'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://github.com/ForensicArtifacts/artifacts-kb/blob/master/webbrowser/ChromeCache.md']
---
name: ChromeCookies
doc: Chrome Cookies database.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\Cookies'
- '%%users.localappdata%%\Chromium\User Data\*\Cookies-journal'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Cookies'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Cookies-journal'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Cookies'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Cookies-journal'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Cookies'
- '%%users.homedir%%/.config/google-chrome/*/Cookies-journal'
- '%%users.homedir%%/.config/chromium/*/Cookies'
- '%%users.homedir%%/.config/chromium/*/Cookies-journal'
- '%%users.homedir%%/.config/google-chrome-beta/*/Cookies'
- '%%users.homedir%%/.config/google-chrome-beta/*/Cookies-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Cookies'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Cookies-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Cookies'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Cookies-journal'
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/Cookies'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Cookies-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Cookies'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Cookies-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Cookies'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Cookies-journal'
supported_os: [Darwin]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
---
name: ChromeExtensionActivity
doc: Chrome Extension Activity database.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Google\Chrome\User Data\*\Extension Activity'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Extension Activity'
- '%%users.localappdata%%\Chromium\User Data\*\Extension Activity'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Extension Activity'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Extension Activity'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Extension Activity'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Extension Activity'
- '%%users.homedir%%/.config/chromium/*/Extension Activity'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Google_Chrome#Extension_Activity_database']
---
name: ChromeExtensions
doc: Chrome browser extension files.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Google\Chrome\User Data\*\Extensions\**10'
- '%%users.localappdata%%\Chromium\User Data\*\Extensions\**10'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Extensions\**10'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Extensions/**10'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Extensions/**10'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Extensions/**10'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Extensions/**10'
- '%%users.homedir%%/.config/google-chrome-beta/*/Extensions/**10'
- '%%users.homedir%%/.config/chromium/*/Extensions/**10'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Extensions/**10'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Extensions/**10'
supported_os: [Linux]
supported_os: [Windows, Darwin, Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Google_Chrome#Extensions']
---
name: ChromeExtensionRegistryKeys
doc: Chrome extensions installed by writing windows registry keys.
sources:
- type: REGISTRY_KEY
attributes:
keys:
- 'HKEY_LOCAL_MACHINE\Software\Google\Chrome\Extensions\**5'
- 'HKEY_LOCAL_MACHINE\Software\Wow6432Node\Google\Chrome\Extensions\**5'
labels: [Browser]
supported_os: [Windows]
urls: ['https://developer.chrome.com/extensions/external_extensions#registry']
---
name: ChromeFileSystem
doc: |
Google Chrome, Canary and Chromium File System files.
The File System directory backs Chrome's fileSystem API. Inside this
directory are a mixture of the data files saved using the fileSystem
API and LevelDB directories that track the logical structure of the
virtual file system.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\File System\**5'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\File System\**5'
- '%%users.localappdata%%\Google\Chrome\User Data\*\File System\**5'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/File System/**5'
- '%%users.homedir%%/.config/chromium/*/File System/**5'
- '%%users.homedir%%/.config/google-chrome-beta/*/File System/**5'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/File System/**5'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/File System/**5'
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/File System/**5'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/File System/**5'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/File System/**5'
supported_os: [Darwin]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls:
- 'https://developer.chrome.com/apps/fileSystem'
- 'https://developer.mozilla.org/en-US/docs/Web/API/FileSystem'
- 'https://dfir.blog/deciphering-browser-hieroglyphics-leveldb-filesystem/'
---
name: ChromeHistory
doc: Chrome browser history.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\Archived History'
- '%%users.localappdata%%\Chromium\User Data\*\Archived History-journal'
- '%%users.localappdata%%\Chromium\User Data\*\History'
- '%%users.localappdata%%\Chromium\User Data\*\History-journal'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Archived History'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Archived History-journal'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\History'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\History-journal'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Archived History'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Archived History-journal'
- '%%users.localappdata%%\Google\Chrome\User Data\*\History'
- '%%users.localappdata%%\Google\Chrome\User Data\*\History-journal'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/Archived History'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Archived History-journal'
- '%%users.homedir%%/Library/Application Support/Chromium/*/History'
- '%%users.homedir%%/Library/Application Support/Chromium/*/History-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Archived History'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Archived History-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/History'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/History-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Archived History'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Archived History-journal'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/History'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/History-journal'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/chromium/*/Archived History'
- '%%users.homedir%%/.config/chromium/*/Archived History-journal'
- '%%users.homedir%%/.config/chromium/*/History'
- '%%users.homedir%%/.config/chromium/*/History-journal'
- '%%users.homedir%%/.config/google-chrome/*/Archived History'
- '%%users.homedir%%/.config/google-chrome/*/Archived History-journal'
- '%%users.homedir%%/.config/google-chrome/*/History'
- '%%users.homedir%%/.config/google-chrome/*/History-journal'
- '%%users.homedir%%/.config/google-chrome-beta/*/Archived History'
- '%%users.homedir%%/.config/google-chrome-beta/*/Archived History-journal'
- '%%users.homedir%%/.config/google-chrome-beta/*/History'
- '%%users.homedir%%/.config/google-chrome-beta/*/History-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Archived History'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Archived History-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/History'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/History-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Archived History'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Archived History-journal'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/History'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/History-journal'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Google_Chrome']
---
name: ChromeIndexedDB
doc: |
Google Chrome, Canary and Chromium IndexedDB files.
The IndexedDB directory contains one directory per origin that uses
IndexedDB, named like https_www.example.com_0.indexeddb.leveldb,
chrome-extension_app-id-xxx_0.indexeddb.leveldb, or
https_www.example.com_0.indexeddb.blob. Inside each of the *.leveldb
directories are the files the comprise a LevelDB database, which in turn
holds IndexedDB data for that origin. There may be an accompanying .blob
directory, which contains a nested folder structure of blobs.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\IndexedDB\**5'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\IndexedDB\**5'
- '%%users.localappdata%%\Google\Chrome\User Data\*\IndexedDB\**5'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/IndexedDB/**5'
- '%%users.homedir%%/.config/chromium/*/IndexedDB/**5'
- '%%users.homedir%%/.config/google-chrome-beta/*/IndexedDB/**5'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/IndexedDB/**5'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/IndexedDB/**5'
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/IndexedDB/**5'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/IndexedDB/**5'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/IndexedDB/**5'
supported_os: [Darwin]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls:
- 'https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API'
---
name: ChromeLocalStorage
doc: |
Google Chrome, Canary and Chromium Local Storage files.
* Chrome v60 and below used individual .sqlite files per origin for Local Storage,
stored in the Local Storage directory root.
* In Chrome v61, a leveldb directory was added inside the root Local Storage directory,
and new origins saved Local Storage data in a single LevelDB there.
* Existing .sqlite files are kept (not moved to leveldb), so it is possible for a
single Chrome profile to use both SQLite and LevelDB for Local Storage.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\Local Storage\**'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Local Storage\**'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Local Storage\**'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Local Storage/**'
- '%%users.homedir%%/.config/chromium/*/Local Storage/**'
- '%%users.homedir%%/.config/google-chrome-beta/*/Local Storage/**'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Local Storage/**'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Local Storage/**'
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/Local Storage/**'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Local Storage/**'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Local Storage/**'
supported_os: [Darwin]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
---
name: ChromePreferences
doc: Chrome Preferences file.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Google\Chrome\User Data\*\Preferences'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Preferences'
- '%%users.localappdata%%\Chromium\User Data\*\Preferences'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Preferences'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Preferences'
- '%%users.homedir%%/Library/Application Support/Chromium/*/Preferences'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Preferences'
- '%%users.homedir%%/.config/chromium/*/Preferences'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Preferences'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Preferences'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Google_Chrome#Configuration']
---
name: ChromeSessionStorage
doc: |
Google Chrome, Canary and Chromium Session Storage files.
The Session Storage directory contains the files that comprise a LevelDB
database, which in turn holds the Session Storage data.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Chromium\User Data\*\Session Storage\*'
- '%%users.localappdata%%\Google\Chrome SxS\User Data\*\Session Storage\*'
- '%%users.localappdata%%\Google\Chrome\User Data\*\Session Storage\*'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.config/google-chrome/*/Session Storage/*'
- '%%users.homedir%%/.config/chromium/*/Session Storage/*'
- '%%users.homedir%%/.config/google-chrome-beta/*/Session Storage/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-profile/*/Session Storage/*'
- '%%users.homedir%%/.config/chrome-remote-desktop/chrome-config/google-chrome/*/Session Storage/*'
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Chromium/*/Session Storage/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome Canary/*/Session Storage/*'
- '%%users.homedir%%/Library/Application Support/Google/Chrome/*/Session Storage/*'
supported_os: [Darwin]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
---
name: FirefoxCache
doc: Mozilla Firefox browser caches.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*.default\Cache\*'
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*.default\cache2\*'
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*.default\cache2\doomed\*'
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*.default\cache2\entries\*'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Caches/Firefox/Profiles/*.default/Cache/*'
- '%%users.homedir%%/Library/Caches/Firefox/Profiles/*.default/cache2/*'
- '%%users.homedir%%/Library/Caches/Firefox/Profiles/*.default/cache2/doomed/*'
- '%%users.homedir%%/Library/Caches/Firefox/Profiles/*.default/cache2/entries/*'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.mozilla/firefox/*.default/Cache/*'
- '%%users.homedir%%/.cache/mozilla/firefox/*.default/Cache/*'
- '%%users.homedir%%/.cache/mozilla/firefox/*.default/cache2/*'
- '%%users.homedir%%/.cache/mozilla/firefox/*.default/cache2/doomed/*'
- '%%users.homedir%%/.cache/mozilla/firefox/*.default/cache2/entries/*'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://github.com/ForensicArtifacts/artifacts-kb/blob/master/webbrowser/FirefoxCache.md']
---
name: FirefoxHistory
doc: Firefox browser history (places.sqlite).
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*\places.sqlite'
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*\places.sqlite-wal'
- '%%users.appdata%%\Mozilla\Firefox\Profiles\*\places.sqlite'
- '%%users.localappdata%%\Mozilla\Firefox\Profiles\*\places.sqlite-wal'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Application Support/Firefox/Profiles/*/places.sqlite'
- '%%users.homedir%%/Library/Application Support/Firefox/Profiles/*/places.sqlite-wal'
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/.mozilla/firefox/*/places.sqlite'
- '%%users.homedir%%/.mozilla/firefox/*/places.sqlite-wal'
supported_os: [Linux]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Mozilla_Firefox']
---
name: InternetExplorerBrowserHelperObjects
doc: Loaded on Internet Explorer startup
sources:
- type: REGISTRY_KEY
attributes:
keys:
- 'HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\*'
- 'HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\*'
supported_os: [Windows]
urls:
- 'http://gladiator-antivirus.com/forum/index.php?showtopic=24610'
- 'http://regenerus.com/malware-common-loadpoints/'
- 'https://code.google.com/p/regripper/wiki/ASEPs'
---
name: InternetExplorerCache
doc: |
Microsoft Internet Explorer (MSIE) browser cache.
* MSIE 4 - 9 Temporary Internet files.
* MSIE 10 INetCache files.
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Microsoft\Windows\Temporary Internet Files\Content.IE5\*\*'
- '%%users.localappdata%%\Microsoft\Windows\Temporary Internet Files\Low\Content.IE5\*\*'
- '%%users.localappdata%%\Microsoft\Windows\INetCache\IE\*\*'
- '%%users.localappdata%%\Microsoft\Windows\INetCache\Low\*\*'
separator: '\'
labels: [Browser]
supported_os: [Windows]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Internet_Explorer']
---
name: InternetExplorerCookies
doc: |
Microsoft Internet Explorer (MSIE) browser cookies.
* MSIE 4 - 9 Cache files (index.dat)
sources:
- type: FILE
attributes:
paths:
- '%%users.appdata%%\Microsoft\Windows\Cookies\index.dat'
- '%%users.appdata%%\Microsoft\Windows\Cookies\Low\index.dat'
separator: '\'
labels: [Browser]
supported_os: [Windows]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Internet_Explorer']
---
name: InternetExplorerHistory
doc: |
Microsoft Internet Explorer (MSIE) browser history.
* MSIE 4 - 9 Cache files (index.dat);
* MSIE 10 WebCacheV*.dat files.
sources:
- type: FILE
attributes:
paths:
- '%%users.appdata%%\Microsoft\Windows\IEDownloadHistory\index.dat'
- '%%users.localappdata%%\Microsoft\Feeds Cache\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\History\History.IE5\*\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\History\History.IE5\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\History\Low\History.IE5\*\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\History\Low\History.IE5\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\Temporary Internet Files\Content.IE5\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\Temporary Internet Files\Low\Content.IE5\index.dat'
- '%%users.localappdata%%\Microsoft\Windows\WebCache\WebCacheV*.dat'
- '%%users.userprofile%%\Local Settings\History\History.IE5\index.dat'
separator: '\'
labels: [Browser]
supported_os: [Windows]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Internet_Explorer']
---
name: InternetExplorerProtectedModeElevationPolicies
doc: |
Trust levels of apps launched from low rights IE sessions.
The ElevationPolicy dictates how IE handles applications that want to execute
in other applications that reside outside of the Low Rights IE session.
* AppName is the executable
* AppPath is the directory
* CLSID is used if it launches a COM server through CoCreateInstance
* Policy (DWORD) is the trust level, of 0 through 3.
* 3 Protected Mode silently launches the broker as a medium integrity process.
* 2 Protected Mode prompts the user for permission to launch the process. If
permission is granted, the process is launched as a medium integrity process.
* 1 Protected Mode silently launches the broker as a low integrity process.
* 0 Protected Mode prevents the process from launching.
sources:
- type: REGISTRY_VALUE
attributes:
key_value_pairs:
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'Policy'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'AppName'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'AppPath'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'CLSID'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'Policy'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'AppName'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'AppPath'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\*', value: 'CLSID'}
labels: [Browser]
supported_os: [Windows]
urls:
- 'http://blogs.technet.com/b/juanand/archive/2010/10/29/internet-explorer-protected-mode-elevation-policy-and-administrative-templates.aspx'
- 'https://msdn.microsoft.com/en-us/library/bb250462(VS.85).aspx'
---
name: InternetExplorerProtectedModeDisable
doc: |
Microsoft Internet Explorer (MSIE) Protected Mode Banner can be suppressed
by setting NoProtectedModeBanner.
* Applies to versions 7-11
sources:
- type: REGISTRY_KEY
attributes: {keys: ['HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main\NoProtectedModeBanner']}
labels: [Browser]
supported_os: [Windows]
urls: ['http://www.blackforce.co.uk/2014/01/07/disable-protected-mode-is-turned-off-for-the-internet-zone-group-policy']
---
name: InternetExplorer6Settings
doc: Registry keys affecting default behavior for Microsoft Internet Explorer 6.
sources:
- type: REGISTRY_VALUE
attributes:
key_value_pairs:
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'AboutURLs'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'UrlSearchHooks'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'Extensions'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'ExplorerBars'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'Toolbar'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer', value: 'SearchURL'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main', value: 'Default_Page_URL'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main', value: 'Default_Search_URL'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main', value: 'Search Page'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main', value: 'Start Page'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main', value: 'Search Bar'}
- {key: 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Search', value: 'CustomizeSearch'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer', value: 'UrlSearchHooks'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer', value: 'Extensions'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer', value: 'ExplorerBars'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer', value: 'Toolbar'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer', value: 'SearchURL'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main', value: 'Default_Page_URL'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main', value: 'Default_Search_URL'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main', value: 'Search Page'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main', value: 'Start Page'}
- {key: 'HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\Main', value: 'Search Bar'}
labels: [Browser]
supported_os: [Windows]
urls:
- 'https://support.microsoft.com/en-us/kb/895339'
- 'http://gladiator-antivirus.com/forum/index.php?showtopic=24610'
---
name: InternetExplorerTypedURLsKeys
doc: Microsoft Internet Explorer TypedUrls keys.
sources:
- type: REGISTRY_KEY
attributes: {keys: ['HKEY_USERS\%%users.sid%%\Software\Microsoft\Internet Explorer\TypedURLs\*']}
labels: [Browser]
supported_os: [Windows]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Internet_Explorer#Typed_URLs']
---
name: OperaHistory
doc: Opera browser history (global_history.dat).
sources:
- type: FILE
attributes: {paths: ['%%users.homedir%%/Library/Opera/global_history.dat']}
supported_os: [Darwin]
- type: FILE
attributes: {paths: ['%%users.homedir%%/.opera/global_history.dat']}
supported_os: [Linux]
- type: FILE
attributes:
paths:
- '%%users.appdata%%\Opera\Opera\global_history.dat'
- '%%users.appdata%%\Opera Software\Opera Stable\History'
separator: '\'
supported_os: [Windows]
supported_os: [Windows,Darwin,Linux]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Opera']
---
name: SafariCache
doc: Safari browser cache (cache.db).
sources:
- type: FILE
attributes:
paths: ['%%users.localappdata%%\Apple Computer\Safari\cache.db']
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Caches/com.apple.Safari/Cache.db'
- '%%users.homedir%%/Library/Caches/com.apple.Safari/Cache.db-wal'
supported_os: [Darwin]
supported_os: [Windows, Darwin]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Apple_Safari']
---
name: SafariDownloads
doc: Safari downloads history (Downloads.plist).
sources:
- type: FILE
attributes: {paths: ['%%users.homedir%%/Library/Safari/Downloads.plist']}
supported_os: [Darwin]
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Apple Computer\Safari\Downloads.plist'
- '%%users.appdata%%\Apple Computer\Safari\Downloads.plist'
separator: '\'
supported_os: [Windows]
labels: [Users, Browser]
supported_os: [Darwin, Windows]
urls:
- 'https://forensicswiki.xyz/wiki/index.php?title=Mac_OS_X'
- 'https://forensicswiki.xyz/wiki/index.php?title=Mac_OS_X_10.9_-_Artifacts_Location#Safari'
- 'https://www.forensicswiki.org/wiki/Apple_Safari'
---
name: SafariHistory
doc: Safari browser history (History.plist).
sources:
- type: FILE
attributes:
paths:
- '%%users.localappdata%%\Apple Computer\Safari\History.plist'
- '%%users.appdata%%\Apple Computer\Safari\History.plist'
separator: '\'
supported_os: [Windows]
- type: FILE
attributes:
paths:
- '%%users.homedir%%/Library/Safari/History.plist'
- '%%users.homedir%%/Library/Safari/History.db'
- '%%users.homedir%%/Library/Safari/History.db-wal'
supported_os: [Darwin]
supported_os: [Windows, Darwin]
labels: [Browser]
urls: ['https://forensicswiki.xyz/wiki/index.php?title=Apple_Safari']
---
name: SafariExtensions
doc: Safari browser Extensions.
sources:
- type: FILE
attributes: {paths: ['%%users.homedir%%/Library/Safari/Extensions/**']}
supported_os: [Darwin]
supported_os: [Darwin]
labels: [Browser]
urls: ['http://www.forensicswiki.org/wiki/Apple_Safari']
|