Skip to content

Instantly share code, notes, and snippets.

View zerodogg's full-sized avatar

Eskild Hustvedt zerodogg

View GitHub Profile
@thesamesam
thesamesam / xz-backdoor.md
Last active May 4, 2024 09:26
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Background

On March 29th, 2024, a backdoor was discovered in xz-utils, a suite of software that

@rsommer
rsommer / VimWiki autocommit
Created January 15, 2015 08:03
vimrc-snippet to commit vimwiki-files after every write
" Wiki auto commit
" requires vim-python and python-git
function! CommitFile()
python << EOF
import vim, git
curfile = vim.current.buffer.name
if curfile:
try:
repo = git.Repo(curfile)
repo.git.add(curfile)