{"id":19890280,"url":"https://github.com/jaegeral/redline2timesketch","last_synced_at":"2026-04-15T00:31:42.973Z","repository":{"id":71057036,"uuid":"133356394","full_name":"jaegeral/redline2timesketch","owner":"jaegeral","description":"Parses the Redline CSV output in a csv that is importable by timesketch","archived":false,"fork":false,"pushed_at":"2018-05-17T13:05:50.000Z","size":98,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T05:15:01.247Z","etag":null,"topics":["blockchain","cyber","fireeye","helper","mandiant","python","redline","security","timesketch","tool"],"latest_commit_sha":null,"homepage":"https://alexanderjaeger.de","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaegeral.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-14T12:20:34.000Z","updated_at":"2021-05-23T08:04:04.000Z","dependencies_parsed_at":"2023-02-22T20:45:55.661Z","dependency_job_id":null,"html_url":"https://github.com/jaegeral/redline2timesketch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaegeral/redline2timesketch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaegeral%2Fredline2timesketch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaegeral%2Fredline2timesketch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaegeral%2Fredline2timesketch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaegeral%2Fredline2timesketch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaegeral","download_url":"https://codeload.github.com/jaegeral/redline2timesketch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaegeral%2Fredline2timesketch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31821432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","cyber","fireeye","helper","mandiant","python","redline","security","timesketch","tool"],"created_at":"2024-11-12T18:13:47.197Z","updated_at":"2026-04-15T00:31:42.951Z","avatar_url":"https://github.com/jaegeral.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# redline2timesketch\nParses the Redline CSV output in a csv that is importable by timesketch\nThis is a POC, it is not made to be used in a productive envirenment.\n\nBugs are expected. This is not meant to be a best practice project how to create python projects but just get things done.\n\nThe end goal is to migrate that to timesketch core as a import module similar to csv and json.\n\n## timesketch\n\nTo learn about timesketch, visit: [timesketch.org](http://timesketch.org/)\n\n# redline headers\n```csv\nAlert,Tag,Timestamp,Field,Summary\n```\n\n# timesketch headers\n\n```csv\nmessage,timestamp,datetime,timestamp_desc,extra_field_1,extra_field_2\n```\n\n# Mapping\n\n```\nAlert --\u003e Alert (extra field)\nTag --\u003e Tag (extra field)\nTimestamp --\u003e timestamp\nTimestamp --\u003e datetime\nField --\u003e timestamp_desc\n\n```\n\n# Usage\n\nInvestigate your Host using redline, tag entries or set your filter to trim your results.\nOnce you are finished, export your results as a csv (make sure to do it from the timeline view, not the tags and comments view)\n\nThe result will be an results.csv\n\nNow run redline2timesketch:\n```\npython2 redline2timesketch.py samples/redline_export.csv.test /timesketch/vagrant/output.csv\nFiles,1441282883000,2015-09-03T14:21:23+00:00,File/Modified\n\nFiles,1441282883000,2015-09-03T14:21:23+00:00,File/Accessed\n\nFiles,1441282988000,2015-09-03T14:23:08+00:00,File/Changed\n\nFiles,1414545576000,2014-10-29T02:19:36+00:00,File/PEInfo/PETimestamp\n\nFiles,1418893850000,2014-12-18T10:10:50+00:00,File/Created\n\nFiles,1418893850000,2014-12-18T10:10:50+00:00,File/Modified\n\nFiles,1441227082000,2015-09-02T22:51:22+00:00,File/Accessed\n\nFiles,1441227102000,2015-09-02T22:51:42+00:00,File/Changed\n\nFiles,1368635904000,2013-05-15T18:38:24+00:00,File/PEInfo/PETimestamp\n\n```\n\nThe output.csv is ready to be imported to timesketch.\n\nImport it via:\n\n```\nvagrant@timesketch-dev:/vagrant$ tsctl csv2ts -n test -f output.csv\n\nTotal events: 9\n```\nThat is the result:\n\n![Screenshot](images/screenshot.png)\n\n\n# Other tools\n\nhttps://github.com/bromiley/redsketch\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaegeral%2Fredline2timesketch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaegeral%2Fredline2timesketch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaegeral%2Fredline2timesketch/lists"}