Blog

Resuming a Failed MySQL Import

Published: January 8, 2019

Tags:

You may have a mysql import fail for any number of reasons. Most recently, I had an import fail with the following error.

ERROR 3 (HY000) at line 270457: Error writing file '/var/lib/mysqltmp/MLTmnake' (Errcode: 28 - No space left on device)

While the error implies that the disk ran out of space during import, the issue was in fact that the disk ran out of inodes.

Regardless of the reason of failure, you likely won’t want to start the import over from the beginning.

Here I’ll provide some tips for resuming the failed import.

Proxying Guzzle Requests Through Tor

Published: December 16, 2018

Tags:

Guzzle is the de facto library for doing HTTP requests in PHP. There may be cases where you’d prefer not to disclose your IP address when using it. You may also be using 3rd party tools and not be in a great position to introduce the proxying at an application level.

Fortunately, all you need to do is set the ALL_PROXY environment variable when running your code.

Using the .well-known/ folder on a GitHub Pages hosted Jekyll site

Published: December 14, 2018

Tags:

Recently I registered this site for Brave Rewards.

There were two options for doing this:

  1. Upload a file to the .well-known/ directory on the website
  2. Create a DNS record

I decided to opt for the former.

Initially, I thought it was as simple commiting the file to the repo in the specified location. However, after pushing and letting the site build I got a 404 when attempting to access https://maxchadwick.xyz/.well-known/brave-payments-verification.txt.

Thinking About the Next Shoplift

Published: December 14, 2018

On February 19, 2015 Magento dropped patch SUPEE-5344. The patch addressed APPSEC-921, a CVSSv3 Severity 9.1 Remote Code Execution vulnerability which later became known as “Shoplift”. The patch was dubbed “Shoplift” in response to a video published by Check Point that showed how it could be used to zero out the price of products on a site and purchase them for free (in other words, steal them).

While this is a novel idea, the reality is that most attackers exploited the vulnerability to implant malware in the victim’s environment, silently stealing their user’s credit card information and sending it to a drop server under their control. They’d also upload backdoors to the victims server…hidden (to the amateur eye) entry points that they could use to re-enter and re-compromise the victim’s site again in the future.

Magento + MySQL Query Cache: Case Study #2

Published: November 27, 2018

Tags:

Back in April of 2018 I published a case study demonstrating the (positive) impact the MySQL query cache generally has on application performance and scalability for Magento. A recent issue at work has further highlighted this. I posted a quick update about it on Twitter:

Here I’ll share full details on the incident…

Invalidating all Admin Passwords in Magento

Published: November 19, 2018

If you’re dealing with a Magento site that has experienced a breach, it’s a good idea to reset all admin user passwords.

The easiest way to do this is to run a direct SQL query to update the password column in the admin_user table to gibberish.

UPDATE admin_user SET password = '--------';

No string will hash to this value, so essentially all the accounts will be locked at this point.