├── LICENSE ├── README.md ├── Tatsuya_Hasegawa_msticpy_SANS_APAC_DFIR_SUMMIT_2023.pdf ├── analysis_outliers ├── README.md └── outliers_multi_dimension_PR.ipynb ├── analysis_rrcf_outliers ├── msticpy-if_outliers.ipynb └── msticpy-rrcf_outliers.ipynb ├── data └── buttercupgame_iplocation.csv ├── msticpy_light_tutorial.ipynb ├── qp_splunk_poc_bugfix ├── msticpy_qp_splunk.ipynb ├── msticpy_splunk_9_0_4_reader_bug.ipynb ├── msticpy_splunk_9_0_4_reader_merged.ipynb ├── msticpy_splunk_reader_bug.ipynb └── msticpy_splunk_reader_paging-test.csv ├── splunk_dsdl ├── README.md └── msticpy_powershell_ioc.ipynb └── timeseries_anomalies_stl └── msticpy_timeseries_anomalies_stl.ipynb /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 hackeT 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MSTICPy_utils 2 | 3 | - Mainly my MSTICpy practice repository. 4 | - Jupyter notebook files with useful msticpy execution's how-to history. 5 | 6 | | File or Directory | Short Desc | 7 | | ------------- | ------------- | 8 | | [msticpy_light_tutorial.ipynb](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/msticpy_light_tutorial.ipynb) | Tutorial to use msticpy along 'Quick Start Overview' | 9 | | [timeseries_anomalies_stl](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/timeseries_anomalies_stl) | Practice of timeseries_anomalies_stl function | 10 | | [splunk_dsdl](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/splunk_dsdl) | msticpy joint to Splunk DSDL example for powershell base64 hunting refered by my DFIR Summit PDF | 11 | | [qp_splunk_poc_bugfix](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/qp_splunk_poc_bugfix) | PoC notebooks and test csv of my [PR#657](https://github.com/microsoft/msticpy/pull/657) to msticpy | 12 | | [analysis_outliers](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/analysis_outliers) | PoC notebooks of my [PR#805](https://github.com/microsoft/msticpy/pull/805) to msticpy | 13 | | [analysis_rrcf_outliers](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/analysis_rrcf_outliers) | PoC notebooks of my [PR#846](https://github.com/microsoft/msticpy/pull/846) to msticpy, comparing IsolationForest and RobustRandomCutForest with same dataset | 14 | | [data](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/main/data) | sample data directory to be utilized by this repository's some notebook files | 15 | 16 | ### Presentation on SANS APAC DFIR Summit 2023 17 | 18 | [Practical msticpy use ~ rainbow bridge to SIEM for advanced threat hunting ~](https://github.com/Tatsuya-hasegawa/MSTICPy_utils/blob/d3b5e589ab4de714b430a5274a3378bde21a3aaf/Tatsuya_Hasegawa_msticpy_SANS_APAC_DFIR_SUMMIT_2023.pdf) 19 | 20 | 21 | -------------------------------------------------------------------------------- /Tatsuya_Hasegawa_msticpy_SANS_APAC_DFIR_SUMMIT_2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsuya-hasegawa/MSTICPy_utils/c37a4fa3aeb1361f2ae07fb348139ae92b5de0b6/Tatsuya_Hasegawa_msticpy_SANS_APAC_DFIR_SUMMIT_2023.pdf -------------------------------------------------------------------------------- /analysis_outliers/README.md: -------------------------------------------------------------------------------- 1 | TBD 2 | -------------------------------------------------------------------------------- /qp_splunk_poc_bugfix/msticpy_qp_splunk.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "attachments": {}, 5 | "cell_type": "markdown", 6 | "metadata": {}, 7 | "source": [ 8 | "# PoC: SplunkGeneral.get_events_parameterized function will fetch all the Splunk records\n", 9 | "\n", 10 | "with my PR code https://github.com/microsoft/msticpy/pull/657\n", 11 | "\n", 12 | "\n", 13 | "Reference Splunk SDK python:\n", 14 | "- https://dev.splunk.com/enterprise/docs/devtools/python/sdk-python/howtousesplunkpython/howtodisplaysearchpython/#To-paginate-through-a-large-set-of-results\n", 15 | "- https://dev.splunk.com/enterprise/docs/devtools/python/sdk-python/howtousesplunkpython/howtorunsearchespython/\n", 16 | "\n", 17 | "- https://docs.splunk.com/DocumentationStatic/PythonSDK/1.7.2/client.html\n", 18 | "- https://docs.splunk.com/DocumentationStatic/PythonSDK/1.7.2/results.html\n", 19 | "\n" 20 | ] 21 | }, 22 | { 23 | "cell_type": "code", 24 | "execution_count": 1, 25 | "metadata": {}, 26 | "outputs": [ 27 | { 28 | "name": "stderr", 29 | "output_type": "stream", 30 | "text": [ 31 | "2023-04-18 13:40:04,642: WARNING - config validation error Missing or empty 'AzureSentinel' section (nbinit#697)\n", 32 | "2023-04-18 13:40:04,643: WARNING - Could not find msticpyconfig.yaml in standard search. (nbinit#710)\n" 33 | ] 34 | }, 35 | { 36 | "data": { 37 | "text/html": [ 38 | "
Notebook setup completed with some warnings.
One or more configuration items were missing or set incorrectly.
" 51 | ], 52 | "text/plain": [ 53 | "Please run the Getting Started Guide for Azure Sentinel ML Notebooks notebook. and the msticpy configuration guide.
" 63 | ], 64 | "text/plain": [ 65 | "This notebook may still run but with reduced functionality.
" 75 | ], 76 | "text/plain": [ 77 | "\n", 521 | " | timestamp | \n", 522 | "rownum | \n", 523 | "desc | \n", 524 | "uuid4 | \n", 525 | "host | \n", 526 | "
---|---|---|---|---|---|
91428 | \n", 531 | "1.681780e+09 | \n", 532 | "1 | \n", 533 | "testing_rownum1 | \n", 534 | "7230ab65-7622-4aea-8f89-e0cf94028e80 | \n", 535 | "hackeTlab.local | \n", 536 | "
91427 | \n", 539 | "1.681780e+09 | \n", 540 | "2 | \n", 541 | "testing_rownum2 | \n", 542 | "0673a921-400f-4f74-9955-2ebe3aa6b568 | \n", 543 | "hackeTlab.local | \n", 544 | "
91426 | \n", 547 | "1.681780e+09 | \n", 548 | "3 | \n", 549 | "testing_rownum3 | \n", 550 | "1b7d33b8-797f-4b19-978e-89d126d1736d | \n", 551 | "hackeTlab.local | \n", 552 | "
91425 | \n", 555 | "1.681780e+09 | \n", 556 | "4 | \n", 557 | "testing_rownum4 | \n", 558 | "9b513862-7cb3-436b-b9b0-cee880d4c19b | \n", 559 | "hackeTlab.local | \n", 560 | "
91424 | \n", 563 | "1.681780e+09 | \n", 564 | "5 | \n", 565 | "testing_rownum5 | \n", 566 | "96feff47-29db-4d78-a221-f96df595200f | \n", 567 | "hackeTlab.local | \n", 568 | "
... | \n", 571 | "... | \n", 572 | "... | \n", 573 | "... | \n", 574 | "... | \n", 575 | "... | \n", 576 | "
9912 | \n", 579 | "1.681780e+09 | \n", 580 | "99996 | \n", 581 | "testing_rownum99996 | \n", 582 | "b051d150-b26d-4149-bd28-70f800229ede | \n", 583 | "hackeTlab.local | \n", 584 | "
9911 | \n", 587 | "1.681780e+09 | \n", 588 | "99997 | \n", 589 | "testing_rownum99997 | \n", 590 | "a2192da0-8262-43fb-9301-bd4780a9b499 | \n", 591 | "hackeTlab.local | \n", 592 | "
9910 | \n", 595 | "1.681780e+09 | \n", 596 | "99998 | \n", 597 | "testing_rownum99998 | \n", 598 | "57cd4cf6-b5e8-41dc-815e-870092c54caa | \n", 599 | "hackeTlab.local | \n", 600 | "
9909 | \n", 603 | "1.681780e+09 | \n", 604 | "99999 | \n", 605 | "testing_rownum99999 | \n", 606 | "a3a13916-89b8-4922-967e-ab680131ff39 | \n", 607 | "hackeTlab.local | \n", 608 | "
12499 | \n", 611 | "1.681780e+09 | \n", 612 | "100000 | \n", 613 | "testing_rownum100000 | \n", 614 | "9ac20835-91d1-42f5-8e43-6289ea79fc17 | \n", 615 | "hackeTlab.local | \n", 616 | "
100000 rows × 5 columns
\n", 620 | "Notebook setup completed with some warnings.
One or more configuration items were missing or set incorrectly.
" 111 | ], 112 | "text/plain": [ 113 | "Please run the Getting Started Guide for Azure Sentinel ML Notebooks notebook. and the msticpy configuration guide.
" 123 | ], 124 | "text/plain": [ 125 | "This notebook may still run but with reduced functionality.
" 135 | ], 136 | "text/plain": [ 137 | "\n", 303 | " | timestamp | \n", 304 | "rownum | \n", 305 | "desc | \n", 306 | "uuid4 | \n", 307 | "host | \n", 308 | "
---|---|---|---|---|---|
0 | \n", 313 | "1681779752.406508 | \n", 314 | "91020 | \n", 315 | "testing_rownum91020 | \n", 316 | "e6b1e205-ad10-40a9-81da-6de2a48310bf | \n", 317 | "b7ea75f8df3c | \n", 318 | "
1 | \n", 321 | "1681779752.405167 | \n", 322 | "91019 | \n", 323 | "testing_rownum91019 | \n", 324 | "1fdf3802-c17e-4dbd-af9a-5a74beb6dac2 | \n", 325 | "b7ea75f8df3c | \n", 326 | "
2 | \n", 329 | "1681779752.403983 | \n", 330 | "91018 | \n", 331 | "testing_rownum91018 | \n", 332 | "63853418-0e82-453d-a816-d759fdb06f66 | \n", 333 | "b7ea75f8df3c | \n", 334 | "
3 | \n", 337 | "1681779752.402606 | \n", 338 | "91017 | \n", 339 | "testing_rownum91017 | \n", 340 | "f9410562-ef8a-48ce-8a20-0d700c57cead | \n", 341 | "b7ea75f8df3c | \n", 342 | "
4 | \n", 345 | "1681779752.401176 | \n", 346 | "91016 | \n", 347 | "testing_rownum91016 | \n", 348 | "a83544f4-3640-48ac-82fa-a69ef43c83f8 | \n", 349 | "b7ea75f8df3c | \n", 350 | "
5 | \n", 353 | "1681779752.399793 | \n", 354 | "91015 | \n", 355 | "testing_rownum91015 | \n", 356 | "abc1f653-9197-48af-9c51-de3ec4cbdf60 | \n", 357 | "b7ea75f8df3c | \n", 358 | "
6 | \n", 361 | "1681779752.398403 | \n", 362 | "91014 | \n", 363 | "testing_rownum91014 | \n", 364 | "73db45e8-498b-423a-99d4-93a8987f4383 | \n", 365 | "b7ea75f8df3c | \n", 366 | "
7 | \n", 369 | "1681779752.397149 | \n", 370 | "91013 | \n", 371 | "testing_rownum91013 | \n", 372 | "dcda1ec7-2aee-47e1-83f6-380f757ac274 | \n", 373 | "b7ea75f8df3c | \n", 374 | "
8 | \n", 377 | "1681779752.39573 | \n", 378 | "91012 | \n", 379 | "testing_rownum91012 | \n", 380 | "5c78d913-36b7-4ea2-a8e1-d2f365c034bb | \n", 381 | "b7ea75f8df3c | \n", 382 | "
9 | \n", 385 | "1681779752.394345 | \n", 386 | "91011 | \n", 387 | "testing_rownum91011 | \n", 388 | "a6089f12-9447-4098-8feb-2d1c90130ffd | \n", 389 | "b7ea75f8df3c | \n", 390 | "
10 | \n", 393 | "1681779752.392953 | \n", 394 | "91010 | \n", 395 | "testing_rownum91010 | \n", 396 | "9285c292-a454-41e8-a4e9-87b1ba27812e | \n", 397 | "b7ea75f8df3c | \n", 398 | "
11 | \n", 401 | "1681779752.391523 | \n", 402 | "91009 | \n", 403 | "testing_rownum91009 | \n", 404 | "78d3b3cf-494e-450e-ae3b-5270e8c29a09 | \n", 405 | "b7ea75f8df3c | \n", 406 | "
12 | \n", 409 | "1681779752.390141 | \n", 410 | "91008 | \n", 411 | "testing_rownum91008 | \n", 412 | "ea055d48-7fa1-4233-b20b-d59dfdb6608e | \n", 413 | "b7ea75f8df3c | \n", 414 | "
13 | \n", 417 | "1681779752.388756 | \n", 418 | "91007 | \n", 419 | "testing_rownum91007 | \n", 420 | "5dd307fe-590e-4e34-b9c7-14fe264621b6 | \n", 421 | "b7ea75f8df3c | \n", 422 | "
14 | \n", 425 | "1681779752.387368 | \n", 426 | "91006 | \n", 427 | "testing_rownum91006 | \n", 428 | "0bbc9c1d-e960-4669-9533-2eeb9f44368d | \n", 429 | "b7ea75f8df3c | \n", 430 | "
15 | \n", 433 | "1681779752.385981 | \n", 434 | "91005 | \n", 435 | "testing_rownum91005 | \n", 436 | "ea630193-d9e9-4b6f-ab53-2176ddcc58f6 | \n", 437 | "b7ea75f8df3c | \n", 438 | "
16 | \n", 441 | "1681779752.384581 | \n", 442 | "91004 | \n", 443 | "testing_rownum91004 | \n", 444 | "1461a016-4a56-4888-9a3e-e78d49856c4a | \n", 445 | "b7ea75f8df3c | \n", 446 | "
17 | \n", 449 | "1681779752.383178 | \n", 450 | "91003 | \n", 451 | "testing_rownum91003 | \n", 452 | "52317b49-f8cc-4218-aa35-a47ecd62e568 | \n", 453 | "b7ea75f8df3c | \n", 454 | "
18 | \n", 457 | "1681779752.381794 | \n", 458 | "91002 | \n", 459 | "testing_rownum91002 | \n", 460 | "6799ef50-122c-4c73-bb70-bb55ac67de66 | \n", 461 | "b7ea75f8df3c | \n", 462 | "
19 | \n", 465 | "1681779752.380393 | \n", 466 | "91001 | \n", 467 | "testing_rownum91001 | \n", 468 | "8c71a674-ca0c-4de9-bb39-2b246dac630f | \n", 469 | "b7ea75f8df3c | \n", 470 | "
20 | \n", 473 | "1681779752.378992 | \n", 474 | "91000 | \n", 475 | "testing_rownum91000 | \n", 476 | "33c9cfb0-d264-44e9-b173-5020beb7b3fe | \n", 477 | "b7ea75f8df3c | \n", 478 | "
21 | \n", 481 | "1681779752.377607 | \n", 482 | "90999 | \n", 483 | "testing_rownum90999 | \n", 484 | "a535250e-3c1d-46c7-a1c3-cdebdfee7b24 | \n", 485 | "b7ea75f8df3c | \n", 486 | "
22 | \n", 489 | "1681779752.376221 | \n", 490 | "90998 | \n", 491 | "testing_rownum90998 | \n", 492 | "38b94fef-71b5-4172-99a8-2706ee362330 | \n", 493 | "b7ea75f8df3c | \n", 494 | "
23 | \n", 497 | "1681779752.374777 | \n", 498 | "90997 | \n", 499 | "testing_rownum90997 | \n", 500 | "11003d0b-e3a0-416c-af9a-eb8e1235f73e | \n", 501 | "b7ea75f8df3c | \n", 502 | "
24 | \n", 505 | "1681779752.373472 | \n", 506 | "90996 | \n", 507 | "testing_rownum90996 | \n", 508 | "33860324-3eea-4839-9c5a-7cf166de2110 | \n", 509 | "b7ea75f8df3c | \n", 510 | "
25 | \n", 513 | "1681779752.372097 | \n", 514 | "90995 | \n", 515 | "testing_rownum90995 | \n", 516 | "ba436b9d-9082-4411-b603-658f810677ae | \n", 517 | "b7ea75f8df3c | \n", 518 | "
26 | \n", 521 | "1681779752.370822 | \n", 522 | "90994 | \n", 523 | "testing_rownum90994 | \n", 524 | "4a4dac63-c6bc-46a1-8ad8-43c0b68e9a74 | \n", 525 | "b7ea75f8df3c | \n", 526 | "
27 | \n", 529 | "1681779752.369402 | \n", 530 | "90993 | \n", 531 | "testing_rownum90993 | \n", 532 | "8cec26a2-404e-43b7-8e1e-c672adb41cab | \n", 533 | "b7ea75f8df3c | \n", 534 | "
28 | \n", 537 | "1681779752.368045 | \n", 538 | "90992 | \n", 539 | "testing_rownum90992 | \n", 540 | "4e48d246-2a97-4892-bf7a-f9b6b0230ee7 | \n", 541 | "b7ea75f8df3c | \n", 542 | "
29 | \n", 545 | "1681779752.366817 | \n", 546 | "90991 | \n", 547 | "testing_rownum90991 | \n", 548 | "6cc13611-669a-4ac6-a1a7-0f1ec2559d0e | \n", 549 | "b7ea75f8df3c | \n", 550 | "
30 | \n", 553 | "1681779752.365429 | \n", 554 | "90990 | \n", 555 | "testing_rownum90990 | \n", 556 | "6bbbafda-4bbe-40f0-b46a-11186cf12e7e | \n", 557 | "b7ea75f8df3c | \n", 558 | "
31 | \n", 561 | "1681779752.363988 | \n", 562 | "90989 | \n", 563 | "testing_rownum90989 | \n", 564 | "d3aed9f7-bc7f-4d41-b4d2-0598a0af2dee | \n", 565 | "b7ea75f8df3c | \n", 566 | "
32 | \n", 569 | "1681779752.362554 | \n", 570 | "90988 | \n", 571 | "testing_rownum90988 | \n", 572 | "7068ee2c-25c2-44a1-bff3-f62c3edb2cd2 | \n", 573 | "b7ea75f8df3c | \n", 574 | "
33 | \n", 577 | "1681779752.361126 | \n", 578 | "90987 | \n", 579 | "testing_rownum90987 | \n", 580 | "ec051770-480e-4547-97c8-499cd48bafe6 | \n", 581 | "b7ea75f8df3c | \n", 582 | "
34 | \n", 585 | "1681779752.359682 | \n", 586 | "90986 | \n", 587 | "testing_rownum90986 | \n", 588 | "26c41209-b5a0-475c-8cc9-33e3ca0e9da9 | \n", 589 | "b7ea75f8df3c | \n", 590 | "
35 | \n", 593 | "1681779752.358297 | \n", 594 | "90985 | \n", 595 | "testing_rownum90985 | \n", 596 | "9acc54f9-bec8-4569-b553-d0d428fb9d58 | \n", 597 | "b7ea75f8df3c | \n", 598 | "
36 | \n", 601 | "1681779752.35692 | \n", 602 | "90984 | \n", 603 | "testing_rownum90984 | \n", 604 | "958216ac-9583-4428-b1d8-f565596a833f | \n", 605 | "b7ea75f8df3c | \n", 606 | "
37 | \n", 609 | "1681779752.355614 | \n", 610 | "90983 | \n", 611 | "testing_rownum90983 | \n", 612 | "f9128fe4-cd8c-4556-b660-a0ae9c542262 | \n", 613 | "b7ea75f8df3c | \n", 614 | "
38 | \n", 617 | "1681779752.354208 | \n", 618 | "90982 | \n", 619 | "testing_rownum90982 | \n", 620 | "460c77e6-dd96-4b42-be80-60a1e86427d5 | \n", 621 | "b7ea75f8df3c | \n", 622 | "
39 | \n", 625 | "1681779752.352808 | \n", 626 | "90981 | \n", 627 | "testing_rownum90981 | \n", 628 | "0f240d33-23d5-4320-b7a4-073dc2b8f361 | \n", 629 | "b7ea75f8df3c | \n", 630 | "
40 | \n", 633 | "1681779752.351424 | \n", 634 | "90980 | \n", 635 | "testing_rownum90980 | \n", 636 | "687b894e-0961-4a9d-bfaf-ad7bac60468a | \n", 637 | "b7ea75f8df3c | \n", 638 | "
41 | \n", 641 | "1681779752.350038 | \n", 642 | "90979 | \n", 643 | "testing_rownum90979 | \n", 644 | "970bf2e6-e344-4e1a-a8de-d289ecb85a36 | \n", 645 | "b7ea75f8df3c | \n", 646 | "
42 | \n", 649 | "1681779752.348623 | \n", 650 | "90978 | \n", 651 | "testing_rownum90978 | \n", 652 | "2b9cf05a-f8c1-4da1-80f6-93204be6c2d8 | \n", 653 | "b7ea75f8df3c | \n", 654 | "
43 | \n", 657 | "1681779752.347205 | \n", 658 | "90977 | \n", 659 | "testing_rownum90977 | \n", 660 | "c9d59855-0363-45d4-8cff-c72d631e4b99 | \n", 661 | "b7ea75f8df3c | \n", 662 | "
44 | \n", 665 | "1681779752.345805 | \n", 666 | "90976 | \n", 667 | "testing_rownum90976 | \n", 668 | "4c39cb21-a981-4802-bee3-04a44a0d48e3 | \n", 669 | "b7ea75f8df3c | \n", 670 | "
45 | \n", 673 | "1681779752.344417 | \n", 674 | "90975 | \n", 675 | "testing_rownum90975 | \n", 676 | "85214d7e-b933-4081-af84-10c0c5b8e37d | \n", 677 | "b7ea75f8df3c | \n", 678 | "
46 | \n", 681 | "1681779752.343033 | \n", 682 | "90974 | \n", 683 | "testing_rownum90974 | \n", 684 | "ec60e11b-8e08-437c-8c73-cb0e8bd4dc41 | \n", 685 | "b7ea75f8df3c | \n", 686 | "
47 | \n", 689 | "1681779752.341633 | \n", 690 | "90973 | \n", 691 | "testing_rownum90973 | \n", 692 | "e1224ee0-a8cb-46d4-ae9b-b9daab5e394f | \n", 693 | "b7ea75f8df3c | \n", 694 | "
48 | \n", 697 | "1681779752.340229 | \n", 698 | "90972 | \n", 699 | "testing_rownum90972 | \n", 700 | "8f7d1802-743d-4d4a-8a23-860e2613055f | \n", 701 | "b7ea75f8df3c | \n", 702 | "
49 | \n", 705 | "1681779752.338835 | \n", 706 | "90971 | \n", 707 | "testing_rownum90971 | \n", 708 | "3e96d2fb-e771-4b47-8e81-1cab2e9b6271 | \n", 709 | "b7ea75f8df3c | \n", 710 | "
50 | \n", 713 | "1681779752.337448 | \n", 714 | "90970 | \n", 715 | "testing_rownum90970 | \n", 716 | "77b6440d-c899-4ff1-9a7f-a8d77f485ed2 | \n", 717 | "b7ea75f8df3c | \n", 718 | "
51 | \n", 721 | "1681779752.336065 | \n", 722 | "90969 | \n", 723 | "testing_rownum90969 | \n", 724 | "a7d68e3d-a78f-407c-827d-362b789257b5 | \n", 725 | "b7ea75f8df3c | \n", 726 | "
52 | \n", 729 | "1681779752.334683 | \n", 730 | "90968 | \n", 731 | "testing_rownum90968 | \n", 732 | "78a0421c-99f6-40cd-a903-1ea72464b0ce | \n", 733 | "b7ea75f8df3c | \n", 734 | "
53 | \n", 737 | "1681779752.333446 | \n", 738 | "90967 | \n", 739 | "testing_rownum90967 | \n", 740 | "505b326f-997d-446d-ad04-ceb0d98a8708 | \n", 741 | "b7ea75f8df3c | \n", 742 | "
54 | \n", 745 | "1681779752.332216 | \n", 746 | "90966 | \n", 747 | "testing_rownum90966 | \n", 748 | "adbfbba2-9415-4381-8c05-4d34bdcc914a | \n", 749 | "b7ea75f8df3c | \n", 750 | "
55 | \n", 753 | "1681779752.330789 | \n", 754 | "90965 | \n", 755 | "testing_rownum90965 | \n", 756 | "3517ba74-2e00-4bf2-a42b-20e0d764b811 | \n", 757 | "b7ea75f8df3c | \n", 758 | "
56 | \n", 761 | "1681779752.329405 | \n", 762 | "90964 | \n", 763 | "testing_rownum90964 | \n", 764 | "95f3c4a0-f0c6-44be-88ec-8cad8cc1fbf2 | \n", 765 | "b7ea75f8df3c | \n", 766 | "
57 | \n", 769 | "1681779752.328077 | \n", 770 | "90963 | \n", 771 | "testing_rownum90963 | \n", 772 | "ad693222-f6ee-4f45-8b37-6a78bc72a7d6 | \n", 773 | "b7ea75f8df3c | \n", 774 | "
58 | \n", 777 | "1681779752.326748 | \n", 778 | "90962 | \n", 779 | "testing_rownum90962 | \n", 780 | "01b6f4f2-db3f-48a9-b0ea-ded53ecc9bb0 | \n", 781 | "b7ea75f8df3c | \n", 782 | "
59 | \n", 785 | "1681779752.325389 | \n", 786 | "90961 | \n", 787 | "testing_rownum90961 | \n", 788 | "2218a2ee-3838-4fed-83f3-f571d7330c1f | \n", 789 | "b7ea75f8df3c | \n", 790 | "
60 | \n", 793 | "1681779752.32401 | \n", 794 | "90960 | \n", 795 | "testing_rownum90960 | \n", 796 | "1fdeb5de-8c16-4e31-a19c-0ece227f75a0 | \n", 797 | "b7ea75f8df3c | \n", 798 | "
61 | \n", 801 | "1681779752.322841 | \n", 802 | "90959 | \n", 803 | "testing_rownum90959 | \n", 804 | "3d4a5628-f467-4a54-8966-f30d057d1060 | \n", 805 | "b7ea75f8df3c | \n", 806 | "
62 | \n", 809 | "1681779752.321636 | \n", 810 | "90958 | \n", 811 | "testing_rownum90958 | \n", 812 | "9d4cedfa-70db-4710-88f3-9b1f17238549 | \n", 813 | "b7ea75f8df3c | \n", 814 | "
63 | \n", 817 | "1681779752.320403 | \n", 818 | "90957 | \n", 819 | "testing_rownum90957 | \n", 820 | "eec23ddf-0d2e-41b3-b387-b1c7e09606b4 | \n", 821 | "b7ea75f8df3c | \n", 822 | "
64 | \n", 825 | "1681779752.319054 | \n", 826 | "90956 | \n", 827 | "testing_rownum90956 | \n", 828 | "01762a20-edb8-4531-8b47-feedbe22b565 | \n", 829 | "b7ea75f8df3c | \n", 830 | "
65 | \n", 833 | "1681779752.317637 | \n", 834 | "90955 | \n", 835 | "testing_rownum90955 | \n", 836 | "5d9c83ea-5571-4248-a280-a084f21216e7 | \n", 837 | "b7ea75f8df3c | \n", 838 | "
66 | \n", 841 | "1681779752.316274 | \n", 842 | "90954 | \n", 843 | "testing_rownum90954 | \n", 844 | "60c1af52-657d-4c46-baa5-4df7d105264a | \n", 845 | "b7ea75f8df3c | \n", 846 | "
67 | \n", 849 | "1681779752.314906 | \n", 850 | "90953 | \n", 851 | "testing_rownum90953 | \n", 852 | "12ab0219-f3a4-4581-a3e5-3a8703483a0d | \n", 853 | "b7ea75f8df3c | \n", 854 | "
68 | \n", 857 | "1681779752.313527 | \n", 858 | "90952 | \n", 859 | "testing_rownum90952 | \n", 860 | "9b346382-e195-4985-828f-1aa4e6c4a109 | \n", 861 | "b7ea75f8df3c | \n", 862 | "
69 | \n", 865 | "1681779752.312311 | \n", 866 | "90951 | \n", 867 | "testing_rownum90951 | \n", 868 | "84d200f7-61d2-4ee6-a4ca-969c7056040a | \n", 869 | "b7ea75f8df3c | \n", 870 | "
70 | \n", 873 | "1681779752.31107 | \n", 874 | "90950 | \n", 875 | "testing_rownum90950 | \n", 876 | "98ae2425-697f-46f5-8b80-0cb6d53e904a | \n", 877 | "b7ea75f8df3c | \n", 878 | "
71 | \n", 881 | "1681779752.309636 | \n", 882 | "90949 | \n", 883 | "testing_rownum90949 | \n", 884 | "8152b663-9cbe-44f2-a499-1d1c8328398e | \n", 885 | "b7ea75f8df3c | \n", 886 | "
72 | \n", 889 | "1681779752.308253 | \n", 890 | "90948 | \n", 891 | "testing_rownum90948 | \n", 892 | "e16ceff5-f9d7-45f8-8aa9-702930a52d4b | \n", 893 | "b7ea75f8df3c | \n", 894 | "
73 | \n", 897 | "1681779752.306838 | \n", 898 | "90947 | \n", 899 | "testing_rownum90947 | \n", 900 | "6c821b9b-91d8-427e-9fc2-aa4b493b2fe5 | \n", 901 | "b7ea75f8df3c | \n", 902 | "
74 | \n", 905 | "1681779752.305435 | \n", 906 | "90946 | \n", 907 | "testing_rownum90946 | \n", 908 | "da396819-e679-4d53-bacc-a39e1c812996 | \n", 909 | "b7ea75f8df3c | \n", 910 | "
75 | \n", 913 | "1681779752.304033 | \n", 914 | "90945 | \n", 915 | "testing_rownum90945 | \n", 916 | "39df1d2b-77ce-40d0-8aa7-eaa58716089e | \n", 917 | "b7ea75f8df3c | \n", 918 | "
76 | \n", 921 | "1681779752.302649 | \n", 922 | "90944 | \n", 923 | "testing_rownum90944 | \n", 924 | "32efbd2f-ffe9-460b-91af-b51fac459b1c | \n", 925 | "b7ea75f8df3c | \n", 926 | "
77 | \n", 929 | "1681779752.301268 | \n", 930 | "90943 | \n", 931 | "testing_rownum90943 | \n", 932 | "92895835-df19-4737-8037-b86cb7d90fb3 | \n", 933 | "b7ea75f8df3c | \n", 934 | "
78 | \n", 937 | "1681779752.30011 | \n", 938 | "90942 | \n", 939 | "testing_rownum90942 | \n", 940 | "a00db8ab-393e-4c50-82c4-c1710cda362b | \n", 941 | "b7ea75f8df3c | \n", 942 | "
79 | \n", 945 | "1681779752.298814 | \n", 946 | "90941 | \n", 947 | "testing_rownum90941 | \n", 948 | "39f9b0b8-b736-4bff-9ee4-6f1b183374a2 | \n", 949 | "b7ea75f8df3c | \n", 950 | "
80 | \n", 953 | "1681779752.297452 | \n", 954 | "90940 | \n", 955 | "testing_rownum90940 | \n", 956 | "88b32f13-b0f5-4343-95e1-f187c8096493 | \n", 957 | "b7ea75f8df3c | \n", 958 | "
81 | \n", 961 | "1681779752.296146 | \n", 962 | "90939 | \n", 963 | "testing_rownum90939 | \n", 964 | "1533db32-9a9b-45cd-9cb6-0fc362e77f83 | \n", 965 | "b7ea75f8df3c | \n", 966 | "
82 | \n", 969 | "1681779752.294786 | \n", 970 | "90938 | \n", 971 | "testing_rownum90938 | \n", 972 | "e12176e7-96db-48c3-af63-18d35c437792 | \n", 973 | "b7ea75f8df3c | \n", 974 | "
83 | \n", 977 | "1681779752.293403 | \n", 978 | "90937 | \n", 979 | "testing_rownum90937 | \n", 980 | "38b765f9-2d39-40d0-bd1a-d5ac88a1ad65 | \n", 981 | "b7ea75f8df3c | \n", 982 | "
84 | \n", 985 | "1681779752.2922 | \n", 986 | "90936 | \n", 987 | "testing_rownum90936 | \n", 988 | "16fad467-4fed-41b1-8023-8191415a1e77 | \n", 989 | "b7ea75f8df3c | \n", 990 | "
85 | \n", 993 | "1681779752.2908 | \n", 994 | "90935 | \n", 995 | "testing_rownum90935 | \n", 996 | "b91fcd81-e115-4da5-b9cf-159df92fd4ae | \n", 997 | "b7ea75f8df3c | \n", 998 | "
86 | \n", 1001 | "1681779752.289333 | \n", 1002 | "90934 | \n", 1003 | "testing_rownum90934 | \n", 1004 | "b37f9cda-cdeb-4eb7-a987-38acb30dca7b | \n", 1005 | "b7ea75f8df3c | \n", 1006 | "
87 | \n", 1009 | "1681779752.287949 | \n", 1010 | "90933 | \n", 1011 | "testing_rownum90933 | \n", 1012 | "1407d30e-829d-4532-89b5-19883a1b06b8 | \n", 1013 | "b7ea75f8df3c | \n", 1014 | "
88 | \n", 1017 | "1681779752.286586 | \n", 1018 | "90932 | \n", 1019 | "testing_rownum90932 | \n", 1020 | "74674bb6-092d-4063-a652-09dd7acb3614 | \n", 1021 | "b7ea75f8df3c | \n", 1022 | "
89 | \n", 1025 | "1681779752.28522 | \n", 1026 | "90931 | \n", 1027 | "testing_rownum90931 | \n", 1028 | "7cb2e4d8-8ba1-439a-b5d1-8d350892b1d7 | \n", 1029 | "b7ea75f8df3c | \n", 1030 | "
90 | \n", 1033 | "1681779752.283851 | \n", 1034 | "90930 | \n", 1035 | "testing_rownum90930 | \n", 1036 | "0ae0dac1-ee25-4132-b0b1-ba32ef035a86 | \n", 1037 | "b7ea75f8df3c | \n", 1038 | "
91 | \n", 1041 | "1681779752.282428 | \n", 1042 | "90929 | \n", 1043 | "testing_rownum90929 | \n", 1044 | "20d37721-a2f4-4a1e-856a-372fa0c494c8 | \n", 1045 | "b7ea75f8df3c | \n", 1046 | "
92 | \n", 1049 | "1681779752.281108 | \n", 1050 | "90928 | \n", 1051 | "testing_rownum90928 | \n", 1052 | "23bc07f9-5347-4e18-9859-f8c27c139807 | \n", 1053 | "b7ea75f8df3c | \n", 1054 | "
93 | \n", 1057 | "1681779752.279815 | \n", 1058 | "90927 | \n", 1059 | "testing_rownum90927 | \n", 1060 | "efc6ada0-ed11-497d-974d-c9d98af60bbf | \n", 1061 | "b7ea75f8df3c | \n", 1062 | "
94 | \n", 1065 | "1681779752.278495 | \n", 1066 | "90926 | \n", 1067 | "testing_rownum90926 | \n", 1068 | "2290da59-697e-418f-ab36-bedd2de3ce29 | \n", 1069 | "b7ea75f8df3c | \n", 1070 | "
95 | \n", 1073 | "1681779752.277374 | \n", 1074 | "90925 | \n", 1075 | "testing_rownum90925 | \n", 1076 | "df80d2d1-3cd2-42c3-a769-490d4b5f4d97 | \n", 1077 | "b7ea75f8df3c | \n", 1078 | "
96 | \n", 1081 | "1681779752.276065 | \n", 1082 | "90924 | \n", 1083 | "testing_rownum90924 | \n", 1084 | "db8ffe19-7d18-4529-9ed7-4484e4215e2b | \n", 1085 | "b7ea75f8df3c | \n", 1086 | "
97 | \n", 1089 | "1681779752.27475 | \n", 1090 | "90923 | \n", 1091 | "testing_rownum90923 | \n", 1092 | "d069dacd-b1e1-4ffe-bec7-16b9345863cf | \n", 1093 | "b7ea75f8df3c | \n", 1094 | "
98 | \n", 1097 | "1681779752.273496 | \n", 1098 | "90922 | \n", 1099 | "testing_rownum90922 | \n", 1100 | "5aec83cf-ff0b-47c5-bc0f-2241a879e1aa | \n", 1101 | "b7ea75f8df3c | \n", 1102 | "
99 | \n", 1105 | "1681779752.272172 | \n", 1106 | "90921 | \n", 1107 | "testing_rownum90921 | \n", 1108 | "4c1d9d50-1844-42e0-acd7-77aa5088b968 | \n", 1109 | "b7ea75f8df3c | \n", 1110 | "
Notebook setup completed with some warnings.
One or more configuration items were missing or set incorrectly.
" 137 | ], 138 | "text/plain": [ 139 | "Please run the Getting Started Guide for Azure Sentinel ML Notebooks notebook. and the msticpy configuration guide.
" 149 | ], 150 | "text/plain": [ 151 | "This notebook may still run but with reduced functionality.
" 161 | ], 162 | "text/plain": [ 163 | "\n", 127 | " | Country | \n", 128 | "action | \n", 129 | "bytes | \n", 130 | "req_time | \n", 131 | "status | \n", 132 | "date_clock | \n", 133 | "count | \n", 134 | "
---|---|---|---|---|---|---|---|
0 | \n", 139 | "Netherlands | \n", 140 | "addtocart | \n", 141 | "2744 | \n", 142 | "08/Sep/2022:07:19:24 | \n", 143 | "200 | \n", 144 | "2022-09-08 07 | \n", 145 | "1 | \n", 146 | "
1 | \n", 149 | "Netherlands | \n", 150 | "purchase | \n", 151 | "1736 | \n", 152 | "08/Sep/2022:07:19:26 | \n", 153 | "200 | \n", 154 | "2022-09-08 07 | \n", 155 | "1 | \n", 156 | "
2 | \n", 159 | "Netherlands | \n", 160 | "purchase | \n", 161 | "989 | \n", 162 | "08/Sep/2022:07:19:25 | \n", 163 | "200 | \n", 164 | "2022-09-08 07 | \n", 165 | "1 | \n", 166 | "
3 | \n", 169 | "Netherlands | \n", 170 | "addtocart | \n", 171 | "1581 | \n", 172 | "08/Sep/2022:07:19:24 | \n", 173 | "200 | \n", 174 | "2022-09-08 07 | \n", 175 | "1 | \n", 176 | "
4 | \n", 179 | "Netherlands | \n", 180 | "NaN | \n", 181 | "749 | \n", 182 | "08/Sep/2022:07:19:24 | \n", 183 | "200 | \n", 184 | "2022-09-08 07 | \n", 185 | "1 | \n", 186 | "
\n", 250 | " | date_clock | \n", 251 | "action | \n", 252 | "count | \n", 253 | "
---|---|---|---|
0 | \n", 258 | "2022-09-01 18 | \n", 259 | "addtocart | \n", 260 | "17 | \n", 261 | "
1 | \n", 264 | "2022-09-01 18 | \n", 265 | "changequantity | \n", 266 | "7 | \n", 267 | "
2 | \n", 270 | "2022-09-01 18 | \n", 271 | "purchase | \n", 272 | "17 | \n", 273 | "
3 | \n", 276 | "2022-09-01 18 | \n", 277 | "remove | \n", 278 | "9 | \n", 279 | "
4 | \n", 282 | "2022-09-01 18 | \n", 283 | "view | \n", 284 | "20 | \n", 285 | "
\n", 337 | " | date_clock | \n", 338 | "action | \n", 339 | "count | \n", 340 | "
---|---|---|---|
0 | \n", 345 | "2022-09-01 18 | \n", 346 | "addtocart | \n", 347 | "17 | \n", 348 | "
5 | \n", 351 | "2022-09-01 19 | \n", 352 | "addtocart | \n", 353 | "40 | \n", 354 | "
10 | \n", 357 | "2022-09-01 20 | \n", 358 | "addtocart | \n", 359 | "26 | \n", 360 | "
15 | \n", 363 | "2022-09-01 21 | \n", 364 | "addtocart | \n", 365 | "46 | \n", 366 | "
20 | \n", 369 | "2022-09-01 22 | \n", 370 | "addtocart | \n", 371 | "24 | \n", 372 | "
\n", 422 | " | date_clock | \n", 423 | "count | \n", 424 | "residual | \n", 425 | "trend | \n", 426 | "seasonal | \n", 427 | "weights | \n", 428 | "baseline | \n", 429 | "score | \n", 430 | "anomalies | \n", 431 | "
---|---|---|---|---|---|---|---|---|---|
0 | \n", 436 | "2022-09-01 18 | \n", 437 | "17 | \n", 438 | "-2 | \n", 439 | "34 | \n", 440 | "-14 | \n", 441 | "1 | \n", 442 | "19 | \n", 443 | "-0.424389 | \n", 444 | "0 | \n", 445 | "
1 | \n", 448 | "2022-09-01 19 | \n", 449 | "40 | \n", 450 | "1 | \n", 451 | "34 | \n", 452 | "4 | \n", 453 | "1 | \n", 454 | "38 | \n", 455 | "0.201091 | \n", 456 | "0 | \n", 457 | "
2 | \n", 460 | "2022-09-01 20 | \n", 461 | "26 | \n", 462 | "-3 | \n", 463 | "34 | \n", 464 | "-4 | \n", 465 | "1 | \n", 466 | "29 | \n", 467 | "-0.632882 | \n", 468 | "0 | \n", 469 | "
3 | \n", 472 | "2022-09-01 21 | \n", 473 | "46 | \n", 474 | "3 | \n", 475 | "34 | \n", 476 | "8 | \n", 477 | "1 | \n", 478 | "42 | \n", 479 | "0.618078 | \n", 480 | "0 | \n", 481 | "
4 | \n", 484 | "2022-09-01 22 | \n", 485 | "24 | \n", 486 | "-2 | \n", 487 | "34 | \n", 488 | "-7 | \n", 489 | "1 | \n", 490 | "26 | \n", 491 | "-0.424389 | \n", 492 | "0 | \n", 493 | "
\n", 553 | " | date_clock | \n", 554 | "count | \n", 555 | "residual | \n", 556 | "trend | \n", 557 | "seasonal | \n", 558 | "weights | \n", 559 | "baseline | \n", 560 | "score | \n", 561 | "anomalies | \n", 562 | "
---|---|---|---|---|---|---|---|---|---|
94 | \n", 567 | "2022-09-05 16 | \n", 568 | "52 | \n", 569 | "15 | \n", 570 | "33 | \n", 571 | "3 | \n", 572 | "1 | \n", 573 | "36 | \n", 574 | "3.119998 | \n", 575 | "1 | \n", 576 | "
\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"
\\n\"+\n \"