Shared posts

06 Oct 05:47

Gas Pump Skimmers - learn.sparkfun.com

by brandizzi
FavoritedFavorite5

Introduction

What’s the first thing that should scare you? There’s three. And the next? The label ‘46’. They’ve got so many in the field criminals need to number them just to keep track.

Gas Pump Skimmers with Bluetooth

This is the not the first or the second time SparkFun has dealt with credit card skimmers. The difference is that this time the local governmental agency politely asked for help and we’re always down for trying to put a stop to bad actors.

Skimmer IC labels

We were given three skimmers found installed within gas pumps with the request that we try to get the data off the board so that the agents could let those who’ve had their credit card compromised know so they can get a new card. Not great, but it’s a start. Second task: can we build a jig or system so that they can more easily poke at these systems in the future. We were able to accomplish both as well as build an app that detects known skimmer in the area. You can get the free Android app here from google play - search for the name ‘Skimmer Scanner’ from SparkX.

For those who don’t want to read through the gritty details here’s the summary:

  1. These skimmers are cheap and are becoming more common and more of a nuisance across north america.
  2. The skimmer broadcasts over bluetooth as HC-05 with a password of 1234. If you happen to be at a gas pump and happen to scan for bluetooth devices and happen to see an HC-05 listed as an available connection then you probably don’t want to use that pump.
  3. The bluetooth module used on these skimmers is extremely common and used on all sorts of legitimate products end educational kits. If you detect one in the field you can confirm that it is a skimmer (and not some other device) by sending the character ‘P’ to the module over a terminal. If you get a ’M' in response then you have likely found a skimmer and you should contact your local authorities.

How the Skimmer Scanner App Works

alt text

The Skimmer Scanner App

The Skimmer Scanner is a free, open source app that detects common bluetooth based credit card skimmers predominantly found in gas pumps. The app scans for available bluetooth connections looking for a device with title HC-05. If found, the app will attempt to connect using the default password of 1234. Once connected, the letter ‘P’ will be sent. If a response of ’M' then there is a very high likelihood there is a skimmer in the bluetooth range of your phone (5 to 15 feet).

Skimmer Scanner is free, open source, and currently available for Android. The source is available here. The app does not obtain or download data from a given skimmer nor does it report any information to local authorities.

If you detect one in the field let us know! We’d love to hear about it.

Do Something About It

These skimmers are most scary because there is no one being held responsible or tasked with prevention. If your credit card number is stolen you simply contact the provider and they will (usually) refund any fraudulent charges and send you a new card. In turn, the credit card companies simply do a charge back to the merchant where the fraudulent charges took place (taking the money from the merchant and refunding it to the customer whose card has been stolen). Gas stations rarely have alarms or indicators on the pumps so it’s unclear if they ever know the pumps have been opened. And the fuel pump manufacturers have no incentive to install digital or audible alarms on the pumps (that costs money).

Reader Anthony David Adams informed us who really gets charged in these situations. You can read his response here.

Are you angry that your card has been stolen, again? Contact your local congress person or senator and ask them to pass legislation that fines gas stations $100 for every card that is discovered on a skimmer in one of their pumps. It’s ultimately up to the gas stations and pump manufacturers to secure their pumps.

How a Gas Pump Skimmer Works

External gas pump

Front of a US Fuel Pump complete with extremely difficult to source security seal

Essentially, the perpetrator opens a pump using one of a few master keys, unplugs the credit card reader from the main pump controller, plugs the card reader into the skimmer and plugs the skimmer back into the pump controller. This reportedly takes less than 30 seconds.

A skimmer is basically a man in the middle attack. The skimmer listens for all the serial traffic from the credit card reader (clear text at 9600bps) records it to an external piece of memory (flash in this case) and then passes that same serial traffic onto the pump controller. When you use one of these modified pumps the pump controller charges your card and you’re none the wiser, but your credit card details are stored in memory.

alt text

Hours or days later, the perpetrator returns to the gas station and connects over bluetooth to the compromised pump. Once connected the skimmer sends the contents of the EEPROM (all the recent credit card numbers) over the air to the perpetrators cell phone or laptop where it’s logged.

Skimmer Design

Let’s dig into how these skimmers are designed…

Gas pump skimmer ICs

This type of skimmer seems to be very common. A quick image search shows this model all over north america.

The setup is very straight forward but with some odd design choices. The PIC18F4550 communicates with the Bluetooth module over serial. The PIC also talks to an SPI Flash. Signals (serial characters) from the credit card reader are recorded by the PIC to the SPI EEPROM. When a cell phone or tablet connects to the Bluetooth module a serial connection (called Serial Port Profile or SPP) is created. Whatever serial characters the cell phone sends get sent to the PIC. For example when the character ‘?’ is sent from our Bluetooth enabled tablet to the Skimmer the Skimmer responds with the character ‘1’.

Front of the Skimmer

Skimmer Components

Front of the Skimmer

The front of the board is composed of a PIC Microcontroller 18F4550, an SPI EEPROM part #: M25P16 (datasheet) which is a 16Mbit flash memory, and a standard LM1117 3.3V regulator.

alt text

Various pins toned out with assumed use

To get into some gritty details:

  • R1 and R2 look to be a voltage divider when needed (R2 is not populated) to drop the voltage of the signals coming from the credit card reader. I presume the reader is outputting 12V signals and R1 (1.5K) is there to limit the current into the receive pin thus protecting the PIC from damage.
  • There are three serial pins shown at the top of the picture. From left to right: GND, RX, TX. These seem to be an easy serial connection to the PIC. Perhaps used for bootloading new firmware. These pins connect to the Bluetooth module’s RX and TX pins (respectively) and make it very easy to hook up a logic analyzer to sniff the serial traffic (thanks skimmer designer!)
  • The voltage regulator is very common with a large package to (probably) withstand getting hot when given various input voltages (regulating 12V down to 3.3V can produce a bit of heat)
  • D5 is a status LED
  • J4 is the super common PIC ICSP (in circuit serial programming) header. It’s used to get firmware onto the PIC18F4550
  • C1 and C7 are loading caps to the 8MHz crystal. This makes sense as most PIC 18F series can’t run above 10MHz at 3.3V
  • C2 looks like a 0.1uF decoupling capacitor
  • R15 is a 10k pull-up on the reset (MCLR) line
  • C13 is a large cap on RA4/T0CKI/C1OUT/RCV. This could be a digital I/O, Timer0 external clock input, Comparator 1 output, or external USB transceiver RCV input. None of these have a clear reason to be connected to a large decoupling cap. This pin is not connected to any other part of the circuit.

The main connection to the credit card reader is via the connection labeled ‘1’ through ‘7’ shown on the right with a gray cable installed. It is unclear what the second connector (shown on the left in the image above) is used for. This connection could be used for a variety of different things as the pins on the PIC that are broken out could be used as either inputs or outputs. My guess is that this is the connection to the keypad so that the skimmer can record pin numbers (for debit cards) when the pump has the right model or compatible keypad.

Rear of the Skimmer

alt text

Various pins toned out with assumed use

These modules use an extremely common Bluetooth module called the HC-06. These are roughly $3 per unit and perhaps cheaper in quantity. Bluetooth has gotten shockingly cheap!

HC-06 Bluetooth Module

The HC-06 module from www.hc01.com

More on the Bluetooth module is below.

Build Quality

Interestingly, between the three units we were given we found three grades of assembly, excellent, good, and trash.

alt text

These units look well built

The main PCB assembly of the three units looks of reasonable to high quality. The front side of the skimmer (containing the PIC microcontroller) has been assembled with standard SMD practices using a solder paste, stencil, and reflow. It looks like it was mass produced from the quality of the fillets.

alt text

Decently soldered bluetooth module

The bluetooth module and various components on the back side look hand soldered but done by someone who knows how to use flux and how to solder well. The bluetooth modules were most likely hand soldered to reduce the overall manufacturing costs (it basically costs double to stencil and reflow a 2nd side).

Bad Skimmer Soldering

That is some bad assembly right there. The stranded wires are shorting adjacent pins.

The cables and connectors were added by someone else, most likely the perpetrator. It’s really bad. On two units the stripping of the wire and solder is so poor that units will probably fail in the field because of shorting between pins.

Skimmers with external connectors

Two units have a 7 pin polarized connector with the tab cut off, possibly because they don’t know which way the pump controller will plug on. This is either very amateur (they guess when they plug in their unit which is pretty cavalier because it could fry their unit, the credit card reader, or both) or they’ve found that the connectors inside different pumps have different (opposite) orientations and they want to build a unit that can quickly work with either polarization. It’s unlikely the pump controller market would gravitate towards the same number of pins using the same type of connector but use two different orientations. So I’m guessing the builder of these units is not knowledgeable enough to figure out where pin 1 lives on the polarized connector and just resorts to guess and check: Plug it in, does it work? No? Switch it around the other way.

Components

Let’s look a bit closer at each of the main components.

Microcontroller

alt text

Pinout of the 18F4550

The brain is a PIC 18F4550 running at 8MHz and 3.3V. The 3.3V regulator has a single decoupling cap. A very basic configuration and probably able to handle larger voltages like 12V without getting too hot.

EEPROM

Connections to the SPI EEPROM

Pinout and PIC connections to the 25P16VP. The labels to the edges indicate how the IC is found wired in circuit. For example Q is wired to MISO/A5 on the PIC.

The IC labeled 25P16VP seems to be a NOR flash memory from ST/Micron with a full part# M25P16. Curiously this part is being End-Of-Lifed (EOL). EOL notice is here dated December of 2016 with last shipment dates into 2021. Perhaps they are using this part because it is super common and/or super cheap. The EEPROM VCC is 3.3V which follows why the board runs at 3.3V (along with the 3.3V Bluetooth module).

Bluetooth

Module recommended connection

Recommended pinout for the HC-06

Above is the recommended wiring of the module showing various pin connections. Toning out the connections to the module, everything is pretty standard and expected. PIO11 on the skimmer is curiously tied to GND with a 10K. There is an LED on PIO8. Here is a good breakdown of all the various Bluetooth module revisions from the HC-01 company.

Querying the module over the air we found the Bluetooth module has all the default settings in place. The designers of the skimmer never took the time to modify the settings:

  • Baud rate = 9600
  • Connection Password = 1234
  • nl/cr line endings not required
  • AT commands are required to be in uppercase
  • Firmware version = hc01.comV2.0
  • Name = HC-06
  • No parity
  • SLAVE mode

Did you get that? All three devices we found have the defaults in place. This means a few things:

  1. The module broadcasts its ID as HC-06 so we can detect them easily
  2. The password is 1234 so we can connect to them easily

Astute readers see where we are headed…

Initially this blew my mind. If I were to design a bluetooth skimmer I would program the module to NOT broadcast its ID, I would change the ID to something only I knew, and I would change the password from 1234 (headsmack). I would then create an app that knew the IDs of my various bluetooth IDs and connect to them privately (without publicly broadcasting their IDs). But then a few things struck me:

  • These devices are cheap. The BOM (bill of materials) is less than $4. That puts an estimated retail price of this device at $10.
  • While the SMD build quality is professional, the soldering of the ribbon (the gray cable that connects to the credit card reader) is horrendously bad indicating the perpetrator has very little experience with soldering and probably zero experience with electronics.

Years ago it took someone with knowledge and skills to build a credit card skimmer. Now criminals are buying these off the shelf with very little knowledge and slapping them together. It’s basic user design theory: when your customer is not so smart make it idiot proof so they don’t contact you for support. The designers of this skimmer were smart, it’s better to make these devices easy to connect to than to add a layer of security. What’s the worst that could happen? The device is detected and removed from the pump. Meanwhile, 10 more have been deployed for a total cost of $100.

Characteristics of the Device

We powered the skimmer with 5V from USB. On powerup the main status LED blinks 3 times. The bluetooth LED blinks fast at 4Hz when powered but not connected.

Connecting to the skimmer using bluetooth on a computer is straightforward. We used the default password of 1234 and noticed the bluetooth LED blinks at 2Hz and then off for 2 seconds when connected.

On our setup COM-6 was the bluetooth SPP that became available once we were connected. Sending ? to the skimmer causes it to respond with 1 at 9600bps.

Known Commands

Here’s what we were able to glean from hammering the skimmer with various serial strings.

  • Power the skimmer with 5V to 12V from the gray cable (or 3.3V into VCC)
  • Connect to HC-01 with password 1234 using a laptop
  • Open a terminal program at 9600bps
  • ‘?’ is a good way to see if module is responding Numbers don’t do anything on their own
  • Lower case letters do nothing

Identified Commands:

  • ? - returns 1
  • P - returns M
  • D - Waits for 6 characters then stores them. Originally ‘123456’ and we thought it was the device ID or password. However, changing this setting does not seem to have an effect.
  • C - Displays the 6 characters that are stored based on D
  • @ - Look up memory location. Follow the @ with two more characters in binary form, returns credit card details stored in memory. For example, @[00][01] (shift+2, ctrl+shift+2, ctrl+a) returns the 2nd byte stored in EEPROM. See ascii table for info on how to send binary characters from keyboard combinations.
  • % - waits for a character then does nothing
  • E - causes serial to stop responding to serial commands. BT still open/connected. Power cycle device to get it back responding. This could possibly be used to deactivate a device in the field.
  • ~ - Erase all SPI flash. This is how to erase all the credit card numbers. Unit blinks the status LED for ~20 seconds (EEPROM takes time to erase). The unit will buffer any incoming serial characters during the time it takes to erase the EEPROM (serial interrupts and buffer are being used).

A skimmed credit card record looks like this (we’ve altered the card number):

T1 %B374328830305879^YOU/A GIFT FOR            ^20042221330999242?
T2 ;374328830305879=200912211090924100000?

This looks like a direct copy of the serial we would expect out of a serial card reader. T1 indicates track 1 data, T2 for track 2, etc. The records are stored on EEPROM in clear text (remember, make it idiot proof for the user). It looks like someone used a gift card to buy gas. Note that this record is 113 characters. Let’s say a record is 256 bytes. With 16Mbit of flash storage that’s 2MB or approximately 7,800 credit card records that could be stored on a device. Yikes.

On the units we were given we found on average 24 records per device. This seems low. I’m not sure where these devices were located but one would expect at least 24 credit card users per day. This may indicate the perpetrator was regularly visiting the pumps and harvesting the records on a daily basis.

Getting Data Off Skimmer

We are not going to provide an example app that pulls data from the device. If you’re savvy enough to build an app from the information provided in this tutorial you are likely to earn more money using your mad skills for good than evil.

If you’re a law enforcement official you should have physical access to the device. There are a few methods to get the data from the EEPROM.

First, you’ll need an EEPROM reader. We like using a cheap SPI programmer from Amazon. The software for Windows is a bit hard to locate. We had the best luck with version 1.29 from Tosiek Zanakow’s website. We have hosted a copy of the software here as well. Use at your own risk.

Next you’ll need to connect the Programmer to the EEPROM. There are two methods: Using a SOIC clip or hot-air removing the EEPROM. The SOIC clip is the least destructive method but requires dexterity and patience. Hot-air rework is more reliable but requires removing the IC from the board and may create evidence provenance issues.

SOIC Clip Method

alt text

Downward pressure is applied to hold yellow wire against MCLR/GND. At the same time the SOIC clip is held carefully in place. It’s tricky.

We use a SOIC Test Clip to make a temporary electrical connection to the SPI EEPROM. 12" Female to Female jumper wires connect the SOIC Clip to the EEPROM Reader. The female jumper wires connect nicely with the 6 SPI pins on the CH341A EEPROM Programmer. Only 6 wires are needed; the write protect and hold pins can be left floating. We selected the ES25P16 from within the software to read the IC over SPI.

The last thing you need to do is to put the 18F4550 into reset. This is because the CH341A will provide power to the skimmer. Once power is applied the PIC will boot up and attempt to connect with the EEPROM. If you’re trying to read the EEPROM through the clip at the same time you’ll have bus contention. This is bad and will prevent the programmer from correctly reading the EEPROM.

Using a SOIC clip to read an IC

The reset pin MCLR (master clear) on the PIC is exposed on the programming header

To get the PIC into reset you’ll need to either hold or solder a wire from MCLR to GND. This will cause the PIC to stay in reset and allow you to read the EEPROM to a binary file from the CH341A software. Renaming this binary file to a .txt extension will make the information viewable in a normal text editor.

The problem with this method is that the SOIC clip is difficult to keep in place. Things like to move causing the clip to slip off the EEPROM. The connections are not great but with a little practice it can be made to work.

Hot-Air Removal

SOIC Breakout board

A SOIC IC on a breakout board

The alternative method is to use hot-air to remove the EEPROM from the skimmer and then solder it to a SOIC breakout board. Solder male headers to this breakout board and you will be able to make solid connections from the EEPROM to the EEPROM Programmer and read the contents. You will not need to hold the PIC in reset for this method to work (because the PIC is no longer connected to the EEPROM).

Firmware

We were able to pull the firmware from the PIC using a PICKit 3. You can get a copy of the HEX file here. The firmware on all three boards was identical. The firmware is curiously small, occupying 0x0000 to 0x07F0 (about 2,000 bytes). I sneeze Arduino sketches that are bigger than that.

Update: A few readers pointed out the fuse bits have been set to protect and prevent reading of the firmware. Decapsulation and fuse clearing would be the next step but is beyond our capabilities at the moment.

One unknown: Why use a PIC18F4550 at all? It’s more powerful with way more flash than is needed. You could do this with a smaller device like an ATtiny or a cheaper device like an ARM-M0 (SAMD11s are amazing). Perhaps the extra pins are needed for keypad decoding. Perhaps the PIC18F4550 is very low cost wherever these devices are made. Perhaps this device was designed by someone and the design was never re-visited to reduce costs (who cares when the BOM on this skimmer is already less than $5?).

I am not a hacker, I just play one on TV (poorly). If you are able to decompile the HEX code into assembly and can make some sense of the function of the firmware, please do so. We already know enough about the available commands to erase and disable the device. If you are able to decipher additional functionality or interesting characteristics please let us know!

Serial Injection

alt text

The pinout of the gray cable have been located but not identified

The 7 pins going to the gray cable that connect to the credit card reader have been toned out to the PIC. We know where they go but we don’t know what the pins do. For example, what does D3 connect to on the credit card reader inside the pump? We expect pin B0 to be the main data input from the card reader because it has a current limiting resistor inline (R1). But without getting access to an actual gas pump we are kind of guessing.

In order to identify the purposes of each of the 7 pins we attempted to send serial into the skimmer as if we were a credit card reader on the gas pump.

We tried sending TTL level serial at many different baud rates, with different strings, on different pins, hoping the skimmer would blindly store this data. Nothing was stored as a credit card record. Perhaps the device is smart enough to look for well formed track data and our tests were not formatted correctly. However, some of the records we obtained from the EEPROMs look like gibberish so we are inclined to believe the skimmer is just recording blindly.

Perhaps the device is expecting RS232 level signals rather than TTL. We tried using a magnetic card reader to send RS232 signals to the device and were not able to get it to store the card data. The magnetic card reader outputs RS232 at 9600bps whereas the gas pump may be operating at a different baud rate.

In the end we were unable to get the skimmer to record our fake data and thus were unable to determine definitively what each of the pins going to the pump card reader are for. The function of these pins don’t really matter, we were just curious.

Resources and Going Further

We hope you enjoyed reading this in-depth tear down of these scary devices. If you’d like to assist us we are curious to answer the following questions:

  1. What do these devices actually cost? We haven’t trolled the dark web far enough to find one.
  2. What types of fuel pumps do the skimmers work on? It’s unclear if this model of skimmer works across the field or if it works only with certain pump types.
  3. What are some other methods for detection and prevention? We brainstormed all sorts of things. In the end, it’s shocking how easy it is to open up a gas pump. The quickest prevention method we could think of was a klaxon attached to a leaf switch set to go off anytime the pump is opened. Provide all pump repair folks with ear protection and the problem of skimmers is solved.

If you liked this article, consider checking out some of our other tutorials:

Serial Terminal Basics

This tutorial will show you how to communicate with your serial devices using a variety of terminal emulator applications.

Let's block ads! (Why?)

06 Oct 05:42

Photo



06 Oct 05:42

Versioning is important

by CommitStrip

06 Oct 05:40

How to Assemble a Mighty Team of Superheroes

by Scott Meyer
basic170913.gif

Here it is, the core of the team has assembled! Sure, we’re still missing Mr. Everywhere, and Stabby, but that’s like saying that the Super Friends aren’t really assembled because Robin and Gleek the space monkey aren’t present.


Although, again, I could make the argument that Mr. Everywhere is present, just out of frame, in every panel of the comic.

 

Hey, just so you know, all through the month of September (2017, in case you’re reading this in the far distant future), the Kindle edition (See, in this time period, eBooks are still locked in a format war, and their prices are set differently in different regions, as the global economy has not yet unified under the singular global currency, the “Gleuro.”) of my latest book, Run Program (As of this time, I have not yet written my later works, including the multi-volume series about my as-yet uninvented character, the hard-boiled detective Victor Lamaze. How quaint this primitive version of the world must seem to you.), is on sale in the US for only $1.99.  (Roughly three hundred Gleuro, adjusted for inflation.)

As always, thanks for using my Amazon Affiliate links (USUKCanada).

06 Oct 05:36

How to Write a PowerPoint Pitch

by tomfishburne

The surest way to stifle an idea is to write a longwinded presentation deck about it.  PowerPoint, Keynote, and Prezi are powerful tools, but the power comes in how they’re used.  A weighty presentation deck can get in the way of the idea itself.

The classic Mark Twain quote applies equally when writing a presentation — “I didn’t have time to write a short letter, so I wrote a long one instead.”

Born out venture capital work as a recipient of many of PowerPoint deck, Guy Kawasaki has been advocating the 10/20/30 Rule for a decade.  As he put it:

“I am evangelizing the 10/20/30 Rule of PowerPoint. It’s quite simple: a PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font smaller than thirty points. While I’m in the venture capital business, this rule is applicable for any presentation to reach agreement.”

Here are a few related cartoons I’ve drawn over the years.

Idea Camouflage, March 2009

Death by PowerPoint December 2011

PowerPoint-itis November 2016

06 Oct 05:36

09/15/17 PHD comic: 'Inner Gollum'

Piled Higher & Deeper by Jorge Cham
www.phdcomics.com
Click on the title below to read the comic
title: "Inner Gollum" - originally published 9/15/2017

For the latest news in PHD Comics, CLICK HERE!

06 Oct 05:35

How to Act "Manly"

by Scott Meyer
basic170918.gif

Nothing is less manly than worrying about whether what you’re doing is manly or not. Picture Clint Eastwood worrying about if what he’s doing is “manly.” I can’t. The man became famous wearing a poncho, and playing a character called “Blondie.” He didn’t worry about if it looked manly. He recognized that he made it look manly by being the one doing it.

John Wayne, on the other hand, did worry about looking manly. He once Gave Kirk Douglas a hard time about playing “effeminate weaklings.” To be fair, that might have been the mental fallout from growing up with the name Marion.

 

As always, thanks for using my Amazon Affiliate links (USUKCanada).

06 Oct 05:32

Comic for 2017.09.24

by Kris Wilson
06 Oct 05:31

Real Estate

I tried converting the prices into pizzas, to put it in more familiar terms, and it just became a hard-to-think-about number of pizzas.
06 Oct 05:31

Saturday Morning Breakfast Cereal - Transaction

by tech@thehiveworks.com


Click here to go see the bonus panel!

Hovertext:
In a perfect relationship between economists, every time their preferences are slightly violated they make a microtransaction with their partners.

New comic!
Today's News:

In which Jerry Wang posits a way to finally get some utility out of babies:

 

06 Oct 05:26

New Worlds

by Doug

New Worlds

September is Literacy Month! Read something!

06 Oct 05:24

Saturday Morning Breakfast Cereal - Shirts

by tech@thehiveworks.com


Click here to go see the bonus panel!

Hovertext:
The really depressing part is 99% of programmable nanobot behavior will be this sort of thing.

New comic!
Today's News:
24 Sep 23:46

Hanging On

by Doug

Hanging On

And here are more pirate-themed comics, because tomorrow’s Talk Like A Pirate Day!

24 Sep 23:46

Obsolete Technology

And I can't believe some places still use fax machines. The electrical signals waste so much time going AROUND the Earth when neutrino beams can go straight through!
24 Sep 23:44

Cheep-Cheep

by Reza

24 Sep 21:52

USB Cables

Tag yourself, I'm "frayed."
24 Sep 21:50

Photo



24 Sep 21:50

Worms>People?

24 Sep 21:49

How to Pose a Photo

by Scott Meyer
basic170922.gif

This comic was inspired by the official portrait of Steve Jobs, in which he holds his hand in a way no human ever does unless they’re getting their official portrait taken.

steve_jobs.jpg

I think it’s meant to look like he’s thinking deep thoughts, but to me it looks more like he’s deriving pleasure from tugging his own beard hairs. Or, it kind of looks like he’s smelling his own fist, and he recognizes the smell.

This is why I’ve always related more with Bill Gates. In every Picture of Bill Gates, especially the official pictures he posed for, he looks self-conscious and uncomfortable. I suspect he’s often self-conscious and uncomfortable in real life, so the pictures look more genuine. They look bad and awkward, but genuinely bad and awkward.

 

As always, thanks for using my Amazon Affiliate links (USUKCanada).

24 Sep 21:47

No Idea

by Doug
24 Sep 20:45

Photo



24 Sep 20:45

Comic for September 23, 2017

by Scott Adams
24 Sep 20:39

Comic for 2017.09.23

by Dave McElfatrick
24 Sep 20:39

Voz do Brasil

by Will Tirando

24 Sep 20:33

Artificial Intelligence Hype

by tomfishburne

Marketers are increasingly excited about the potential of AI. L’Oréal chief digital officer Lubomira Rochet described a commonly shared sentiment:

“I believe AI is as big a revolution as the internet itself. It’s going to power more of our interactions with our consumers, be it through advertising, CRM or even ad serving. All those compartments of marketing will be transformed by AI. It’s a great way to get more personalized than we’ve ever been.”

Few trends are currently as hyped as Artificial Intelligence. And as we’ve all learned from the Gartner Hype Cycle, hyped trends inevitably climb a peak of inflated expectations.

Artificial intelligence has become a broad, amorphous, catch-all term. As Christian Monberg at Boomtrain put it, “We’re early in a convoluted market. AI means a lot of things.”

Your Ad Ignored Here
"If marketing kept a diary, this would be it."
- Ann Handley, Chief Content Officer of MarketingProfs
Order Now

Companies are rebranding existing services as “AI-powered.” Media agencies are starting to add AI to business titles. Here’s how Josh Ziegler of travel technology shop Zumata described the hype:

“AI has been touted as a silver bullet with infinite magical powers. The dawn of AI taking over the world and being a plug and play technology has fostered a misconception of what is truly possible today.”

Savvy marketers will have to continue to navigate the promise from the hype and be wary of chasing technology for technology-sake.

Here are a few related cartoons I’ve drawn over the years:

Digital Transformation November 2016

Shiny Object Syndrome January 2015

Big Data January 2014

21 Sep 22:43

Viva Intensamente # 329

by Will Tirando

17 Sep 14:41

Saturday Morning Breakfast Cereal - The Real World

by tech@thehiveworks.com


Click here to go see the bonus panel!

Hovertext:
If you wanna learn about the real world, take your advice from a guy who draws cartoons for a living.

New comic!
Today's News:

Thanks, geeks! We're launching in about a month, and every buy helps us get a better send off during opening week.

17 Sep 14:36

Photo



17 Sep 14:30

Saturday Morning Breakfast Cereal - Hunting Man

by tech@thehiveworks.com


Click here to go see the bonus panel!

Hovertext:
I am prepared to read your emails on how I don't know how to pronounce 'pho.'

New comic!
Today's News:

Last full day to get in a proposal for BAHFest West!

17 Sep 14:27

Vergonhas que eu passava

by Will Tirando