author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
263,133 | 10.02.2020 12:45:06 | 0 | 874192f0446048ac1c876ce812b49894495efff6 | Initial changes to importer and upload API. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "\"\"\"Timesketch data importer.\"\"\"\nfrom __future__ import unicode_literals\n+import io\nimport json\nimport math\nimport loggi... | Python | Apache License 2.0 | google/timesketch | Initial changes to importer and upload API. |
263,133 | 10.02.2020 15:47:45 | 0 | a9b52c814d5b9b1f17b04d4701cfb266d30d53fe | Further fixes and cleanups. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -41,7 +41,7 @@ class ImportStreamer(object):\n# Number of bytes in a binary file before automatically\n# chunking it up into sm... | Python | Apache License 2.0 | google/timesketch | Further fixes and cleanups. |
263,133 | 11.02.2020 08:46:07 | 0 | fa9c9855fee282f087bca478051b929b0ffaae74 | Adding the ability to specify index on plaso files. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -145,11 +145,12 @@ class ImportStreamer(object):\nself._timeline_id = response_dict.get('objects', [{}])[0].get('id')\nself._la... | Python | Apache License 2.0 | google/timesketch | Adding the ability to specify index on plaso files. |
263,133 | 11.02.2020 09:07:14 | 0 | 3836e96349da6cb82e16549214990761351dd37d | Fixing index settings. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -145,12 +145,11 @@ class ImportStreamer(object):\nself._timeline_id = response_dict.get('objects', [{}])[0].get('id')\nself._la... | Python | Apache License 2.0 | google/timesketch | Fixing index settings. |
263,133 | 11.02.2020 10:52:55 | 0 | 10b3b46a7735e2b2b24e79e050a10cf9e951821b | Making minor changes to the documentation. | [
{
"change_type": "MODIFY",
"old_path": "docs/UploadDataViaAPI.md",
"new_path": "docs/UploadDataViaAPI.md",
"diff": "@@ -171,12 +171,37 @@ Let's look at an example:\n```\n-## CSV or JSONL file.\n+## A file, CSV, PLASO or JSONL.\n+\n+Files can also be added using the importer. That is files that are\n... | Python | Apache License 2.0 | google/timesketch | Making minor changes to the documentation. |
263,178 | 12.02.2020 12:43:00 | -3,600 | bec86711ae8eb9c23d0f9801de7da7791bd62a96 | Changes to use pybuild debhelper | [
{
"change_type": "MODIFY",
"old_path": "config/dpkg/changelog",
"new_path": "config/dpkg/changelog",
"diff": "-timesketch (20190609-1) unstable; urgency=low\n+timesketch (20200131-1) unstable; urgency=low\n* Auto-generated\n- -- Timesketch development team <timesketch-dev@googlegroups.com> Sun, 09 J... | Python | Apache License 2.0 | google/timesketch | Changes to use pybuild debhelper (#1101) |
263,178 | 12.02.2020 12:52:04 | -3,600 | 2cc9d0baba3d4ef89e6b2449c228c4308901b110 | Changed setup.py to support bdist | [
{
"change_type": "MODIFY",
"old_path": "config/travis/runtests.sh",
"new_path": "config/travis/runtests.sh",
"diff": "@@ -24,4 +24,7 @@ elif test ${MODE} = \"pypi\"; then\nelif test \"${TRAVIS_OS_NAME}\" = \"linux\"; then\npython3 ./run_tests.py\n+ python3 ./setup.py bdist\n+\n+ python3 ./setup.py s... | Python | Apache License 2.0 | google/timesketch | Changed setup.py to support bdist (#1103)
Co-authored-by: Johan Berggren <jberggren@gmail.com> |
263,133 | 13.02.2020 09:14:59 | 0 | ad4ce3859b3441700b4809598080fe8e44b7c044 | Adding a new frontend to the importer, to assist with file uploads. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "\"\"\"This is the setup file for the project.\"\"\"\nfrom __future__ import unicode_literals\n+import os\n+import glob\n+\nfrom setuptools import find_packages\nfrom setuptools imp... | Python | Apache License 2.0 | google/timesketch | Adding a new frontend to the importer, to assist with file uploads. |
263,133 | 13.02.2020 09:23:10 | 0 | efe04ae9b4fdf97e5622f0d7026a29291c2a7349 | Adding a documentation skeleton | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "docs/UploadData.md",
"diff": "+# Upload Data to Timesketch\n+\n+There are several different ways to upload data to Timesketch. This document\n+attempts to explore them all.\n+\n+These are the different ways to upload data:\n+\n+1. Directly using... | Python | Apache License 2.0 | google/timesketch | Adding a documentation skeleton |
263,133 | 13.02.2020 09:46:54 | 0 | 7c55365cf371670726f74f0c12f9041b3ad7bd5c | Updating the documentation. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/tools/timesketch_importer.py",
"new_path": "api_client/python/tools/timesketch_importer.py",
"diff": "@@ -237,11 +237,13 @@ if __name__ == '__main__':\nlogging.error('Unable to get sketch ID: {0:d}'.format(sketch_id))\nsys.exit(1)\n+ timeline... | Python | Apache License 2.0 | google/timesketch | Updating the documentation. |
263,133 | 13.02.2020 14:46:50 | 0 | cbc1433d3459b807fee5ceac78ca18dc5cf88a09 | Splitting JSONL files into chunks. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -288,13 +288,21 @@ class ImportStreamer(object):\nelif file_ending == 'jsonl':\ndata_frame = None\nwith open(filepath, 'r') as ... | Python | Apache License 2.0 | google/timesketch | Splitting JSONL files into chunks. |
263,133 | 13.02.2020 15:50:15 | 0 | af8281226e8fcfbf81fbb05026c0dbe111debea6 | Changing the way the json lines was handled, simplifying.' | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -286,24 +286,12 @@ class ImportStreamer(object):\nelif file_ending == 'plaso':\nself._sketch.upload(self._timeline_name, filepa... | Python | Apache License 2.0 | google/timesketch | Changing the way the json lines was handled, simplifying.' |
263,133 | 13.02.2020 16:52:28 | 0 | 7d1e0825e87bb5934f0e75769873714c9086abde | minor adjustments to documentation | [
{
"change_type": "MODIFY",
"old_path": "docs/UploadData.md",
"new_path": "docs/UploadData.md",
"diff": "@@ -79,6 +79,21 @@ The configuration options that can be defined in the YAML file are:\n| timeline_name | string | Name that will be used for the timeline as it gets imported into Timesketch. |\n|... | Python | Apache License 2.0 | google/timesketch | minor adjustments to documentation |
263,178 | 15.02.2020 14:07:30 | -3,600 | 58b881714c6b5a08281239e256124408ed7a3ee2 | Updated l2tdevtools configuration and dpkg files | [
{
"change_type": "MODIFY",
"old_path": "config/dpkg/control",
"new_path": "config/dpkg/control",
"diff": "@@ -4,7 +4,7 @@ Priority: extra\nMaintainer: Timesketch development team <timesketch-dev@googlegroups.com>\nBuild-Depends: debhelper (>= 9), dh-python, dh-systemd (>= 1.5), python3-all (>= 3.4~)... | Python | Apache License 2.0 | google/timesketch | Updated l2tdevtools configuration and dpkg files (#1104) |
263,133 | 16.02.2020 22:25:43 | -3,600 | b3b23b9db04bc015cc5c4af87c335d4fe24e43ff | Adding support for uploading events in API | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -113,33 +113,30 @@ class ImportStreamer(object):\nself._count = 0\nself._data_lines = []\n- def _upload_data(self, file_name, e... | Python | Apache License 2.0 | google/timesketch | Adding support for uploading events in API |
263,133 | 16.02.2020 22:47:07 | -3,600 | 892260e8fda47d5918995c70e9a7f9dddb357ff9 | Fixing issues with int casting strings from requests. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/api/v1/resources.py",
"new_path": "timesketch/api/v1/resources.py",
"diff": "@@ -1640,9 +1640,17 @@ class UploadFileResource(ResourceMixin, Resource):\nfile_path = os.path.join(upload_folder, filename)\nchunk_index = form.get('chunk_index')\n+ if is... | Python | Apache License 2.0 | google/timesketch | Fixing issues with int casting strings from requests. |
263,133 | 16.02.2020 22:58:43 | -3,600 | 013d4c12dcd481ebbadf1e8ea7e538df94f0bf24 | Incrementing version of timesketch api client. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20191220',\n+ version='20200216',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Incrementing version of timesketch api client. |
263,133 | 16.02.2020 23:16:33 | -3,600 | 0ef2f4abcb3753c7f5226215cb00e4e7d721b867 | Minor changes to tasks and upgrading tsctl as well. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/tasks.py",
"new_path": "timesketch/lib/tasks.py",
"diff": "@@ -106,7 +106,7 @@ def _get_index_task_class(file_extension):\n\"\"\"\nif file_extension == 'plaso':\nindex_class = run_plaso\n- elif file_extension in ['csv', 'jsonl', 'string']:\n+ el... | Python | Apache License 2.0 | google/timesketch | Minor changes to tasks and upgrading tsctl as well. |
263,133 | 17.02.2020 09:53:15 | 18,000 | 65d81c69ef3feb111628f4ac96c8d953f1feb5c3 | Storing the content of a file storage. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/api/v1/resources.py",
"new_path": "timesketch/api/v1/resources.py",
"diff": "@@ -1654,6 +1654,7 @@ class UploadFileResource(ResourceMixin, Resource):\nenable_stream = form.get('enable_stream', False)\nif chunk_total_chunks is None:\n+ file_storage.s... | Python | Apache License 2.0 | google/timesketch | Storing the content of a file storage. |
263,133 | 18.02.2020 22:12:10 | 18,000 | e88b2122d3e240e84875b341e02e62b901e97a3c | Changing data frame to json functions. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "@@ -126,12 +126,13 @@ class ImportStreamer(object):\nend_stream: boolean indicating whether this is the last chunk of\nthe stream.... | Python | Apache License 2.0 | google/timesketch | Changing data frame to json functions. |
263,133 | 19.02.2020 21:52:15 | 18,000 | 372abb8d627f82b939309654d66628b857fa979f | Changing how JSON and dicts are uploaded. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer.py",
"new_path": "api_client/python/timesketch_api_client/importer.py",
"diff": "\"\"\"Timesketch data importer.\"\"\"\nfrom __future__ import unicode_literals\n+import datetime\nimport io\nimport codecs\nimport... | Python | Apache License 2.0 | google/timesketch | Changing how JSON and dicts are uploaded. |
263,111 | 21.02.2020 05:00:18 | 0 | a7b1b61c9f6e2fcde43e81189b71750cc76d0522 | The initial version of the Timesketch Analyzer that identifies Windows artefacts of application crashes and also checks if the crash reporting has been explicitly disabled. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/__init__.py",
"new_path": "timesketch/lib/analyzers/__init__.py",
"diff": "@@ -18,6 +18,7 @@ from timesketch.lib.analyzers import account_finder\nfrom timesketch.lib.analyzers import browser_search\nfrom timesketch.lib.analyzers import... | Python | Apache License 2.0 | google/timesketch | The initial version of the Timesketch Analyzer that identifies Windows artefacts of application crashes and also checks if the crash reporting has been explicitly disabled. |
263,111 | 28.02.2020 04:32:10 | 0 | 8541d1d3b1d74f8b481bc6b0552789d40f1df251 | Addressed comments from the pull request and added unit tests. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/__init__.py",
"new_path": "timesketch/lib/analyzers/__init__.py",
"diff": "@@ -18,7 +18,6 @@ from timesketch.lib.analyzers import account_finder\nfrom timesketch.lib.analyzers import browser_search\nfrom timesketch.lib.analyzers import... | Python | Apache License 2.0 | google/timesketch | Addressed comments from the pull request and added unit tests. |
263,111 | 28.02.2020 04:39:54 | 0 | 2edbebe93420e90b4f71a674c33d73fe314a70e5 | Removed the old files (renamed crash.py to win_crash.py). | [
{
"change_type": "DELETE",
"old_path": "timesketch/lib/analyzers/crash.py",
"new_path": null,
"diff": "-\"\"\"Sketch analyzer plugin for crashes.\"\"\"\n-from __future__ import unicode_literals\n-\n-import re\n-\n-from timesketch.lib import emojis\n-from timesketch.lib.analyzers import interface\n-f... | Python | Apache License 2.0 | google/timesketch | Removed the old files (renamed crash.py to win_crash.py). |
263,092 | 03.03.2020 23:45:30 | -3,600 | afcf492168e5795c79e64751a172c796cfff0104 | Fix start of Elasticsearch
Run Elasticsearch as a single node. Documented at . | [
{
"change_type": "MODIFY",
"old_path": "docker/docker-compose.yml",
"new_path": "docker/docker-compose.yml",
"diff": "@@ -29,6 +29,7 @@ services:\nenvironment:\n- TAKE_FILE_OWNERSHIP=1\n+ - discovery.type=single-node\n# uncomment the following lines to control JVM memory utilization\n# in smaller de... | Python | Apache License 2.0 | google/timesketch | Fix start of Elasticsearch (#1118)
Run Elasticsearch as a single node. Documented at https://hub.docker.com/_/elasticsearch . |
263,133 | 06.03.2020 09:36:26 | 0 | 46050ed4619b65e88da15064361a2a3ebcb038db | Changing how 'fields' gets handled in explore API. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -305,7 +305,7 @@ class Sketch(resource.BaseResource):\nArgs:\nquery_string: Elasticsearch query string.\nquery_dsl: Elasticsearch q... | Python | Apache License 2.0 | google/timesketch | Changing how 'fields' gets handled in explore API. |
263,133 | 06.03.2020 14:25:35 | 0 | 9792182a3a009ac3ff71cbf7868bee396f12496e | Adding logging to sketch explore. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "from __future__ import unicode_literals\nimport json\n+import logging\nimport pandas\n@@ -25,6 +26,11 @@ from . import resource\nfrom ... | Python | Apache License 2.0 | google/timesketch | Adding logging to sketch explore. |
263,133 | 06.03.2020 14:35:20 | 0 | 432cfcc8332d8f52cbab66db3a8a4612d4757ae2 | Fixing the sketch logging. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200305',\n+ version='20200306',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Fixing the sketch logging. |
263,111 | 10.03.2020 14:54:28 | -39,600 | 20c93190ecb76fc4460d21f4be41cde984057e48 | Addressed comments from the Pull Request | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/win_crash.py",
"new_path": "timesketch/lib/analyzers/win_crash.py",
"diff": "@@ -100,8 +100,8 @@ class WinCrashSketchPlugin(interface.BaseSketchAnalyzer):\nThe Elasticsearch query\n\"\"\"\nconditions = list()\n- for e in elements.value... | Python | Apache License 2.0 | google/timesketch | Addressed comments from the Pull Request |
263,134 | 10.03.2020 11:02:01 | -3,600 | bf05853a9d250e742de68a510e6ae8b85adc84e0 | replaces PASSWORD with PASSWORD_FILE (fixes | [
{
"change_type": "MODIFY",
"old_path": "docker/docker-entrypoint.sh",
"new_path": "docker/docker-entrypoint.sh",
"diff": "@@ -10,8 +10,12 @@ if [ \"$1\" = 'timesketch' ]; then\nfi\n# Set up the Postgres connection\n+ if [ $POSTGRES_PASSWORD ]; then echo \"POSTGRES_PASSWORD usage is discouraged. Use ... | Python | Apache License 2.0 | google/timesketch | replaces PASSWORD with PASSWORD_FILE (fixes #1126) (#1127) |
263,133 | 10.03.2020 13:52:24 | 0 | 6fbde74e9795dadeef8d5b0e3f8e99c48fa92b7a | Adding a check for indexing. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/tasks.py",
"new_path": "timesketch/lib/tasks.py",
"diff": "@@ -22,6 +22,7 @@ import traceback\nimport codecs\nimport io\nimport json\n+import time\nimport six\nfrom celery import chain\n@@ -242,13 +243,32 @@ def build_sketch_analysis_pipeline(sk... | Python | Apache License 2.0 | google/timesketch | Adding a check for indexing. |
263,133 | 11.03.2020 13:50:45 | 0 | e18ac02adb2763d37d21d8d1d599d9f7d9063c8c | Bumping API client version | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200311',\n+ version='20200312',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Bumping API client version |
263,133 | 11.03.2020 16:08:39 | 0 | 22a5da1695c5454ef373b0d7e73d3a70ac2fa932 | Adding the ability to delete stories, and work with stories in the API | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/client.py",
"new_path": "api_client/python/timesketch_api_client/client.py",
"diff": "from __future__ import unicode_literals\nimport os\n+import json\n+import logging\nimport uuid\n# pylint: disable=wrong-import-order\n... | Python | Apache License 2.0 | google/timesketch | Adding the ability to delete stories, and work with stories in the API |
263,133 | 11.03.2020 16:09:34 | 0 | 6fac9c8e152420f810b730ddf47410672013d3fe | adding the story file | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "+# Copyright 2020 Google Inc. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the ... | Python | Apache License 2.0 | google/timesketch | adding the story file |
263,133 | 12.03.2020 10:11:41 | 0 | f4c57455094e4ad52c69a0b9d0c040f489014a9e | Adding tests and rewriting how the story API client works. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -166,7 +166,7 @@ class Sketch(resource.BaseResource):\nstory_dict = response_json.get('objects', [{}])[0]\nreturn story.Story(\nsto... | Python | Apache License 2.0 | google/timesketch | Adding tests and rewriting how the story API client works. |
263,133 | 12.03.2020 12:52:00 | 0 | 66336dacc9938d1f9e22c36b5e66b5d8d0365a0d | Fixing running tests to include API client tests, fixing tests. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/importer_test.py",
"new_path": "api_client/python/timesketch_api_client/importer_test.py",
"diff": "@@ -35,20 +35,23 @@ class MockSketch(object):\nclass MockStreamer(importer.ImportStreamer):\n\"\"\"Mock the import strea... | Python | Apache License 2.0 | google/timesketch | Fixing running tests to include API client tests, fixing tests. |
263,133 | 12.03.2020 13:07:14 | 0 | 9b060ea56c995de24ae3647934603e1d94c20c83 | Adding a get_story function | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -211,14 +211,38 @@ class Sketch(resource.BaseResource):\nreturn aggregation_obj\nreturn None\n+ def get_story(self, story_id=None, ... | Python | Apache License 2.0 | google/timesketch | Adding a get_story function |
263,133 | 12.03.2020 13:11:54 | 0 | 7b8d2121e76be1f03ae392c5418344cdae3ae2e8 | Updating index in blocks | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/story.py",
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "@@ -74,11 +74,15 @@ class BaseBlock(object):\ndef move_down(self):\n\"\"\"Moves a block down one location in the index.\"\"\"\n- self._s... | Python | Apache License 2.0 | google/timesketch | Updating index in blocks |
263,133 | 12.03.2020 13:27:26 | 0 | aa02c99d7f70316c6aee6c735473ccae0be4a12d | Adding the ability to update text/views ni blocks | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/story.py",
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "@@ -43,6 +43,7 @@ class BaseBlock(object):\ndef data(self, data):\n\"\"\"Feeds data to the block.\"\"\"\nself._data = data\n+ self._stor... | Python | Apache License 2.0 | google/timesketch | Adding the ability to update text/views ni blocks |
263,133 | 12.03.2020 13:52:30 | 0 | 46a0fadb78fa7ca78cb8140608c526a01e8229f6 | adding a line space
adding a line space, should be double | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/win_crash.py",
"new_path": "timesketch/lib/analyzers/win_crash.py",
"diff": "@@ -6,6 +6,7 @@ import re\nfrom timesketch.lib.analyzers import interface\nfrom timesketch.lib.analyzers import manager\n+\nclass WinCrashSketchPlugin(interfa... | Python | Apache License 2.0 | google/timesketch | adding a line space
adding a line space, should be double |
263,133 | 12.03.2020 16:12:45 | 0 | bf604f41fb67ca6389d414dbb2749ae5ac1cefc4 | Adding aggregation objects into stories | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/aggregation.py",
"new_path": "api_client/python/timesketch_api_client/aggregation.py",
"diff": "@@ -35,8 +35,7 @@ class Aggregation(resource.BaseResource):\nview: a view ID if the aggregation is tied to a specific view.\... | Python | Apache License 2.0 | google/timesketch | Adding aggregation objects into stories |
263,133 | 12.03.2020 17:19:40 | 0 | d5fe56bf0aa1f64eb0cf0a06b8e4cc9cc23c274d | Adding aggregation support. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/story.py",
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "@@ -376,6 +376,7 @@ class Story(resource.BaseResource):\nagg_obj = aggregation.Aggregation(self._sketch, self._api)\nagg_obj.from_store(... | Python | Apache License 2.0 | google/timesketch | Adding aggregation support. |
263,133 | 13.03.2020 07:47:14 | 0 | 80017183c23d67ff8de7f143cf34db0688096c89 | Adding the ability for analyzers to add aggregation into stories. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/interface.py",
"new_path": "timesketch/lib/analyzers/interface.py",
"diff": "@@ -434,6 +434,22 @@ class Story(object):\nblock['content'] = text\nself._commit(block)\n+ def add_aggregation(self, aggregation, agg_type):\n+ \"\"\"Add a sa... | Python | Apache License 2.0 | google/timesketch | Adding the ability for analyzers to add aggregation into stories. |
263,133 | 13.03.2020 07:57:41 | 0 | 36fd840ad0ed8717fddbed99313692fe70b7a280 | Adding option to define aggregation type in api | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/story.py",
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "@@ -424,11 +424,14 @@ class Story(resource.BaseResource):\nself.commit()\nself.reset()\n- def add_aggregation(self, agg_obj, index=-1):\... | Python | Apache License 2.0 | google/timesketch | Adding option to define aggregation type in api |
263,133 | 13.03.2020 09:22:53 | 0 | a6614bb7e09b6b07a0e02fc2c641f43d0ffd6d64 | Adding new parts to the fake analyzer interface. | [
{
"change_type": "MODIFY",
"old_path": "test_tools/timesketch/lib/analyzers/interface.py",
"new_path": "test_tools/timesketch/lib/analyzers/interface.py",
"diff": "@@ -31,6 +31,7 @@ EVENT_CHANGE = collections.namedtuple('event_change', 'type, source, what')\nSKETCH_CHANGE = collections.namedtuple('s... | Python | Apache License 2.0 | google/timesketch | Adding new parts to the fake analyzer interface. |
263,133 | 13.03.2020 09:38:39 | 0 | 4d9a9fd6f906a93c9f9420650873a1de84cba25a | Fixing the fake analyzer. | [
{
"change_type": "MODIFY",
"old_path": "test_tools/timesketch/lib/analyzers/interface.py",
"new_path": "test_tools/timesketch/lib/analyzers/interface.py",
"diff": "@@ -31,7 +31,7 @@ EVENT_CHANGE = collections.namedtuple('event_change', 'type, source, what')\nSKETCH_CHANGE = collections.namedtuple('s... | Python | Apache License 2.0 | google/timesketch | Fixing the fake analyzer. |
263,133 | 17.03.2020 09:11:02 | 0 | 63b15879118ce77383fb4829baa2679ff5dfc618 | Adding the ability to add users or groups to the sketch ACL. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200312',\n+ version='20200317',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Adding the ability to add users or groups to the sketch ACL. |
263,133 | 17.03.2020 09:15:38 | 0 | d326a77505cfe76dfb03f2ef0708ff0b0ab97304 | Adding the ability to remove ACLs from sketch. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -169,7 +169,7 @@ class Sketch(resource.BaseResource):\nsketch=self,\napi=self.api)\n- def add_to_acl(self, user_list=None, group_li... | Python | Apache License 2.0 | google/timesketch | Adding the ability to remove ACLs from sketch. |
263,133 | 19.03.2020 08:18:50 | 0 | eef14312466df9359af3aaa6553471ba9bbe1fd1 | Adding the ability to export stories. | [
{
"change_type": "MODIFY",
"old_path": "requirements.txt",
"new_path": "requirements.txt",
"diff": "@@ -30,3 +30,4 @@ SQLAlchemy==1.3.12\nWerkzeug==0.16.0\nWTForms==2.2.1\nxlrd==1.2.0\n+tabulate=0.8.6\n"
},
{
"change_type": "MODIFY",
"old_path": "timesketch/api/v1/resources.py",
"new... | Python | Apache License 2.0 | google/timesketch | Adding the ability to export stories. |
263,133 | 19.03.2020 08:44:06 | 0 | 7b8d6bffe0f7d7b9c2f44bdb731e5f8f55351b19 | Adding markdown support in API client and fixing export | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200317',\n+ version='20200319',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Adding markdown support in API client and fixing export |
263,133 | 19.03.2020 09:12:33 | 0 | 99ab88cd10c0bcfa7696317b573fede292533ecc | Fixing manager test. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/stories/manager_test.py",
"new_path": "timesketch/lib/stories/manager_test.py",
"diff": "@@ -55,17 +55,18 @@ class TestStoryExportManager(BaseTest):\nexporter_class = exporter_dict.get('mockformat')\nself.assertEqual(exporter_class, MockStoryExp... | Python | Apache License 2.0 | google/timesketch | Fixing manager test. |
263,133 | 19.03.2020 09:52:15 | 0 | 89d64b6ddb956cefe6b4e933d25912188a5765a9 | Adding a more generic export functionality in api client and a get formats function in manager. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/story.py",
"new_path": "api_client/python/timesketch_api_client/story.py",
"diff": "@@ -561,11 +561,15 @@ class Story(resource.BaseResource):\ndef to_markdown(self):\n\"\"\"Return a markdown formatted string with the con... | Python | Apache License 2.0 | google/timesketch | Adding a more generic export functionality in api client and a get formats function in manager. |
263,133 | 19.03.2020 11:32:27 | 0 | a41bfdafe30b8efb88665216b43e28a2a5402dfb | Adding a check of analyzer status. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -235,6 +235,28 @@ class Sketch(resource.BaseResource):\naggregations.append(aggregation_obj)\nreturn aggregations\n+ def get_analyz... | Python | Apache License 2.0 | google/timesketch | Adding a check of analyzer status. |
263,133 | 19.03.2020 12:57:23 | 0 | 14776003b2210465f2e3152a60312655b3797f23 | Fixing linter and docstring | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -236,11 +236,19 @@ class Sketch(resource.BaseResource):\nreturn aggregations\ndef get_analyzer_status(self):\n- \"\"\"Returns a lis... | Python | Apache License 2.0 | google/timesketch | Fixing linter and docstring |
263,133 | 25.03.2020 14:46:05 | 0 | df80f08e1cf06da755e5d2b47d7a38201939037e | Making further changes | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200320',\n+ version='20200325',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Making further changes |
263,093 | 26.03.2020 11:49:10 | -3,600 | 02ce19e97f44210dc3870e62ea51a03ffa6b5c5e | Check field type | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/aggregators/bucket.py",
"new_path": "timesketch/lib/aggregators/bucket.py",
"diff": "@@ -84,6 +84,8 @@ class TermsAggregation(interface.BaseAggregator):\nInstance of interface.AggregationResult with aggregation result.\n\"\"\"\nself.field = fiel... | Python | Apache License 2.0 | google/timesketch | Check field type (#1147) |
263,133 | 30.03.2020 09:45:05 | 0 | 51b463769f2e3265fd443f1a6d15482488547e9f | Adding a manual aggregator and fixing stories. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/aggregators/__init__.py",
"new_path": "timesketch/lib/aggregators/__init__.py",
"diff": "# Register all aggregators here by importing them.\nfrom timesketch.lib.aggregators import bucket\n+from timesketch.lib.aggregators import feed\nfrom timesk... | Python | Apache License 2.0 | google/timesketch | Adding a manual aggregator and fixing stories. |
263,133 | 30.03.2020 11:19:33 | 0 | e8a7e9fdad474219a31b0ea31baabf6afb9a1a35 | Adding tooltips to charts and fixing search day. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/aggregators/bucket.py",
"new_path": "timesketch/lib/aggregators/bucket.py",
"diff": "@@ -103,7 +103,10 @@ class TermsAggregation(interface.BaseAggregator):\n'order': 'descending'\n}\n},\n- 'y': {'field': 'count', 'type': 'quantitative'}\n+ 'y': ... | Python | Apache License 2.0 | google/timesketch | Adding tooltips to charts and fixing search day. |
263,133 | 30.03.2020 11:20:35 | 0 | e788285fe64269103b1d089de63722f3d126ffb7 | Fix API client version | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200325',\n+ version='20200330',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Fix API client version |
263,133 | 30.03.2020 11:23:05 | 0 | d8eda5e4b5f2f09e82bf8fd58255584083e24f90 | Fixing a spelling mistake | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/interface.py",
"new_path": "timesketch/lib/analyzers/interface.py",
"diff": "@@ -480,7 +480,7 @@ class Story(object):\naggregation (Aggregation): Saved aggregation to add to the story.\nagg_type (str): string indicating the type of agg... | Python | Apache License 2.0 | google/timesketch | Fixing a spelling mistake |
263,133 | 30.03.2020 12:24:55 | 0 | b1295e5ed5476d2dd3772866256ca755e67a29fa | Minor changes to the browser search story. | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/analyzers/browser_search.py",
"new_path": "timesketch/lib/analyzers/browser_search.py",
"diff": "@@ -258,18 +258,21 @@ class BrowserSearchSketchPlugin(interface.BaseSketchAnalyzer):\nstory.add_text(\n'## Browser Search Analyzer.\\n\\nThe browser... | Python | Apache License 2.0 | google/timesketch | Minor changes to the browser search story. |
263,133 | 31.03.2020 09:34:56 | 0 | ea0ed8a30426ffc7ae37abba6d7523c294b99ee8 | Changing version information to trigger new travis. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200330',\n+ version='20200331',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Changing version information to trigger new travis. |
263,127 | 31.03.2020 21:21:13 | -7,200 | 515c8dcc8c8206b6190784223c472bda87fd036a | Fix docker installation documentation link. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -20,7 +20,7 @@ Timesketch is an open source tool for collaborative forensic timeline analysis.\n#### Installation\n* [Install Timesketch manually](docs/Installation.md)\n-* [Use Docker](docker)\n+* [Use Docker](... | Python | Apache License 2.0 | google/timesketch | Fix docker installation documentation link. |
263,133 | 31.03.2020 20:40:59 | 0 | a2e4d7d3c022c0e0f74d1267f334d07255309498 | Forgot to update one thing | [
{
"change_type": "MODIFY",
"old_path": "timesketch/lib/charts/circle.py",
"new_path": "timesketch/lib/charts/circle.py",
"diff": "# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the... | Python | Apache License 2.0 | google/timesketch | Forgot to update one thing |
263,093 | 08.04.2020 13:31:00 | -7,200 | 76b901ddf2c8bdcf1a431bf3f12ca7805b804755 | Add listing of groups and users, and ability to exapnd groups | [
{
"change_type": "MODIFY",
"old_path": "timesketch/tsctl.py",
"new_path": "timesketch/tsctl.py",
"diff": "@@ -91,6 +91,16 @@ class AddUser(Command):\nsys.stdout.write('User {0:s} created/updated\\n'.format(username))\n+class ListUsers(Command):\n+ \"\"\"List all users.\"\"\"\n+\n+ # pylint: disable=... | Python | Apache License 2.0 | google/timesketch | Add listing of groups and users, and ability to exapnd groups |
263,108 | 17.04.2020 10:42:51 | -7,200 | 89ef241a7c572227bdd3f31c668b84b644139019 | Update installation and plaso documentation | [
{
"change_type": "MODIFY",
"old_path": "docs/EnablePlasoUpload.md",
"new_path": "docs/EnablePlasoUpload.md",
"diff": "@@ -7,12 +7,12 @@ To enable uploading and processing of Plaso storage files, there are a couple of\nNOTE: Due to changes in the format of the Plaso storage file you need to run the l... | Python | Apache License 2.0 | google/timesketch | Update installation and plaso documentation (#1169) |
263,100 | 17.04.2020 10:43:38 | -7,200 | 5a4926e3009a30db8c913eeaa1d3f7ca162e8199 | Fixing typo libffi | [
{
"change_type": "MODIFY",
"old_path": "docs/Installation.md",
"new_path": "docs/Installation.md",
"diff": "@@ -59,7 +59,7 @@ Then you need to restart PostgreSQL:\nNow it is time to install Timesketch. First we need to install some dependencies:\n- $ sudo apt-get install python3-pip python3-dev libf... | Python | Apache License 2.0 | google/timesketch | Fixing typo libffi (#1168) |
263,133 | 05.05.2020 10:45:58 | 0 | bb3f0227224fbd1c33988875f28c4aeb14e9b1ae | Moving the importer into a separate directory and a library. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "\"\"\"This is the setup file for the project.\"\"\"\nfrom __future__ import unicode_literals\n-import os\n-import glob\n-\nfrom setuptools import find_packages\nfrom setuptools imp... | Python | Apache License 2.0 | google/timesketch | Moving the importer into a separate directory and a library. |
263,133 | 05.05.2020 10:53:08 | 0 | 9b074bb1ce699935ae3bbdec256a9edca2db45f5 | Updating API importer documentation. | [
{
"change_type": "MODIFY",
"old_path": "docs/UploadDataViaAPI.md",
"new_path": "docs/UploadDataViaAPI.md",
"diff": "@@ -24,6 +24,12 @@ parsed or have readily available, but they are not in the correct format that\nTimesketch requires or you want an automatic way to import the data, or a way to\nbuil... | Python | Apache License 2.0 | google/timesketch | Updating API importer documentation. |
263,133 | 05.05.2020 11:02:00 | 0 | 6b5c6a6e4dea9c5d8124d693565c8d68b880d903 | Fixing test file to include the importer. | [
{
"change_type": "MODIFY",
"old_path": "run_tests.py",
"new_path": "run_tests.py",
"diff": "@@ -10,15 +10,15 @@ import argparse\ndef run_python_tests(coverage=False):\ntry:\nif coverage:\n- subprocess.check_call(\n+ subprocess.check_call((\n'nosetests --with-coverage'\n- + ' --cover-package=timesket... | Python | Apache License 2.0 | google/timesketch | Fixing test file to include the importer. |
263,133 | 05.05.2020 11:39:07 | 0 | d521550f340ea4941593d1083e072ac99b5d3fc9 | Adding importer to travis configs | [
{
"change_type": "MODIFY",
"old_path": "config/travis/install.sh",
"new_path": "config/travis/install.sh",
"diff": "@@ -42,6 +42,7 @@ if test ${MODE} = \"dpkg\"; then\ndocker exec -e \"DEBIAN_FRONTEND=noninteractive\" ${CONTAINER_NAME} sh -c \"apt-get install -y ${DPKG_PACKAGES}\";\ndocker exec cd a... | Python | Apache License 2.0 | google/timesketch | Adding importer to travis configs |
263,133 | 05.05.2020 12:35:07 | 0 | 351c0691ab91d78bc67ad04c27a8dfa97ec57741 | Adding directory traversal to travis config. | [
{
"change_type": "MODIFY",
"old_path": "config/travis/install.sh",
"new_path": "config/travis/install.sh",
"diff": "@@ -42,6 +42,7 @@ if test ${MODE} = \"dpkg\"; then\ndocker exec -e \"DEBIAN_FRONTEND=noninteractive\" ${CONTAINER_NAME} sh -c \"apt-get install -y ${DPKG_PACKAGES}\";\ndocker exec cd a... | Python | Apache License 2.0 | google/timesketch | Adding directory traversal to travis config. |
263,133 | 05.05.2020 16:25:26 | 0 | 56a71309e0c8c9c6dadc376ce0d25c99c578117c | Adding a formatter.yaml file and moving functions to utils as well as adding functionality. | [
{
"change_type": "ADD",
"old_path": "importer_client/python/timesketch_import_client/data/__init__.py",
"new_path": "importer_client/python/timesketch_import_client/data/__init__.py",
"diff": ""
},
{
"change_type": "ADD",
"old_path": null,
"new_path": "importer_client/python/timesket... | Python | Apache License 2.0 | google/timesketch | Adding a formatter.yaml file and moving functions to utils as well as adding functionality. |
263,133 | 05.05.2020 17:09:44 | 0 | b64bbcd4074204b846c7f83bf3329b7668744997 | Doing a query for timelines in file uploads | [
{
"change_type": "MODIFY",
"old_path": "timesketch/api/v1/resources.py",
"new_path": "timesketch/api/v1/resources.py",
"diff": "@@ -1975,6 +1975,12 @@ class UploadFileResource(ResourceMixin, Resource):\nif searchindex:\nsearchindex.set_status('processing')\n+ timeline = Timeline.query.filter_by(\n+ ... | Python | Apache License 2.0 | google/timesketch | Doing a query for timelines in file uploads |
263,133 | 06.05.2020 11:12:42 | 0 | fc43c47f13e8486c5532cc4db75ef310824d49e7 | Adding functions to read and parse config files. | [
{
"change_type": "MODIFY",
"old_path": "importer_client/python/setup.py",
"new_path": "importer_client/python/setup.py",
"diff": "@@ -36,6 +36,10 @@ setup(\n'Operating System :: OS Independent',\n'Programming Language :: Python',\n],\n+ data_files=[\n+ ('data', glob.glob(\n+ os.path.join('timesketch... | Python | Apache License 2.0 | google/timesketch | Adding functions to read and parse config files. |
263,133 | 06.05.2020 12:51:34 | 0 | 5472333a076a8eeb57bba4cfdad7370a6c63d7a5 | Adding a redline example to the formatter file. | [
{
"change_type": "MODIFY",
"old_path": "importer_client/python/timesketch_import_client/data/formatter.yaml",
"new_path": "importer_client/python/timesketch_import_client/data/formatter.yaml",
"diff": "# columns - a list of columns that should be present in the data file\n# for this to be a match on... | Python | Apache License 2.0 | google/timesketch | Adding a redline example to the formatter file. |
263,133 | 06.05.2020 15:18:29 | 0 | 320a1b8de3e7a4c8d3d24af65edbca1573cc7c2d | Adding a default load when using the with statement | [
{
"change_type": "MODIFY",
"old_path": "importer_client/python/timesketch_import_client/importer.py",
"new_path": "importer_client/python/timesketch_import_client/importer.py",
"diff": "@@ -709,6 +709,8 @@ class ImportStreamer(object):\ndef __enter__(self):\n\"\"\"Make it possible to use \"with\" st... | Python | Apache License 2.0 | google/timesketch | Adding a default load when using the with statement |
263,133 | 06.05.2020 19:43:29 | 0 | f1915123aaad153ba3bee972219211e4bdc90ffc | Adding default filename to imports. | [
{
"change_type": "MODIFY",
"old_path": "importer_client/python/timesketch_import_client/importer.py",
"new_path": "importer_client/python/timesketch_import_client/importer.py",
"diff": "@@ -518,10 +518,16 @@ class ImportStreamer(object):\nif not os.path.isfile(filepath):\nraise TypeError('Entry obje... | Python | Apache License 2.0 | google/timesketch | Adding default filename to imports. |
263,133 | 07.05.2020 12:54:03 | 0 | e66fc4f0fd2a06776ee165d865cd78266cf71a18 | Incrementing the version of the importer client. | [
{
"change_type": "MODIFY",
"old_path": "importer_client/python/setup.py",
"new_path": "importer_client/python/setup.py",
"diff": "@@ -24,7 +24,7 @@ from setuptools import setup\nsetup(\nname='timesketch-import-client',\n- version='20200505',\n+ version='20200507',\ndescription='Timesketch Import Cli... | Python | Apache License 2.0 | google/timesketch | Incrementing the version of the importer client. |
263,133 | 07.05.2020 15:05:03 | 0 | 96819adedb41bdfb9a92041e2fa5a36a2579424e | Changing error reporting. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/sketch.py",
"new_path": "api_client/python/timesketch_api_client/sketch.py",
"diff": "@@ -644,7 +644,7 @@ class Sketch(resource.BaseResource):\nif response.status_code == 200:\nreturn response.json()\n- return '[{0:d}] {... | Python | Apache License 2.0 | google/timesketch | Changing error reporting. (#1188) |
263,133 | 11.05.2020 15:17:07 | 0 | f830791cccbf5915d0c0042cb1d226c56bf56579 | Adding a config and a crypto module to the API client. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200505',\n+ version='20200512',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Adding a config and a crypto module to the API client. |
263,133 | 11.05.2020 15:55:34 | 0 | e186b7f2fa6c8404720d3897565cf2d870467d9e | fixing length | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/crypto.py",
"new_path": "api_client/python/timesketch_api_client/crypto.py",
"diff": "@@ -49,16 +49,27 @@ class CredentialStorage:\nself._filepath = os.path.join(\nhome_path, self.DEFAULT_CREDENTIAL_FILENAME)\n- def _get... | Python | Apache License 2.0 | google/timesketch | fixing length |
263,133 | 12.05.2020 09:25:06 | 0 | 33f768b15ce392aa594e1b693ddd9370a8937faf | Adding click support into import client, fixing config and crypto | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200512',\n+ version='20200513',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Adding click support into import client, fixing config and crypto |
263,133 | 12.05.2020 11:18:49 | 0 | 61ca09b73affa21863e7a12ae63ed5b608e77ae3 | Removing doc string. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/config.py",
"new_path": "api_client/python/timesketch_api_client/config.py",
"diff": "@@ -50,9 +50,6 @@ class ConfigAssistant:\na state about what config has been passed to it, to assist possible\nUIs to understand what ... | Python | Apache License 2.0 | google/timesketch | Removing doc string. |
263,133 | 12.05.2020 15:49:11 | 0 | f6f1e0e006a7153fc238677bfcf955a3702a086e | Adding credential objects, storing also user/pass combinations of auth. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/client.py",
"new_path": "api_client/python/timesketch_api_client/client.py",
"diff": "@@ -31,6 +31,7 @@ from google_auth_oauthlib import flow as googleauth_flow\nimport google.auth.transport.requests\nimport pandas\n+fro... | Python | Apache License 2.0 | google/timesketch | Adding credential objects, storing also user/pass combinations of auth. |
263,133 | 13.05.2020 07:47:01 | 0 | 42df2733b1a084fae53bf8c5f2e51916c182a893 | Changing crypto, using a salt and a different method for generating the key. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/crypto.py",
"new_path": "api_client/python/timesketch_api_client/crypto.py",
"diff": "@@ -19,11 +19,12 @@ import os\nimport getpass\nimport json\nimport logging\n-import random\n-import string\nimport stat\nfrom cryptogr... | Python | Apache License 2.0 | google/timesketch | Changing crypto, using a salt and a different method for generating the key. |
263,133 | 13.05.2020 13:38:58 | 0 | 95afd7a01c64c3131b9afb2544289a7a1db103d4 | Adding the ability to define your own pwd for the token file, as well as randomly generating it by default.' | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/config.py",
"new_path": "api_client/python/timesketch_api_client/config.py",
"diff": "@@ -91,14 +91,15 @@ class ConfigAssistant:\n\"\"\"\nreturn self._config[name]\n- def get_client(self):\n+ def get_client(self, passwor... | Python | Apache License 2.0 | google/timesketch | Adding the ability to define your own pwd for the token file, as well as randomly generating it by default.' |
263,133 | 13.05.2020 13:42:31 | 0 | c5692e0549530ffbcd6ba755b53517708280f89d | Changing a docstring. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/config.py",
"new_path": "api_client/python/timesketch_api_client/config.py",
"diff": "@@ -91,8 +91,13 @@ class ConfigAssistant:\n\"\"\"\nreturn self._config[name]\n- def get_client(self, password=''):\n- \"\"\"Returns a ... | Python | Apache License 2.0 | google/timesketch | Changing a docstring. |
263,133 | 13.05.2020 15:03:17 | 0 | 3d2dd6bd44ebaf0c5b2af7c410b62b96c68fa9a4 | Forgot to update a single variable. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/config.py",
"new_path": "api_client/python/timesketch_api_client/config.py",
"diff": "@@ -104,7 +104,7 @@ class ConfigAssistant:\nauth_mode = self._config.get('auth_mode', 'timesketch')\ncredential_storage = crypto.Crede... | Python | Apache License 2.0 | google/timesketch | Forgot to update a single variable. |
263,133 | 14.05.2020 09:45:39 | 0 | baad8ba114ceb87e684594820a9faaa625ac77b3 | Adding code to complete config into the library. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200513',\n+ version='20200514',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Adding code to complete config into the library. |
263,133 | 14.05.2020 12:52:24 | 0 | 25d33ab85536ff0a1c5a8be298c278e2bb25213d | Minor changes to the API config client. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200514',\n+ version='20200515',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Minor changes to the API config client. (#1193) |
263,133 | 15.05.2020 09:43:20 | 0 | a612aadb2c936ab37816d36590960e1f97ee4ae7 | Splitting credentials out of crypto storage module in API client. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/client.py",
"new_path": "api_client/python/timesketch_api_client/client.py",
"diff": "@@ -31,7 +31,7 @@ from google_auth_oauthlib import flow as googleauth_flow\nimport google.auth.transport.requests\nimport pandas\n-fro... | Python | Apache License 2.0 | google/timesketch | Splitting credentials out of crypto storage module in API client. |
263,133 | 15.05.2020 09:51:24 | 0 | 3bf44a16234dff6c351fbdcfdf8967b5fcbbf412 | forgot to add the new file | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "api_client/python/timesketch_api_client/credentials.py",
"diff": "+# Copyright 2020 Google Inc. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance wit... | Python | Apache License 2.0 | google/timesketch | forgot to add the new file |
263,133 | 15.05.2020 09:54:53 | 0 | cc250c39f4585f6854cea2a9a27f56ea417267b9 | docstrings make the life go round | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/credentials.py",
"new_path": "api_client/python/timesketch_api_client/credentials.py",
"diff": "# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language gove... | Python | Apache License 2.0 | google/timesketch | docstrings make the life go round |
263,096 | 16.05.2020 22:52:45 | -7,200 | a7a31270c80b244cbfa13c7374d6c54aab004062 | Remove $ from the README.md
to be consistent. In other readme files we also do not write $, thus removing it here, makes it also easier to copy & paste the line | [
{
"change_type": "MODIFY",
"old_path": "docker/development/README.md",
"new_path": "docker/development/README.md",
"diff": "@@ -5,13 +5,13 @@ You can run Timesketch on Docker in development mode.\n### Start a developer version of docker containers in this directory\n```\n-$ docker-compose up -d\n+do... | Python | Apache License 2.0 | google/timesketch | Remove $ from the README.md
to be consistent. In other readme files we also do not write $, thus removing it here, makes it also easier to copy & paste the line |
263,093 | 20.05.2020 13:16:39 | -7,200 | 2845175333fa066961705d7d2882263d270572d6 | Use gcr.io imaghes | [
{
"change_type": "MODIFY",
"old_path": "docker/dev/Dockerfile",
"new_path": "docker/dev/Dockerfile",
"diff": "# Use the latest Timesketch development base image\n-FROM timesketch/timesketch-dev-base:20200327\n+FROM gcr.io/timesketch-build/dev/timesketch-dev-base:latest\n# Install dependencies for Ti... | Python | Apache License 2.0 | google/timesketch | Use gcr.io imaghes |
263,178 | 22.05.2020 13:41:20 | -7,200 | 7789aa73897ea53013c637e67841c53919555350 | Added missing tabulate dependency to dpkg files | [
{
"change_type": "MODIFY",
"old_path": "config/dpkg/changelog",
"new_path": "config/dpkg/changelog",
"diff": "-timesketch (20200131-1) unstable; urgency=low\n+timesketch (20200507-1) unstable; urgency=low\n* Auto-generated\n- -- Timesketch development team <timesketch-dev@googlegroups.com> Wed, 12 F... | Python | Apache License 2.0 | google/timesketch | Added missing tabulate dependency to dpkg files |
263,133 | 25.05.2020 11:51:08 | 0 | 20d2825b014e9f027f61bab0b9026ce892f496ba | Adding an analyzer result object to API client. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "api_client/python/timesketch_api_client/analyzer.py",
"diff": "+# Copyright 2020 Google Inc. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with t... | Python | Apache License 2.0 | google/timesketch | Adding an analyzer result object to API client. |
263,133 | 25.05.2020 11:51:57 | 0 | 6a168a384ac65d97c5241cacd1cac93e96a8de37 | Upgrading the version number. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/setup.py",
"new_path": "api_client/python/setup.py",
"diff": "@@ -21,7 +21,7 @@ from setuptools import setup\nsetup(\nname='timesketch-api-client',\n- version='20200520',\n+ version='20200525',\ndescription='Timesketch API client',\nlicense='... | Python | Apache License 2.0 | google/timesketch | Upgrading the version number. |
263,133 | 25.05.2020 15:27:20 | 0 | ec45d8e5e840d79e8753fa8ba83652cba51835ba | Making minor changes to the analyzer object. | [
{
"change_type": "MODIFY",
"old_path": "api_client/python/timesketch_api_client/analyzer.py",
"new_path": "api_client/python/timesketch_api_client/analyzer.py",
"diff": "\"\"\"Timesketch API analyzer result object.\"\"\"\nfrom __future__ import unicode_literals\n+import datetime\nimport json\nimport... | Python | Apache License 2.0 | google/timesketch | Making minor changes to the analyzer object. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.