All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

YC Companies Scrape GitHub Activity Data and Send Spam Emails to Users

By

miki123211

3mo ago· 14 min readenNews

Summary

The article discusses how Y Combinator companies are scraping GitHub activity data and using it to send spam emails to users. It explains the technical challenge of removing or changing email addresses from Git commits due to the cryptographic hash-based nature of Git version control. Changing any part of a commit (including email addresses) alters its hash, which cascades through all subsequent commits, making repositories incompatible with the original versions. The article highlights privacy concerns about companies mining public GitHub data for marketing purposes.

Key quotes

· 4 pulled
Git commits are identified by a hash of their entire contents
If the email address in even one commit is changed or removed, that changes its hash, which in turn requires you to update its children, changing their hashes etc.
By default, git will refuse to pull from such an updated repository, as commits are considered immutable once pushed.
YC companies scrape GitHub activity, send spam emails to users
Snippet from the RSS feed
Git commits are identified by a hash of their entire contents[1]. The way hashes work, if you change even one bit, the hash becomes completely different. Every commit contains the email address of the committer and the hash of the parent commit. If the em

You might also wanna read