Skip to content

Instantly share code, notes, and snippets.

@thesamesam
thesamesam / xz-backdoor.md
Last active July 21, 2024 05:59
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

@fcfort
fcfort / NYSaves.gs
Last active February 28, 2021 02:03
Custom function for Google Spreadsheets App Scripts for querying NYSaves.org prices
var _ = Underscore.load();
var NYSaves = {};
NYSaves.currentPriceUrlBase = 'https://www.nysaves.org/nytpl/fund/details.cs?fundId=';
NYSaves.historyUrl = 'https://www.nysaves.org/nytpl/fund/priceHistorySearch.cs';
/**
@conorbuck
conorbuck / angle-between-points.js
Created May 5, 2012 22:51
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};