Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Hacker's Black Magic

The Hacker's Black Magic

Information. Your business is built on it. Your customers rely on it. The web is full of it. But how secure is that information?

To many of us, hackers are a faceless entity. An unknown threat using seemingly magical methods to steal away the information we all rely on.

This month, we take a quick look at what it looks like from the bad guys' perspective as your security is breached and your information is siphoned away to later be sold to the highest bidder. We'll examine a few of the most common attacks that target WordPress sites, including Brute Force, Cross Site Scripting, and SQL Injection.

Many of these can be easily defended against if you properly understand them, and our goal is to pull aside the curtain and reveal how these attacks work, so that you can better equip your WordPress site to handle them.

KR Moorhouse

July 06, 2017
Tweet

Other Decks in Technology

Transcript

  1. SQL Injection What is it? SQL Injection is a security

    exploit where the attacker adds SQL code to an input method, to gain access to resources or make changes to data.
  2. SELECT * FROM `wp_users` WHERE user_email = ‘x’; DROP TABLE

    ‘wp_posts’; $email = x’; DROP TABLE ‘wp_posts’;--
  3. SELECT * FROM `wp_users` WHERE user_email = ‘x’; UPDATE `wp_users`

    SET user_email = ‘[email protected]’ WHERE user_login = ‘admin’; $email = x’; UPDATE `wp_users` SET user_email = ‘[email protected]’ WHERE user_login = ‘admin’;--
  4. Brute Force Attack What is it? A Brute Force Attack

    is a trial-and-error method used to obtain information, such as a user password or personal identification number (PIN).
  5. Cross Site Scripting What is it? Cross Site Scripting is

    a vulnerability that enables attackers to inject client-side scripts into web pages viewed by other users.
  6. Takeaways • Remove the ‘admin’ user account • Setup two-factor

    authentication • Setup an account lockout • Know what’s on your site • Be aware of your plugins’ reliability