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,093
17.08.2017 15:57:56
-7,200
960f6fbf96c6e4d3681cc0de9b10e806ef20bd2f
Add metadata instead of HTTP code and exception
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "@@ -21,8 +21,6 @@ import requests\nfrom requests.exceptions import ConnectionError\nfrom .definitions import HTTP_STATUS_CODE_CREATED\...
Python
Apache License 2.0
google/timesketch
Add metadata instead of HTTP code and exception
263,122
17.08.2017 17:22:14
-7,200
6de215d2ca8615d334c6d54ddccf78df35feb7f9
Make vagrant bootstrap script more idempotent.
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "#!/usr/bin/env bash\n+set -e\n+set -u\n# Generate random passwords for DB and session key\n-PSQL_PW=\"$(openssl rand -hex 32)\"\n-SECRET_KEY=\"$(openssl rand -hex 32)\"\n+if [ ! -f psql_pw ]; ...
Python
Apache License 2.0
google/timesketch
Make vagrant bootstrap script more idempotent.
263,122
17.08.2017 17:36:44
-7,200
bc2e2105bfa77b34984e95b04c270d6f7a2973fd
Increase memory and disk size in vagrant.
[ { "change_type": "MODIFY", "old_path": "vagrant/Vagrantfile", "new_path": "vagrant/Vagrantfile", "diff": "# Set VirtualBox as default provider\nENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'\n+unless Vagrant.has_plugin?(\"vagrant-disksize\")\n+ raise 'vagrant-disksize is not installed (\"vagrant plu...
Python
Apache License 2.0
google/timesketch
Increase memory and disk size in vagrant.
263,122
18.08.2017 10:58:17
-7,200
d2897736f0b1804e9bb147d26ddf25361438a3ef
Move docs to repo.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "-## Timesketch\n-\n+# Timesketch\n[![Build Status](https://travis-ci.org/google/timesketch.svg?branch=master)](https://travis-ci.org/google/timesketch)\n+[![Version](https://img.shields.io/pypi/v/timesketch.svg)](h...
Python
Apache License 2.0
google/timesketch
Move docs to repo.
263,093
21.08.2017 14:33:17
-7,200
690bfdbced3de27b5a7f7e9804fb23ee39540689
Create timeline API endpoint and refactoring
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "@@ -21,6 +21,7 @@ import requests\nfrom requests.exceptions import ConnectionError\nfrom .definitions import HTTP_STATUS_CODE_CREATED\...
Python
Apache License 2.0
google/timesketch
Create timeline API endpoint and refactoring
263,093
21.08.2017 15:11:28
-7,200
222b13da47227cde5640743fd648ed179cd35cd2
Custom error message for HTTP 400 requests
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -76,6 +76,20 @@ from timesketch.models.sketch import SearchTemplate\nfrom timesketch.models.story import Story\n+def bad_request(message):\n+ \"\"\"Function to set custo...
Python
Apache License 2.0
google/timesketch
Custom error message for HTTP 400 requests
263,093
23.08.2017 00:46:23
-7,200
b801d0c7cc0cb81fa5941352483fe6f6fb47b926
Fix linter errors with pylint 1.7.x and update Dev dependencies in Vagrant
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "\"\"\"Timesketch API client.\"\"\"\nimport json\n+from uuid import uuid4\nimport BeautifulSoup\nimport requests\nfrom requests.excepti...
Python
Apache License 2.0
google/timesketch
Fix linter errors with pylint 1.7.x and update Dev dependencies in Vagrant
263,093
23.08.2017 15:55:10
-7,200
374104195bfc7e92267db4732e0c306b8103ac34
Fix resource url
[ { "change_type": "MODIFY", "old_path": "timesketch/__init__.py", "new_path": "timesketch/__init__.py", "diff": "@@ -148,9 +148,9 @@ def create_app(config=None):\napi_v1.add_resource(\nTimelineResource,\nu'/sketches/<int:sketch_id>/timelines/<int:timeline_id>/')\n- api_v1.add_resource(SearchIndexList...
Python
Apache License 2.0
google/timesketch
Fix resource url
263,122
23.08.2017 18:32:25
-7,200
373e239b4cd979255d3830366cef4604db868cf2
Collapse apt-get and pip invocations in bootstrap.sh
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "set -e\nset -u\n+# Setup GIFT PPA apt repository\n+add-apt-repository -y ppa:gift/stable\n+\n+# Add Elasticsearch 5.x repo\n+apt-get install -y apt-transport-https\n+wget -qO - https://artifac...
Python
Apache License 2.0
google/timesketch
Collapse apt-get and pip invocations in bootstrap.sh
263,122
22.08.2017 19:06:52
-7,200
5e67741b329798c2d71d214a54f73af6db670cb8
Make the code compile with Typescript + Webpack
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "+# Ignore javascript build related files\n+node_modules\n+bundle.js\n+\n+# Ignore data files\n+*.plaso\n+\n# Ignore back-up files.\n*~\n/dependencies/\n/dist/\n/build/\n+*.egg-info\n# And don't care about the 'eg...
Python
Apache License 2.0
google/timesketch
Make the code compile with Typescript + Webpack
263,122
23.08.2017 20:03:03
-7,200
b4c4c61d7026908685927b4807693798dcdf31cf
Add frontend build step to vagrant bootstrap.sh
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "@@ -14,16 +14,30 @@ echo \"deb https://artifacts.elastic.co/packages/5.x/apt stable main\" | tee -a /e\nwget -O - https://debian.neo4j.org/neotechnology.gpg.key | apt-key add -\necho \"deb htt...
Python
Apache License 2.0
google/timesketch
Add frontend build step to vagrant bootstrap.sh
263,093
24.08.2017 09:20:07
-7,200
dd0184183ffcedcf5158994b99d43a197769eb49
Return HTTP 200 if searchindex already exists
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -1322,6 +1322,7 @@ class SearchIndexListResource(ResourceMixin, Resource):\nif searchindex:\nmetadata[u'created'] = False\n+ status_code = HTTP_STATUS_CODE_OK\nelse:\nse...
Python
Apache License 2.0
google/timesketch
Return HTTP 200 if searchindex already exists
263,093
24.08.2017 09:37:58
-7,200
673e4f8623de9f5d8725035927687897ec4bd1a4
Indicate if index was created or not
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "@@ -20,7 +20,6 @@ import requests\nfrom requests.exceptions import ConnectionError\n-from .definitions import HTTP_STATUS_CODE_CREATED...
Python
Apache License 2.0
google/timesketch
Indicate if index was created or not
263,122
23.08.2017 20:28:51
-7,200
392192f5c0001f0e1ac8470826426af94b957dd1
Add frontend installation instructions.
[ { "change_type": "MODIFY", "old_path": "docker/README.md", "new_path": "docker/README.md", "diff": "@@ -12,6 +12,9 @@ git clone https://github.com/google/timesketch.git\ncd timesketch\n```\n+### Build Timesketch frontend\n+Follow steps \"Install Node.js and Yarn\" and \"Build Timesketch frontend\" f...
Python
Apache License 2.0
google/timesketch
Add frontend installation instructions.
263,122
24.08.2017 10:54:33
-7,200
e865abcd10b35900c6fee82695cdb218921f4ee2
Add frontend build check to setup.py + update docs.
[ { "change_type": "MODIFY", "old_path": "docker/README.md", "new_path": "docker/README.md", "diff": "@@ -13,7 +13,7 @@ cd timesketch\n```\n### Build Timesketch frontend\n-Follow steps \"Install Node.js and Yarn\" and \"Build Timesketch frontend\" from [installation instructions](../docs/Installation....
Python
Apache License 2.0
google/timesketch
Add frontend build check to setup.py + update docs.
263,122
25.08.2017 10:07:12
-7,200
82fbe05bec6f201050715cfcfe097652ced1e03c
Add docstring for check_before_upload() in setup.py.
[ { "change_type": "MODIFY", "old_path": "setup.py", "new_path": "setup.py", "diff": "@@ -34,6 +34,9 @@ timesketch_description = (\nu'your raw data with rich annotations, comments, tags and stars.')\ndef check_before_upload():\n+ \"\"\"Raise UserWarning if frontend build is not present or is not recen...
Python
Apache License 2.0
google/timesketch
Add docstring for check_before_upload() in setup.py.
263,122
25.08.2017 10:46:18
-7,200
6d407bc4ad8ce35bd916e6c8c22a1ccd0a6c6da0
Don't run linter on stuff under node_modules/
[ { "change_type": "MODIFY", "old_path": "utils/run_linter.sh", "new_path": "utils/run_linter.sh", "diff": "# See the License for the specific language governing permissions and\n# limitations under the License.\n-find . -name \"*.py\" | xargs pylint --rcfile utils/pylintrc;\n+find . -name \"*.py\" | ...
Python
Apache License 2.0
google/timesketch
Don't run linter on stuff under node_modules/
263,122
25.08.2017 10:46:53
-7,200
d1477d45a469e637e09bbb6aa0945cd37ba595ff
Remove "if model:" from ResourceMixin.to_json - this caused exceptions in javascript.
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -239,7 +239,6 @@ class ResourceMixin(object):\nschema = {u'meta': meta, u'objects': []}\n- if model: # why is that?\nif not model_fields:\ntry:\nmodel_fields = self.fiel...
Python
Apache License 2.0
google/timesketch
Remove "if model:" from ResourceMixin.to_json - this caused exceptions in javascript.
263,122
25.08.2017 12:51:00
-7,200
4f815760a37f732dc536dbe877f04886c63fc839
Format check_before_upload() docstring.
[ { "change_type": "MODIFY", "old_path": "setup.py", "new_path": "setup.py", "diff": "@@ -34,8 +34,12 @@ timesketch_description = (\nu'your raw data with rich annotations, comments, tags and stars.')\ndef check_before_upload():\n- \"\"\"Raise UserWarning if frontend build is not present or is not rece...
Python
Apache License 2.0
google/timesketch
Format check_before_upload() docstring.
263,121
27.08.2017 19:18:27
14,400
84b8ae299049976dc4abbed01eb89b3e1ba52c37
add support for HTTP basic authentication to the 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,12 @@ class TimesketchApi(object):\nsession: Authenticated HTTP session.\n\"\"\"\n- def __init__(self, host_uri, username...
Python
Apache License 2.0
google/timesketch
add support for HTTP basic authentication to the API client.
263,122
28.08.2017 11:13:01
-7,200
cc0975a34c8e9b1fdf1200c7491ec69bcaef7910
Fix IndexError in ResourceMixin.to_json
[ { "change_type": "MODIFY", "old_path": "setup.py", "new_path": "setup.py", "diff": "@@ -36,7 +36,8 @@ timesketch_description = (\ndef check_before_upload():\n\"\"\"Warn user if frontend build is not present or is not recent.\n- Make sure that .js and .css bundles included in the PyPI package are up ...
Python
Apache License 2.0
google/timesketch
Fix IndexError in ResourceMixin.to_json
263,122
28.08.2017 16:45:22
-7,200
895c5680afe5bca803372a679183b07752adc429
Pin python dependencies - start using pip-tools
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -4,6 +4,5 @@ python:\n# command to install dependencies\ninstall:\n- \"pip install .\"\n- - \"pip install Flask-Testing nose mock pylint coverage requests BeautifulSoup\"\n# command to run tests\nscript: nos...
Python
Apache License 2.0
google/timesketch
Pin python dependencies - start using pip-tools
263,122
29.08.2017 15:05:42
-7,200
8997d5be8d6826ed10b20e640a117aacde32b259
Workaround a bug that sometimes causes pip-sync to delete pkg_resources.
[ { "change_type": "MODIFY", "old_path": "requirements.in", "new_path": "requirements.in", "diff": "@@ -14,6 +14,7 @@ blinker\nelasticsearch\nneo4jrestclient\npython-dateutil\n+gunicorn\n# dev-requirements:\nFlask-Testing\n@@ -23,3 +24,15 @@ pylint\ncoverage\nrequests\nBeautifulSoup\n+\n+# Remove the ...
Python
Apache License 2.0
google/timesketch
Workaround a bug that sometimes causes pip-sync to delete pkg_resources.
263,122
04.09.2017 14:51:27
-7,200
ef25a6f171e846d9f19f063a201fe1c19efa5f38
Add simple navigation component in Angular 2 * Register Angular 2 component as AngularJS directive * Use "independent mode" of ngUpgrade which intends to avoid performance issues with propagating digest cycle to Angular 2 change detection: downgradeModule({..., propagateDigest: false}) * Use for AOT compilation of Angular 2 templates
[ { "change_type": "MODIFY", "old_path": "timesketch/templates/sketch/explore.html", "new_path": "timesketch/templates/sketch/explore.html", "diff": "{% extends \"base.html\" %}\n{% block navigation %}\n- <ul class=\"nav nav-tabs\">\n- <li role=\"presentation\"><a href=\"{{ url_for('sketch_views.overv...
Python
Apache License 2.0
google/timesketch
Add simple navigation component in Angular 2 (#416) * Register Angular 2 component as AngularJS directive * Use "independent mode" of ngUpgrade which intends to avoid performance issues with propagating digest cycle to Angular 2 change detection: downgradeModule({..., propagateDigest: false}) * Use @ngtools/webpack for AOT compilation of Angular 2 templates
263,122
12.09.2017 17:02:17
-7,200
4d65a7579d92871f48c4095420e8d2417fefe097
Fix non-determinism in SketchListResourceTest.
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources_test.py", "new_path": "timesketch/api/v1/resources_test.py", "diff": "@@ -44,8 +44,9 @@ class SketchListResourceTest(BaseTest):\n\"\"\"Authenticated request to get list of sketches.\"\"\"\nself.login()\nresponse = self.client.get(se...
Python
Apache License 2.0
google/timesketch
Fix non-determinism in SketchListResourceTest. (#424)
263,122
13.09.2017 08:22:27
-7,200
f43924f42645a1e5e0efcfbad7b142989f14c5e5
Add angular-specific linter.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"chart.js\": \"2.2.2\",\n\"chokidar\": \"^1.7.0\",\n\"chokidar-cli\": \"^1.2.0\",\n+ \"codelyzer\": \"^3.2.0\",\n\"css-loader\": \"^0.28.5\",\n\"d3\": \"4.2.2\",\n\"extract-text-webpack-plugin\": \"^3.0.0\",...
Python
Apache License 2.0
google/timesketch
Add angular-specific linter. (#426)
263,122
13.09.2017 10:57:37
-7,200
9441775dfcb0263e9bab34ecaa9abb83a40e4f67
Fix navigation bar broken in
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/sketch/sketch.module.ts", "new_path": "timesketch/ui/sketch/sketch.module.ts", "diff": "@@ -27,7 +27,7 @@ export const tsSketchModule = angular.module('timesketch.sketch', [])\n.directive('tsTimelinesList', tsTimelinesList)\n.directive('tsSavedVi...
Python
Apache License 2.0
google/timesketch
Fix navigation bar broken in #422 (#429)
263,122
13.09.2017 12:04:01
-7,200
32044583d92117d23c649a695602e71986493d25
Add info about running tests to developers guide.
[ { "change_type": "MODIFY", "old_path": "docker/README.md", "new_path": "docker/README.md", "diff": "@@ -13,7 +13,7 @@ cd timesketch\n```\n### Build Timesketch frontend\n-Follow steps \"Installing Node.js and Yarn\" and \"Building Timesketch frontend\" from [developers guide](../docs/Developers-Guide...
Python
Apache License 2.0
google/timesketch
Add info about running tests to developers guide. (#430)
263,122
20.09.2017 16:01:15
-7,200
f20dac6e8723fedbf62fb2e24894f0e51e5855d0
Fix Angular bootstrap broken in
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/main.ts", "new_path": "timesketch/ui/main.ts", "diff": "+import * as $ from 'jquery'\nimport angular from 'angularjs-for-webpack'\nimport {downgradeModule} from '@angular/upgrade/static'\nimport {tsAppModule, AppModule} from 'app.module'\n-angula...
Python
Apache License 2.0
google/timesketch
Fix Angular bootstrap broken in #423 (#439)
263,093
25.09.2017 15:02:43
-7,200
2cf654c2443d2f59f5196a87144b8a9716f9eeeb
align navigation menu
[ { "change_type": "MODIFY", "old_path": "timesketch/templates/base.html", "new_path": "timesketch/templates/base.html", "diff": "@@ -48,6 +48,7 @@ limitations under the License.\n{% block subheader %}\n<div id=\"subheader\">\n<div id=\"navigation\">\n+ <div class=\"container\">\n<div class=\"col-md-1...
Python
Apache License 2.0
google/timesketch
align navigation menu (#440)
263,093
28.09.2017 16:02:07
-7,200
bd3d562cb2edaa7ffdf6cfffa8c78243f413f19d
Wrap text when too long
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/css/ts.css", "new_path": "timesketch/ui/css/ts.css", "diff": "@@ -153,6 +153,12 @@ header {\ncursor: pointer;\n}\n+.event-message-wrap {\n+ white-space:nowrap;\n+ overflow:hidden;\n+ text-overflow: ellipsis;\n+}\n+\n.event-message-selected {\nbac...
Python
Apache License 2.0
google/timesketch
Wrap text when too long (#443)
263,093
03.10.2017 13:48:49
-7,200
4baf55f5142dd75c39b96484fc214893107519cc
Remove container block
[ { "change_type": "MODIFY", "old_path": "timesketch/templates/base.html", "new_path": "timesketch/templates/base.html", "diff": "@@ -48,7 +48,6 @@ limitations under the License.\n{% block subheader %}\n<div id=\"subheader\">\n<div id=\"navigation\">\n- <div class=\"container\">\n<div class=\"col-md-1...
Python
Apache License 2.0
google/timesketch
Remove container block (#445)
263,122
18.10.2017 12:33:20
-7,200
cdfc2c0a534d547c3241da41d708f93ceb66a051
Graph generation.
[ { "change_type": "MODIFY", "old_path": "timesketch/__init__.py", "new_path": "timesketch/__init__.py", "diff": "@@ -44,6 +44,10 @@ from timesketch.api.v1.resources import TimelineResource\nfrom timesketch.api.v1.resources import TimelineListResource\nfrom timesketch.api.v1.resources import SearchInd...
Python
Apache License 2.0
google/timesketch
Graph generation. (#463)
263,122
18.10.2017 12:51:50
-7,200
80ad61ccc64cb603280c4e2f63c5da8976b51f25
Adjust graph metadata.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/datastores/neo4j.py", "new_path": "timesketch/lib/datastores/neo4j.py", "diff": "@@ -19,28 +19,31 @@ from neo4jrestclient.constants import DATA_GRAPH\n# Schema for Neo4j nodes and edges\nSCHEMA = {\nu'nodes': {\n- u'Machine': {\n- u'label_templa...
Python
Apache License 2.0
google/timesketch
Adjust graph metadata. (#464)
263,122
18.10.2017 14:51:53
-7,200
c6847623d1eb4967597c31ce5d57bf5e461a6dc2
Few unrelated small fixes.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/datastores/neo4j.py", "new_path": "timesketch/lib/datastores/neo4j.py", "diff": "@@ -218,33 +218,6 @@ class CytoscapeOutputFormatter(OutputFormatterBaseClass):\n\"\"\"Initialize the Cytoscape output formatter object.\"\"\"\nsuper(CytoscapeOutput...
Python
Apache License 2.0
google/timesketch
Few unrelated small fixes. (#466)
263,122
18.10.2017 15:45:22
-7,200
d189f876aeb0967329f3211bdd0aead22f227a64
Graphs: use label templates in frontend.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/api/graph.service.ts", "new_path": "timesketch/ui/api/graph.service.ts", "diff": "@@ -5,6 +5,18 @@ import {HttpClient} from '@angular/common/http'\nimport {SKETCH_BASE_URL} from './api.service'\nimport {SketchService} from './sketch.service'\n+ex...
Python
Apache License 2.0
google/timesketch
Graphs: use label templates in frontend. (#467)
263,122
18.10.2017 18:11:43
-7,200
c6fb38109883641a05358d42355c15e4a67b6b82
Update unit tests after graph labels change.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/api/graph.service.spec.ts", "new_path": "timesketch/ui/api/graph.service.spec.ts", "diff": "@@ -34,12 +34,12 @@ describe('GraphService', () => {\nexpect(request.request.body).toEqual({\nquery: 'FAKE_QUERY', output_format: 'cytoscape',\n})\n- // t...
Python
Apache License 2.0
google/timesketch
Update unit tests after graph labels change. (#469)
263,093
19.10.2017 17:18:55
-7,200
9a9174c8d54800a967c4edc9e6198d7c67b651f4
Change default zoom levels
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/graphs/graph-view.component.ts", "new_path": "timesketch/ui/graphs/graph-view.component.ts", "diff": "@@ -29,8 +29,8 @@ export class GraphViewComponent {\n@Input() state: GraphViewState\nsettings: CytoscapeSettings = {\n// interaction options:\n-...
Python
Apache License 2.0
google/timesketch
Change default zoom levels (#473)
263,122
19.10.2017 17:41:27
-7,200
20d901a707ee80529183b4434de0e4006052caf7
[WIP] Graph creation actions.
[ { "change_type": "MODIFY", "old_path": "timesketch/__init__.py", "new_path": "timesketch/__init__.py", "diff": "@@ -160,13 +160,13 @@ def create_app(config=None):\n# Experimental API resources\napi_experimental = Api(app, prefix=u'/api/experimental')\napi_experimental.add_resource(WinLoginsResource,...
Python
Apache License 2.0
google/timesketch
[WIP] Graph creation actions. (#474)
263,122
23.10.2017 14:17:07
-7,200
43fa2011811220f77b1673980b75c9ec606547bb
Fix memory leak - destroy Cytoscape instances when not used.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/graphs/cytoscape.component.ts", "new_path": "timesketch/ui/graphs/cytoscape.component.ts", "diff": "import {\nComponent, ViewChild, ElementRef, Input, Output, OnChanges, SimpleChanges, EventEmitter,\n- AfterViewInit,\n+ AfterViewInit, OnDestroy, ...
Python
Apache License 2.0
google/timesketch
Fix memory leak - destroy Cytoscape instances when not used. (#477)
263,122
23.10.2017 15:52:02
-7,200
2ee2c78b2b2f7057fc80270810c77547ae060b8a
Move hard-coded values from graph-view.component to graph-view.data
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/api/graph.service.ts", "new_path": "timesketch/ui/api/graph.service.ts", "diff": "@@ -5,17 +5,7 @@ import {HttpClient} from '@angular/common/http'\nimport {SKETCH_BASE_URL} from './api.service'\nimport {SketchService} from './sketch.service'\n-ex...
Python
Apache License 2.0
google/timesketch
Move hard-coded values from graph-view.component to graph-view.data (#480)
263,122
23.10.2017 15:52:50
-7,200
3d91e4b1eb02441ee4326cffc2cdefac85df1b07
Move predefined queries from cypher-query.component to cypher-query.data
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/graphs/cypher-query.component.ts", "new_path": "timesketch/ui/graphs/cypher-query.component.ts", "diff": "import {Component, EventEmitter, Output} from '@angular/core'\n+import * as data from './cypher-query.data'\n+\n@Component({\nselector: 'ts-...
Python
Apache License 2.0
google/timesketch
Move predefined queries from cypher-query.component to cypher-query.data (#481)
263,122
25.10.2017 16:09:29
-7,200
626c99b03af7c502964830c1b70a8bb8e6b42058
[WIP] Show event list next to graph.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/datastores/neo4j.py", "new_path": "timesketch/lib/datastores/neo4j.py", "diff": "@@ -17,7 +17,7 @@ from neo4jrestclient.client import GraphDatabase\nfrom neo4jrestclient.constants import DATA_GRAPH\nHIDDEN_FIELDS = [\n- 'type', 'id', 'sketch_id'...
Python
Apache License 2.0
google/timesketch
[WIP] Show event list next to graph. (#483)
263,122
02.11.2017 17:42:42
-3,600
f8dbcc400168cd5cd2de3a91e1bde0e93a3ab2ba
Fix stale data being rendered in Cytoscape.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/graphs/graph-view.component.html", "new_path": "timesketch/ui/graphs/graph-view.component.html", "diff": "<ts-graphs-cytoscape\n[style.visibility]=\"state.type === 'ready' ? 'visible' : 'hidden'\"\n- [elements]=\"state.type === 'ready' ? state.el...
Python
Apache License 2.0
google/timesketch
Fix stale data being rendered in Cytoscape. (#488)
263,122
02.11.2017 17:54:26
-3,600
5a8b619e9c227fa4ef5abbafa340264a0b00d3e5
Change sidebar background.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/css/ts.scss", "new_path": "timesketch/ui/css/ts.scss", "diff": "@@ -739,7 +739,8 @@ ts-graphs-graph-view {\npadding: 10px;\noverflow-x: hidden;\noverflow-y: auto;\n- background-color: #f9f9f9;\n+ background-color: white;\n+ border-right: solid 1p...
Python
Apache License 2.0
google/timesketch
Change sidebar background. (#489)
263,093
08.11.2017 20:36:15
28,800
15819bb0800676a761786ef2a98a8cbbd0afe0af
Load jquery before angular
[ { "change_type": "MODIFY", "old_path": "webpack.config.js", "new_path": "webpack.config.js", "diff": "+const webpack = require('webpack');\nconst path = require('path')\nconst ExtractTextPlugin = require('extract-text-webpack-plugin')\nconst AotPlugin = require('@ngtools/webpack').AotPlugin\n@@ -14,...
Python
Apache License 2.0
google/timesketch
Load jquery before angular (#492)
263,093
08.12.2017 10:45:41
-3,600
a4ddaf6868ef5172a4a634dca03e331adf5e9bca
Bugfix in e2e test script
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "@@ -31,6 +31,7 @@ echo \"deb https://artifacts.elastic.co/packages/5.x/apt stable main\" | tee -a /e\nwget -O - https://debian.neo4j.org/neotechnology.gpg.key | apt-key add -\necho \"deb https...
Python
Apache License 2.0
google/timesketch
Bugfix in e2e test script
263,121
17.12.2017 13:53:29
18,000
839e74742c8cf771821aa920e5a18142eb5f3c02
Update install instructions for ES 5.x Update ES 2.x references to ES 5.x
[ { "change_type": "MODIFY", "old_path": "docs/Installation.md", "new_path": "docs/Installation.md", "diff": "@@ -16,10 +16,10 @@ Install Java\n$ sudo apt-get install openjdk-8-jre-headless\n$ sudo apt-get install apt-transport-https\n-Install the latest Elasticsearch 2.x release (5.x is not yet suppo...
Python
Apache License 2.0
google/timesketch
Update install instructions for ES 5.x (#501) Update ES 2.x references to ES 5.x
263,121
17.12.2017 14:39:29
18,000
478b6623855d471d8be930233672552dcda8e1aa
add direct link to specific event
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/explore/event.html", "new_path": "timesketch/ui/explore/event.html", "diff": "</table>\n</div>\n<div class=\"col-md-4\">\n+ <div style=\"margin-bottom:10px;\">\n+ <a style=\"color:#666\" href=\"/sketch/{{ sketchId }}/explore/?q=_id:{{event._id}}&...
Python
Apache License 2.0
google/timesketch
add direct link to specific event (#414) (#503)
263,162
20.12.2017 09:01:57
21,600
f946913e944d3646480f2d2edc14081975bd1d23
Update link to Daemonizing Celery workers
[ { "change_type": "MODIFY", "old_path": "docs/EnablePlasoUpload.md", "new_path": "docs/EnablePlasoUpload.md", "diff": "@@ -29,4 +29,4 @@ https://github.com/log2timeline/plaso/wiki/Ubuntu-Packaged-Release\n$ celery -A timesketch.lib.tasks worker --loglevel=info\n-Read on how to run the Celery worker i...
Python
Apache License 2.0
google/timesketch
Update link to Daemonizing Celery workers (#506)
263,162
04.01.2018 07:14:16
21,600
7b02980eef5ce4741ac334658303e3c9fecf5e15
Update Installation.md Correct ES install procedure to run "apt-get update" after sources config to ensure local package lists include ES 5.x.
[ { "change_type": "MODIFY", "old_path": "docs/Installation.md", "new_path": "docs/Installation.md", "diff": "@@ -20,6 +20,7 @@ Install the latest Elasticsearch 5.x release:\n$ sudo wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add -\n$ sudo echo \"deb https://artifacts.elast...
Python
Apache License 2.0
google/timesketch
Update Installation.md (#509) Correct ES install procedure to run "apt-get update" after sources config to ensure local package lists include ES 5.x.
263,162
13.01.2018 10:26:09
21,600
51efdad0a1fed74fcb2477f40a165736a0592ba2
Apply config file host+port
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/experimental/utils.py", "new_path": "timesketch/lib/experimental/utils.py", "diff": "# pylint: skip-file\nimport sys\n+from flask import current_app\n+\nfrom timesketch.lib.datastores.elastic import ElasticsearchDataStore\nfrom timesketch.models...
Python
Apache License 2.0
google/timesketch
Apply config file host+port (#519)
263,093
16.01.2018 23:42:59
-3,600
6c582c867faea07220961b82f02dfc8c513154d9
Use UgliFyJS to minimize bundle
[ { "change_type": "MODIFY", "old_path": "webpack.config.js", "new_path": "webpack.config.js", "diff": "@@ -15,6 +15,10 @@ const aotPlugin = new AotPlugin({\nentryModule: path.resolve(__dirname, 'timesketch/ui/app.module#AppModule'),\n})\n+const minimizePlugin = new webpack.optimize.UglifyJsPlugin({\n...
Python
Apache License 2.0
google/timesketch
Use UgliFyJS to minimize bundle (#526)
263,093
24.01.2018 12:40:11
-3,600
3102e5d754ff2923bf078e5c0c38c82c855b9024
Upgrade to jquery 3.0.0
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"hammerjs\": \"^2.0.8\",\n\"istanbul-instrumenter-loader\": \"^3.0.0\",\n\"jasmine\": \"^2.8.0\",\n- \"jquery\": \"2.1.0\",\n+ \"jquery\": \"3.0.0\",\n\"karma\": \"^1.7.1\",\n\"karma-coverage-istanbul-report...
Python
Apache License 2.0
google/timesketch
Upgrade to jquery 3.0.0 (#532)
263,093
26.01.2018 11:22:38
-3,600
2672ac76a40ec44acef25ee68748c168907fa4ce
Don't delete index on error
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/tasks.py", "new_path": "timesketch/lib/tasks.py", "diff": "@@ -44,10 +44,6 @@ def _set_timeline_status(index_name, status, error_msg=None):\nsearchindex = SearchIndex.query.filter_by(index_name=index_name).first()\ntimelines = Timeline.query.fil...
Python
Apache License 2.0
google/timesketch
Don't delete index on error (#533)
263,129
01.02.2018 17:58:43
-3,600
adffe577a800ee73f2ae31d3cd7d1b6b9a2d3d78
Show labels for labeled events
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/explore/event.html", "new_path": "timesketch/ui/explore/event.html", "diff": "<td class=\"event-message\" ng-class=\"{'event-message-selected': event.selected, 'event-message-starred': event.star, 'event-message-wrap': !showDetails, 'event-messag...
Python
Apache License 2.0
google/timesketch
Show labels for labeled events (#538)
263,162
06.03.2018 05:11:20
21,600
9e98dc7eb05e3031b569ec5751c93bc2f3e2ef93
Fix for CSV issue
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -902,6 +902,7 @@ class UploadFileResource(ResourceMixin, Resource):\n_filename, _extension = os.path.splitext(file_storage.filename)\nfile_extension = _extension.lstrip(...
Python
Apache License 2.0
google/timesketch
Fix for CSV issue #548 (#549)
263,173
09.03.2018 01:01:58
28,800
37ae91fcbdf357417f39c0892249eaae29e605a1
set task arguments
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -948,15 +948,18 @@ class UploadFileResource(ResourceMixin, Resource):\n# Run the task in the background\ntask = task_directory.get(file_extension)\n- task.apply_async(\n...
Python
Apache License 2.0
google/timesketch
set task arguments (#556)
263,093
17.03.2018 18:11:29
-3,600
746828e2e83970c65e82bc1376c11af9c1061322
Run celery as the current user
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "@@ -117,6 +117,8 @@ mkdir -p /var/{lib,log,run}/celery\nchown $RUN_AS_USER /var/{lib,log,run}/celery\ncp \"${VAGRANT_PATH}\"/celery.service /etc/systemd/system/\ncp \"${VAGRANT_PATH}\"/celery....
Python
Apache License 2.0
google/timesketch
Run celery as the current user (#553)
263,093
19.03.2018 14:38:50
-3,600
b54101c215f6d49bcf275f34fe6506a932bb7bd0
Update momentjs and fix deprication bug
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"karma-phantomjs-launcher\": \"^1.0.4\",\n\"karma-webpack\": \"^2.0.4\",\n\"medium-editor\": \"5.16.1\",\n- \"moment\": \"2.11.2\",\n+ \"moment\": \"2.19.3\",\n\"node-sass\": \"^4.5.3\",\n\"null-loader\": \"...
Python
Apache License 2.0
google/timesketch
Update momentjs and fix deprication bug (#561)
263,093
19.03.2018 18:54:03
-3,600
847fc1e7e3b1ba656354fecaabeb1bad055c37c7
strip domain from username if present
[ { "change_type": "MODIFY", "old_path": "timesketch/views/sketch.py", "new_path": "timesketch/views/sketch.py", "diff": "@@ -94,6 +94,7 @@ def overview(sketch_id):\nreturn redirect(url_for(u'sketch_views.overview', sketch_id=sketch.id))\n# Toggle public/private form POST\n+ # TODO: Move these resourc...
Python
Apache License 2.0
google/timesketch
strip domain from username if present (#551)
263,093
23.03.2018 13:20:49
-3,600
f96c43ea8aead33028bd1ec65e49d5964258564a
Don't build pager when there are no results
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/explore/event.directive.ts", "new_path": "timesketch/ui/explore/event.directive.ts", "diff": "@@ -167,7 +167,6 @@ export const tsEventList = ['timesketchApi', function (timesketchApi) {\nevent_count = $scope.meta.es_total_count\n$scope.showLimite...
Python
Apache License 2.0
google/timesketch
Don't build pager when there are no results (#573)
263,093
23.03.2018 13:30:00
-3,600
f6a659325807b5c3e57016cd62d814c018059658
Remove unused abstraction base class
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -613,7 +613,6 @@ class ExploreResource(ResourceMixin, Resource):\nquery_dsl,\nindices,\naggregations=None,\n- return_results=True,\nreturn_fields=None,\nenable_scroll=Fa...
Python
Apache License 2.0
google/timesketch
Remove unused abstraction base class (#574)
263,162
17.04.2018 11:47:34
25,200
e26ae3bf279593a9d895f3214faffc1ef83442e7
Update setup.py Update setup.py to find pip dependencies for > pip 10
[ { "change_type": "MODIFY", "old_path": "setup.py", "new_path": "setup.py", "diff": "@@ -24,8 +24,12 @@ import time\nfrom setuptools import find_packages\nfrom setuptools import setup\n-from pip.req import parse_requirements\n+try: # for pip >= 10\n+ from pip._internal.download import PipSession\n+ f...
Python
Apache License 2.0
google/timesketch
Update setup.py (#583) Update setup.py to find pip dependencies for > pip 10
263,162
29.04.2018 03:29:39
18,000
655dadb80df2f1dab46cf335e02f5cd0bf5bb561
Update bootstrap.sh Don't trample debian pip.
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "@@ -52,7 +52,7 @@ apt-get install -y \\\npython-pip python-dev libffi-dev redis-server python-plaso plaso-tools jq\n# Install python dependencies\n-pip install --upgrade pip\n+# pip -v install...
Python
Apache License 2.0
google/timesketch
Update bootstrap.sh (#588) Don't trample debian pip.
263,093
04.05.2018 15:17:27
-7,200
aafd8468970abd2779576c5a20a7a3ff48866619
Enable upload by default when using Vagrant
[ { "change_type": "MODIFY", "old_path": "vagrant/bootstrap.sh", "new_path": "vagrant/bootstrap.sh", "diff": "@@ -93,16 +93,16 @@ chown \"${RUN_AS_USER}\" /var/lib/timesketch\ncp \"${TIMESKETCH_PATH}\"/timesketch.conf /etc/\n# Set session key for Timesketch\n-sed s/\"SECRET_KEY = u'<KEY_GOES_HERE>'\"/...
Python
Apache License 2.0
google/timesketch
Enable upload by default when using Vagrant (#593)
263,093
04.05.2018 16:10:32
-7,200
a43ddaf23c543b79732d531d90ebda35aeae0243
Consistent null state
[ { "change_type": "MODIFY", "old_path": "timesketch/templates/sketch/explore.html", "new_path": "timesketch/templates/sketch/explore.html", "diff": "<div class=\"card\">\n<div class=\"text-center\" style=\"padding:100px;\">\n<h3 style=\"color:#777\"><i class=\"fa fa-meh-o\"></i> No data to analyze</h...
Python
Apache License 2.0
google/timesketch
Consistent null state (#594)
263,096
09.05.2018 21:38:36
-7,200
1cb24e359fc140fef34ff78ec2cb59d71c4aa237
Fixed a typo Small issue that I stumbled across
[ { "change_type": "MODIFY", "old_path": "docs/Community-Guide.md", "new_path": "docs/Community-Guide.md", "diff": "@@ -8,7 +8,7 @@ Use your favorite IRC client or try the [Freenode web based IRC client](http://w\n### Slack community\nJoin the [Timesketch Slack community](https://timesketch.slack.com/...
Python
Apache License 2.0
google/timesketch
Fixed a typo (#597) Small issue that I stumbled across
263,096
15.05.2018 09:49:20
-7,200
a293c33763cd65819665738ce1fc71fabbd8d814
User guide first version * Create Users-Guide.md * tsctl started to cover tsctl * added an index table, but needs a lot more love . * Update Users-Guide.md * Update Users-Guide.md * s/comand/command
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Users-Guide.md", "diff": "+## Table of Contents\n+1. [Demo](#demo)\n+2. [tsctl](#tsctl)\n+ - [Start timesketch](#start-timesketch)\n+ - [User management](#user-management)\n+ - [Adding users](#adding-users)\n+ - [Removing users](#removing-u...
Python
Apache License 2.0
google/timesketch
User guide first version (#599) * Create Users-Guide.md * tsctl started to cover tsctl * added an index table, but needs a lot more love . * Update Users-Guide.md * Update Users-Guide.md * s/comand/command
263,093
16.05.2018 22:29:05
-7,200
33c98f4c9592c812901d28c257ff1cca672c64de
Add MICROSECONDS_PER_SECOND to definitions
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/definitions.py", "new_path": "timesketch/lib/definitions.py", "diff": "@@ -21,3 +21,6 @@ HTTP_STATUS_CODE_BAD_REQUEST = 400\nHTTP_STATUS_CODE_UNAUTHORIZED = 401\nHTTP_STATUS_CODE_FORBIDDEN = 403\nHTTP_STATUS_CODE_NOT_FOUND = 404\n+\n+# Time and ...
Python
Apache License 2.0
google/timesketch
Add MICROSECONDS_PER_SECOND to definitions (#606)
263,096
17.05.2018 16:07:35
-7,200
0801afe65d300fa7c42bc673d0a2b67de749f339
Adding the users guide to README.md
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -20,6 +20,10 @@ Timesketch is an open source tool for collaborative forensic timeline analysis.\n* [Create timeline from Plaso file](docs/CreateTimelineFromPlaso.md)\n* [Enable Plaso upload via HTTP](docs/Enable...
Python
Apache License 2.0
google/timesketch
Adding the users guide to README.md (#611)
263,142
18.05.2018 15:53:15
-28,800
9e61fbecfe3e9bea3de7b8d740dc0fadee7c67a6
clean code. delete unused comma
[ { "change_type": "MODIFY", "old_path": "timesketch.conf", "new_path": "timesketch.conf", "diff": "@@ -77,7 +77,7 @@ UPLOAD_FOLDER = u'/tmp'\n# Celery broker configuration. You need to change ip/port to where your Redis\n# server is running.\n-CELERY_BROKER_URL = 'redis://127.0.0.1:6379',\n+CELERY_BR...
Python
Apache License 2.0
google/timesketch
clean code. delete unused comma (#610)
263,093
08.06.2018 16:09:00
-7,200
1b54c9321b4c22ba54b085a47cd0c3cad432222e
Rename cypher lib dir
[ { "change_type": "MODIFY", "old_path": "timesketch/api/v1/resources.py", "new_path": "timesketch/api/v1/resources.py", "diff": "@@ -73,7 +73,7 @@ from timesketch.lib.forms import StoryForm\nfrom timesketch.lib.forms import GraphExploreForm\nfrom timesketch.lib.forms import SearchIndexForm\nfrom time...
Python
Apache License 2.0
google/timesketch
Rename cypher lib dir (#613)
263,093
14.08.2018 10:54:55
-7,200
a8fda77f5d059d7cd944a369d0829ab71722a173
Update event-add.html
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/explore/event-add.html", "new_path": "timesketch/ui/explore/event-add.html", "diff": "<div class=\"col-md-6\">\n<span class=\"form-group\">\n<label for=\"eventTimestampInput\">Timestamp: </label>\n- <input class=\"form-control\" id=\"eventTimesta...
Python
Apache License 2.0
google/timesketch
Update event-add.html (#636)
263,093
25.09.2018 22:55:07
-7,200
4ac85161a46fd0e533f26d11f77055d5c4ab6976
Update views-list.html Small bug that showed the template list twice.
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/sketch/views-list.html", "new_path": "timesketch/ui/sketch/views-list.html", "diff": "<ul class=\"content-list\" ng-hide=\"!savedViews.length\">\n- <ts-search-template-list sketch-id=\"sketchId\"></ts-search-template-list>\n<li class=\"content-it...
Python
Apache License 2.0
google/timesketch
Update views-list.html Small bug that showed the template list twice.
263,173
02.10.2018 06:11:29
25,200
cef47d78cadf5c278d7dc2202ff15be0a0546a26
normalize datetime and timestamp from csv file import.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/utils.py", "new_path": "timesketch/lib/utils.py", "diff": "@@ -59,11 +59,15 @@ def read_and_validate_csv(path, delimiter):\nraise RuntimeError(\nu'Missing fields in CSV header: {0:s}'.format(missing_fields))\nfor row in reader:\n- if u'timestamp...
Python
Apache License 2.0
google/timesketch
normalize datetime and timestamp from csv file import. (#661)
263,093
03.10.2018 11:15:45
-7,200
f406bad63675f5bbb4adedbc7b94587929b895eb
Close db session
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/datastores/elastic.py", "new_path": "timesketch/lib/datastores/elastic.py", "diff": "@@ -29,7 +29,7 @@ from timesketch.lib.definitions import HTTP_STATUS_CODE_NOT_FOUND\n# Setup logging\nes_logger = logging.getLogger(u'elasticsearch')\nes_logger...
Python
Apache License 2.0
google/timesketch
Close db session (#667)
263,096
05.11.2018 12:04:14
-3,600
80a94251d9fa0c5f6cd2aca4eeecb58c494b6d2a
Add comment_event and label_event to the client I found it way easier to use comment_event and label_event than the current available version of label_events.
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "@@ -460,6 +460,45 @@ class Sketch(BaseResource):\nresponse = self.api.session.post(resource_url, json=form_data)\nreturn response.json...
Python
Apache License 2.0
google/timesketch
Add comment_event and label_event to the client I found it way easier to use comment_event and label_event than the current available version of label_events.
263,173
07.11.2018 01:19:02
28,800
5a1a42bafce80775f5eb7fdedd9a869923eecb8e
add _index to export
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/definitions.py", "new_path": "timesketch/lib/definitions.py", "diff": "@@ -30,6 +30,7 @@ DEFAULT_FIELDS = [\nu'datetime',\nu'timestamp',\nu'timestamp_desc',\n+ u'_index',\nu'message']\nDEFAULT_SOURCE_FIELDS = DEFAULT_FIELDS + [\nu'timesketch_lab...
Python
Apache License 2.0
google/timesketch
add _index to export (#699)
263,096
16.11.2018 15:57:06
-3,600
297064f3e32e3db62a14a9da1f30cdb5ccd8712b
The former wiki link no longer exists Thus redirecting the user to the docs
[ { "change_type": "MODIFY", "old_path": "timesketch/templates/sketch/timelines.html", "new_path": "timesketch/templates/sketch/timelines.html", "diff": "</p>\n<ts-core-upload sketch-id=\"{{ sketch.id }}\" visible=\"true\" btn-text=\"'Select file'\"></ts-core-upload>\n<br>\n- <p>If you are uploading a...
Python
Apache License 2.0
google/timesketch
The former wiki link no longer exists (#703) Thus redirecting the user to the docs
263,093
23.11.2018 15:57:59
-3,600
897ed1dd6d2b680049c0b1779457d7d88ad69767
Development environment with Docker
[ { "change_type": "ADD", "old_path": null, "new_path": "docker/Dockerfile-dev", "diff": "+# Use the official Docker Hub Ubuntu 14.04 base image\n+FROM ubuntu:16.04\n+\n+# Copy the entrypoint script into the container\n+COPY docker/timesketch-dev-entrypoint.sh /docker-entrypoint.sh\n+RUN chmod a+x /do...
Python
Apache License 2.0
google/timesketch
Development environment with Docker (#718)
263,093
28.11.2018 11:43:38
-3,600
8594e6ab4733abc8ed2aa4cb4200ff0502735535
Enable debug and analyzers
[ { "change_type": "MODIFY", "old_path": "docker/timesketch-dev-entrypoint.sh", "new_path": "docker/timesketch-dev-entrypoint.sh", "diff": "@@ -80,9 +80,19 @@ if [ \"$1\" = 'timesketch' ]; then\necho \"Please pass values for the NEO4J_ADDRESS and NEO4J_PORT environment variables if you want graph supp...
Python
Apache License 2.0
google/timesketch
Enable debug and analyzers (#722)
263,173
04.12.2018 13:29:08
28,800
240cc0dc49aa39f8b0d347ba24f1e181439459a4
set max events size to export
[ { "change_type": "MODIFY", "old_path": "timesketch/views/sketch.py", "new_path": "timesketch/views/sketch.py", "diff": "@@ -451,6 +451,7 @@ def export(sketch_id):\n# Export more than the 500 first results.\nmax_events_to_fetch = 10000\nquery_filter[u'limit'] = max_events_to_fetch\n+ query_filter[u's...
Python
Apache License 2.0
google/timesketch
set max events size to export (#723)
263,096
05.12.2018 10:08:10
-3,600
5ef9ae355c2bd742315ea154178f76082b6bde3b
Add Event_to_sketch in api * First shot on Not yet ready to merge * Update client.py * makes sense
[ { "change_type": "MODIFY", "old_path": "api_client/python/timesketch_api_client/client.py", "new_path": "api_client/python/timesketch_api_client/client.py", "diff": "@@ -512,6 +512,27 @@ class Sketch(BaseResource):\n}\nreturn self.explore(query_dsl=json.dumps({'query': query}))\n+ def add_event(self...
Python
Apache License 2.0
google/timesketch
Add Event_to_sketch in api (#692) * First shot on https://github.com/google/timesketch/issues/691 Not yet ready to merge * Update client.py * makes sense Co-Authored-By: deralexxx <deralexxx@users.noreply.github.com>
263,093
07.12.2018 17:57:02
-3,600
5c963ad700456368a8dadfbefd65f829cf7e4374
Move emojis to the left
[ { "change_type": "MODIFY", "old_path": "timesketch/ui/explore/event.html", "new_path": "timesketch/ui/explore/event.html", "diff": "<span style=\"margin-right:2px;\" ng-if=\"::event._source.label\" ng-repeat=\"label in ::event._source.label\">\n<span ng-if=\"::label.indexOf('__') != 0\" class=\"labe...
Python
Apache License 2.0
google/timesketch
Move emojis to the left (#730)
263,093
10.12.2018 15:04:34
-3,600
6960eddad625a6732d843a11320a10e08dcb0a86
Don't remove session when engine is created
[ { "change_type": "MODIFY", "old_path": "timesketch/models/__init__.py", "new_path": "timesketch/models/__init__.py", "diff": "@@ -42,7 +42,6 @@ def configure_engine(url):\n# TODO: Can we wrap this in a class?\nglobal engine, session_maker, db_session\nengine = create_engine(url)\n- db_session.remove...
Python
Apache License 2.0
google/timesketch
Don't remove session when engine is created (#731)
263,093
13.12.2018 18:45:03
-3,600
b35f814a5f90d5142ee86d1878e5fe11320350f1
Add method for adding human readable message to events
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/interface.py", "new_path": "timesketch/lib/analyzers/interface.py", "diff": "@@ -152,6 +152,15 @@ class Event(object):\ndb_session.commit()\nself.add_label(label='__ts_comment')\n+ def set_human_readable(self, human_readable):\n+ \"\"\...
Python
Apache License 2.0
google/timesketch
Add method for adding human readable message to events (#732)
263,093
17.12.2018 12:59:16
-3,600
1ca337c3a02acbff1d7297de619e9a6360a990fd
Add definition file for emojis and adjust analyzers
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/browser_search.py", "new_path": "timesketch/lib/analyzers/browser_search.py", "diff": "@@ -13,9 +13,9 @@ else:\nfrom urllib import parse as urlparse # pylint: disable=no-name-in-module\nBYTES_TYPE = bytes\n-\nfrom timesketch.lib.analyz...
Python
Apache License 2.0
google/timesketch
Add definition file for emojis and adjust analyzers (#742)
263,133
17.12.2018 13:10:41
0
8f5044016ae344410b32ba091765b1894546a240
Added more logic to set_human_readable.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/interface.py", "new_path": "timesketch/lib/analyzers/interface.py", "diff": "@@ -152,13 +152,36 @@ class Event(object):\ndb_session.commit()\nself.add_label(label='__ts_comment')\n- def set_human_readable(self, human_readable):\n+ def ...
Python
Apache License 2.0
google/timesketch
Added more logic to set_human_readable. (#744)
263,105
26.12.2018 03:37:42
28,800
0713e24e0c76e715db3c9c71afa4ca57755174a3
Update Installation.md Missing sudo for "apt-key add -" and "tee -a /etc/apt/sources.list.d/elastic-6.x.list"
[ { "change_type": "MODIFY", "old_path": "docs/Installation.md", "new_path": "docs/Installation.md", "diff": "@@ -18,8 +18,8 @@ Install Java\nInstall the latest Elasticsearch 6.x release:\n- $ sudo wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add -\n- $ sudo echo \"deb https...
Python
Apache License 2.0
google/timesketch
Update Installation.md (#759) Missing sudo for "apt-key add -" and "tee -a /etc/apt/sources.list.d/elastic-6.x.list"
263,093
26.12.2018 12:38:22
-3,600
3b475e13677198a12baa7f02938fde26f16f92f1
Only create view if there are any hits
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/browser_search.py", "new_path": "timesketch/lib/analyzers/browser_search.py", "diff": "@@ -209,6 +209,7 @@ class BrowserSearchSketchPlugin(interface.BaseSketchAnalyzer):\n# We break at the first hit of a successful search engine.\nbrea...
Python
Apache License 2.0
google/timesketch
Only create view if there are any hits (#756)
263,093
26.12.2018 12:38:54
-3,600
337ad7f3be04faf3980ca75781eb709b99d63cd2
Upgrade urllib3 due to security fix
[ { "change_type": "MODIFY", "old_path": "requirements.in", "new_path": "requirements.in", "diff": "@@ -22,6 +22,7 @@ PyJWT\nrequests>=2.20.0\ncryptography>=2.3\nPyYAML\n+urllib3>=1.23\n# dev-requirements:\nFlask-Testing\n" }, { "change_type": "MODIFY", "old_path": "requirements.txt", ...
Python
Apache License 2.0
google/timesketch
Upgrade urllib3 due to security fix (#752)
263,093
03.01.2019 11:55:04
-3,600
03e6c51db2683de909664def5049dd0560b43b8c
Only create one view
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/browser_search.py", "new_path": "timesketch/lib/analyzers/browser_search.py", "diff": "@@ -212,7 +212,8 @@ class BrowserSearchSketchPlugin(interface.BaseSketchAnalyzer):\nif simple_counter > 0:\nself.sketch.add_view(\n- 'Browser Search...
Python
Apache License 2.0
google/timesketch
Only create one view (#765)
263,093
04.01.2019 14:03:44
-3,600
405d158b61f083ca994603b53da6477ec0541edd
Simple domain analyzer * Move some domain analysis to it's own analyzer * Remove unused var * Don't run celery task when testing Refactor phishy domains and break out common functions. * Remove unecessary return fields * Alpha order for emojis
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/analyzers/__init__.py", "new_path": "timesketch/lib/analyzers/__init__.py", "diff": "# Register all analyzers here by importing them.\nfrom timesketch.lib.analyzers import browser_search\n+from timesketch.lib.analyzers import domain\nfrom timesk...
Python
Apache License 2.0
google/timesketch
Simple domain analyzer (#766) * Move some domain analysis to it's own analyzer * Remove unused var * Don't run celery task when testing Refactor phishy domains and break out common functions. * Remove unecessary return fields * Alpha order for emojis
263,093
10.01.2019 15:08:07
-3,600
de785d9775229b86dc451463189ceb98ab9a432d
Don't use SERVER_NAME, and construct URLs safely
[ { "change_type": "MODIFY", "old_path": "timesketch.conf", "new_path": "timesketch.conf", "diff": "@@ -190,6 +190,5 @@ EMAIL_SMTP_SERVER = 'localhost'\n# Only send emails to these users.\nEMAIL_USER_WHITELIST = []\n-# Configuration needed for Flask to construct URLs for resources. Only activate\n-# t...
Python
Apache License 2.0
google/timesketch
Don't use SERVER_NAME, and construct URLs safely (#776)
263,093
23.01.2019 17:25:49
-3,600
5d740c6a2f7117d15c2b8f280ad818e70f225ac3
Expose volume to container
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "@@ -24,6 +24,8 @@ services:\n- TIMESKETCH_USER=${TIMESKETCH_USER}\n- TIMESKETCH_PASSWORD=${TIMESKETCH_PASSWORD}\nrestart: always\n+ volumes:\n+ - ../:/usr/local/src/timesketch/\nelas...
Python
Apache License 2.0
google/timesketch
Expose volume to container (#804)
263,133
29.01.2019 17:54:45
0
9b7e0fd7d93155fddeb66988b4f8cbe3564b26db
Micro change.
[ { "change_type": "MODIFY", "old_path": "timesketch/lib/datastores/elastic.py", "new_path": "timesketch/lib/datastores/elastic.py", "diff": "@@ -519,7 +519,7 @@ class ElasticsearchDataStore(object):\n# Make sure we have decoded strings in the event dict.\nevent = {\nk.decode(u'utf8'): (v.decode(u'utf...
Python
Apache License 2.0
google/timesketch
Micro change. (#808)
263,102
06.02.2019 03:02:41
28,800
e7b1b23fd8a85f1bbed7e9bfce9a4af374f0949e
Update docker-entrypoint.sh Fix the password pass error which was previously seen and reported in an older issue "0859a73cd1731904f2b7575b17f47cd74a988c86"
[ { "change_type": "MODIFY", "old_path": "docker/docker-entrypoint.sh", "new_path": "docker/docker-entrypoint.sh", "diff": "@@ -48,11 +48,11 @@ if [ \"$1\" = 'timesketch' ]; then\nfi\n# Set up web credentials\n- if [ -z ${TIMESKETCH_USER+x} ]; then\n+ if [ -z ${TIMESKETCH_USER:+x} ]; then\nTIMESKETCH_...
Python
Apache License 2.0
google/timesketch
Update docker-entrypoint.sh (#817) Fix the password pass error which was previously seen and reported in an older issue "0859a73cd1731904f2b7575b17f47cd74a988c86"
263,093
07.02.2019 14:48:12
-3,600
486a7e722df0725fdddc8655b6db7dfe0e2560a7
Remove the last u''
[ { "change_type": "MODIFY", "old_path": "timesketch.conf", "new_path": "timesketch.conf", "diff": "@@ -15,7 +15,7 @@ DEBUG = False\n# This should be a unique random string. Don't share this with anyone.\n# To generate a key, you can for example use openssl:\n# $ openssl rand -base64 32\n-SECRET_KEY =...
Python
Apache License 2.0
google/timesketch
Remove the last u'' (#827)
263,093
07.02.2019 15:24:16
-3,600
d9519081ac28f515890cdd61602e64325fa2cd10
Update to Ubuntu 18.04 for both Docker and Vagrant
[ { "change_type": "MODIFY", "old_path": "docker/Dockerfile", "new_path": "docker/Dockerfile", "diff": "# Use the official Docker Hub Ubuntu 14.04 base image\n-FROM ubuntu:16.04\n+FROM ubuntu:18.04\n# Update the base image\nRUN apt-get update && apt-get -y upgrade && apt-get -y dist-upgrade\n" }, ...
Python
Apache License 2.0
google/timesketch
Update to Ubuntu 18.04 for both Docker and Vagrant (#825)