the title(); https - 2016 wilmington, nc wordcamp · the_content(); are you ready to reroute the...

42
the_title(); HTTPS EVERYWHERE @tiffanyakuchta

Upload: others

Post on 06-Jun-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

the_title();

HTTPSEVERYWHERE

@tiffanyakuchta

Page 2: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

I’M TIFFANY @tiffanyakuchta

@tiffanyakuchta

Page 3: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

Page 4: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

the_content();

Are you ready to reroute the encryption?

@tiffanyakuchta

WARNING: There will be several references to popular culture from the 80s, 90s and early 2000s in this talk...also dragons. I apologize in advance for the self-indulgence.

Page 5: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

These developers are using stand up desks in a coworking space.

Page 6: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

WHY YOU SHOULD CARE

Security

Future facing

And, of course...

@tiffanyakuchta

Page 7: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

Page 8: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

Page 9: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

REASONS WE DIDN’T JUST ALWAYS SSL

Speed

Complexity

IPv4 & lack of SNI support

Human error

@tiffanyakuchta

Page 10: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

“Please turn your monitor in a direction where only you can see it.”

@tiffanyakuchta

Page 11: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

NEW WORDPRESS PROJECTS

Implement a dev strategy that accounts for SSL.

Be mindful of SSL in code and content.

@tiffanyakuchta

Page 12: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

EXISTING WORDPRESS PROJECTS

Our focus today.

@tiffanyakuchta

Page 13: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

Transitioning a self-hosted WordPress install to HTTPS.

@tiffanyakuchta

Page 14: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

BEGIN AT THE BEGINNING

You’ll need a certificate.

Through your host, or maybe through Let’s Encrypt.

@tiffanyakuchta

Page 15: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

STEP 1: ADMIN CHANGES

define('FORCE_SSL_ADMIN', true);

@tiffanyakuchta

Page 16: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

STEP 2: CHECK THE FRONTEND

Low user impact.

You can do this without forcing SSL.

@tiffanyakuchta

Page 17: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

Page 18: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

Working title for this talk------------------->

Fixing mixed content.

@tiffanyakuchta

Page 19: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

FIXING MIXED CONTENT

You’ll see images, javascript, fonts, AJAX calls.

//example.com/image.jpg || https://example.com/image.jpg

@tiffanyakuchta

Page 20: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

//PROTOCOL.RELATIVE/URLS?

@tiffanyakuchta

Page 21: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

Page 22: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

FIXING CONTENT: POSTS & META

Database

Code: Plugins & Filters

@tiffanyakuchta

Page 23: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

@tiffanyakuchta

UPDATE wp_posts SET post_content = replace(post_content,'http://yourdomain.com','https://yourdomain.com');

/* * not applicable in all situations * */UPDATE wp_posts SET guid = replace(guid,'http://yourdomain.com','https://yourdomain.com');

Backup 1st!

Page 24: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

PLUGINS FOR FIXING MIXED CONTENT

https://wordpress.org/plugins/search.php?q=mixed+content

@tiffanyakuchta

More later

Page 25: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

FIXING CODE: THEMES & PLUGINS

grep -RIin “src=’http://” wp-content/themes/your-theme

grep -RIin “src=\”http://” wp-content/themes/your-theme

@tiffanyakuchta

Page 26: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

SETTINGS > GENERAL

@tiffanyakuchta

Page 27: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

FORCE SSL

RewriteEngine On

RewriteCond %{HTTPS} off

RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

@tiffanyakuchta

Page 28: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

“Roads? Where we’re going, we don’t need roads.” To be clear, we’re going to October 21st of last year, but this------→sorta just happened.

@tiffanyakuchta

Page 29: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

NEW CONTENT

After Content EntryFilter on content.

During Content Entry Build a plugin to warn users in real time when they’re creating

mixed content.

@tiffanyakuchta

Idea!

Page 30: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

NEW/UPDATED PLUGINS

Wrapper for wp_head();

Automation to notify an admin of mixed content in recently upgraded plugins. (Complex, and probably not worth the effort in the evolving landscape.)

@tiffanyakuchta

Page 31: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

And the Trogdor comes in the niiiiiiiiiiiiiight!

@tiffanyakuchta

Page 32: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

BEWARE, DRAGONS

Load balancers, Reverse Proxy & CDN

is_ssl();

@tiffanyakuchta

Page 33: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

BEWARE, DRAGONS

WTF!? Errors.

Deprecated cipher suite, bad certificate chain.

https://www.ssllabs.com/ssltest/analyze.html

@tiffanyakuchta

Page 34: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

BEWARE, DRAGONS

Don’t forget to renew!

You are a human. Be less human...or automate.

@tiffanyakuchta

Page 35: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

BEWARE, DRAGONS

Webmaster tools will also need to be updated.

@tiffanyakuchta

Page 36: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

Working title for this talk------------------->

Yep. Still.

@tiffanyakuchta

Page 37: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

MOAR DRAGONS

You’re probably going to want to make provisions for dev.

And for fallbacks.

@tiffanyakuchta

Page 38: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

EVEN MOAR DRAGONS

Once you visit the site behind SSL, Chrome will do everything in its power to push you to the SSL version of the site on future visits.

Be aware while testing.

@tiffanyakuchta

Page 39: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

Questions?

@tiffanyakuchta

Page 40: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

Questions?

@tiffanyakuchta

Page 41: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

THANKS!I’M STILL TIFFANY @tiffanyakuchta

@tiffanyakuchta

Page 42: the title(); HTTPS - 2016 Wilmington, NC WordCamp · the_content(); Are you ready to reroute the encryption? @tiffanyakuchta WARNING: There will be several references to popular culture

CREDITS

Trogdor images from hrwiki.org

Regex humor from xkcd.com

Scenes from the epic 1995 film, Hackers, from imdb.com

Assorted gifs from giphy.com

All logos (Apple, Google, Chrome, Let’s Encrypt) property of their respective owners.

@tiffanyakuchta