Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Keeping JavaScript safe
Search
C J Silverio
October 04, 2017
Programming
490
3
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Keeping JavaScript safe
Security & the npm registry. Presented at Node Interactive 2017 in Vancouver.
C J Silverio
October 04, 2017
More Decks by C J Silverio
See All by C J Silverio
The economics of package management
ceejbot
4
1.6k
The future of (javascript) modules (in node)
ceejbot
1
310
ceej's how to solve it
ceejbot
6
780
work-life balance at npm
ceejbot
5
810
hash functions and you!
ceejbot
2
380
The accidental noder
ceejbot
2
180
Design Patterns & Modularity in the npm Registry
ceejbot
3
210
Monitoring on a budget
ceejbot
2
310
Cheating Gall's Law: MediterraneaJS edition
ceejbot
4
360
Other Decks in Programming
See All in Programming
Snowflake Summitでの新機能 CoCo / CoWork / snowflake-summit-2026-overall-what-new-coco
tatsuhiro
1
140
その問い、本当に正しいですか?AI時代のエンジニアに必要な哲学と認知科学 / ai-philosophy-cognitive-science
minodriven
9
5.4k
Oxcを導入して開発体験が向上した話
yug1224
4
320
AI 時代のソフトウェア設計の学び方
masuda220
PRO
29
12k
Contextとはなにか
chiroruxx
1
330
ローカルLLMでどこまでコードが書けるか -拡張版 / How much code can be written on a local LLM Extended
kishida
11
4.2k
Spec Driven Development | AI Summit Lisbon
danielsogl
PRO
0
190
LLM本来の能力を解き放つサンドボックス技術とAI民主化への適用
yukukotani
3
4.1k
気づいたらRubyで100作品 ー クリエイティブコーディングが生活の一部になるまで / 100 Ruby Sketches Later: How Creative Coding Became Part of My Life
chobishiba
3
580
New "Type" system on PicoRuby
pocke
1
930
Signal Forms: Beyond the Basics @ngBaguette 2026 in Paris
manfredsteyer
PRO
0
250
正しくソフトウェアを作る、前提を疑うための認知の視点 / doubt-premise
minodriven
21
6.7k
Featured
See All Featured
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
200
The SEO Collaboration Effect
kristinabergwall1
1
490
The Curious Case for Waylosing
cassininazir
1
390
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Design in an AI World
tapps
1
240
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.2k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Faster Mobile Websites
deanohume
310
31k
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
860
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
37
6.5k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
71
40k
Technical Leadership for Architectural Decision Making
baasie
3
410
Transcript
keeping javascript safe
keeping javascript safe security & the npm registry
C J Silverio CTO @ npm, @ceejbot
using node since 2011 node has grown up!
running npm's registry since 2014 npm has grown up too!
the story of the npm registry mirrors the story of
node
npm is infrastructure for millions of developers
npm dependably serves node packages 24/7 around the world
Fortune 100 companies depend on npm & node
3 billion downloads/week 9 million users 156K package authors (1.7%)
npm has as many users as the New York City
it didn't start that way
in 2009, node & npm's users knew each other by
name
the npm registry is now too large to depend on
community policing
but you need that policing
you rely on the packages you install
questions you ask 1. Is the registry secure? 2. Does
this package have vulnerabilities? 3. Is this package malware? 4. Who published this package?
1. Is the registry secure?
What does secure mean? registry systems can't be broken into
data can't be tampered with
we don't try to do this alone ongoing contract with
^Li!
this guy, Adam Baldwin (he'll come up again) & his
colleagues
periodic pen testing ongoing code reviews
good security practices are on-going work
2. Does this package have vulnerabilities?
our friends at ^Li! again as the Node Security Platform
NSP reviews popular packages, reports vulnerabilities, & handles reports
h!ps://nodesecurity.io
early access NSP data is integrated into npm enterprise
newsflash! npm is a company that sells services!
npm enterprise is a registry inside your firewall
NSP keeps us informed we keep them informed in turn
3. Is this package malware?
malware doesn't advertise
malware comes in flavors: spam & poison
spammers found the registry in 2016
two kinds of spam: spam content & js spam support
npm + cdns built on top == trivial hosting for
GA clickjacking
now using machine learning to catch spam thanks to the
Smyte service
spam speedbumps: validated email to publish disallow throwaway addresses
we seem to have made a dent but this war
will never end
poison-flavored malware: typosqua!ing
publishing packages with names that are very close to real
names
Historically this was competitive: authors would try to steal traffic
to pump their download numbers
somebody typosqua!ed moment.js with another date-forma!ing package
also accidental JSONStream vs jsonstream
recently it's been nefarious: typosquat of cross-env as crossenv with
a env var stealer
typosquat of bluebird wrapping bluebird with a cryptocoin miner
Adam Baldwin typosqua!ed coffee-script early on
it took days for the community to notice
now it takes weeks if the community notices at all
as spiderman said, with great popularity comes great annoyance
automated similarity checker
None
this war will never end so long as there is
$ to be made
4. Who published this package?
What happens if somebody steals JDD's auth token & posts
malware as lodash?
Well, that's scary. npm auth tokens are sensitive.
new! tools in the npm cli to help you control
auth tokens
new command: npm token control your auth tokens
npm token create --readonly
read-only auth tokens the principle of least power
give your CI system a read-only token
npm token create --cidr=[10.0.0.1/32]
CIDR-bound tokens bind tokens to IP ranges
further limit your tokens by controlling where they can be
used
npm token list npm token delete <tokenKey>
None
new command: npm profile
set your profile data like your email or ...
None
well that's boring
None
that's not boring
npm profile enable-2fa two-factor authentication is here
require regular password plus a one-time password
npm profile enable-2fa auth-only
auth-only: any time you log in or manipulate tokens
npm profile enable-2fa auth-and-writes
None
writes: your package publications pass the --otp flag
npm publish --otp=123456 pass it on the command line!
use a TOTP code generation app Google Authenticator, Authy, etc
npm install -g npm@next try it now!
code: github.com/npm/npm-profile api docs: github.com/npm/registry
one more thing
coming a!raction! protect a package with 2FA
require an OTP any time that package is published by
anybody
protect packages with many maintainers next cli minor release 5.6.0
coming soon! 2fa for your npm organization
coming soon! npm ci 3x speed for your CI installs
but what about package signing? we think we've figured out
how
coming soon! even more
questions? help se!ing this up? come see me & puppies
at the npm booth
npm wants you to develop in confidence
npm loves you