DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Some Image-Based Exploits With Their Prevention

Some Image-Based Exploits With Their Prevention

We take a look at image-based exploits that are common to websites, in this case, those that are backed by PHP. We also look at what devs can do to prevent them.

Anurag Jain user avatar by
Anurag Jain
·
Jul. 25, 17 · Tutorial
Like (0)
Save
Tweet
Share
3.16K Views

Join the DZone community and get the full member experience.

Join For Free

Images can be used to run malicious scripts over the browser and can also be used to download Trojans if not handled carefully by your website. Too much trust on user input can cause damage to your clients.

In this post, we will run malicious scripts using a simple image viewer functionality and lastly we will discuss how we can resolve this.

Programming Language

HTML, PHP

Git Repository

https://github.com/csanuragjain/extra/tree/master/ImageExploit

Website

https://cooltrickshome.blogspot.in/2017/07/some-image-based-exploits-with-their.html

One of Image Vulnerability I reported:

https://hackerone.com/reports/221928

Scenario #1:

In this scenario, we will show how lacking Content-Type while displaying images can run malicious scripts.

 Malicious Image



Description

1)  Right Click on the above Image and then choose 'Save Image As.'

2) Name it as exifxss.jpg and save it.

3) Otherwise, you can also get it from the git location.

showImage.php

 <?php  
 include('exifxss.jpg');  
 ?>  

Description

A simple PHP file showing the above .jpg file.

Output:

  1. When you access showImage.php on your browser, you will expect to see the image but instead, you will see several pop-ups coming up.
  2. This happens because the PHP page is not setting the Content-Type which makes PHP show the image as HTML. Since the image has several alert messages, they start popping up.
  3. showImage.php needs to make sure that it sets the correct Content-Type and also make sure that it does not set the user provided Content-Type.


Scenario #2:

In this scenario, we will show how a simple looking image when downloaded can become an exploit.

Caution: This will run notepad, calc, msconfig, services.msc on your computer, although it won't perform anything malicious.

Malicious Image


Description

1)  Right Click on above Image and then choose 'Save Image As.'

2) Name it as exifxss.bat and Save it.

3) Otherwise, you can also get it from the git location.


showImage2.html

 <img src="image.bat" width=500 height=500/>  


Description

A simple HTML file showing the image image.bat.

Output:

  1. On accessing the above HTML, you would see the Bugs Bunny image (nothing suspicious).
  2. Now, right click on the image and save the image. It should be saved as image.bat.
  3. On opening it, the malicious payload gets executed, opening up notepad, services.msc, msconfig, and calc.
  4. To prevent it, make sure that users are never allowed to store any non-image extension file.

Please let me know your suggestions and comments.

Hope it helps!

HTML PHP Git Trust (business) Vulnerability Repository (version control) POST (HTTP) Payload (computing)

Published at DZone with permission of Anurag Jain, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Data Ingestion vs. ETL: Definition, Benefits, and Key Differences
  • How To Use Terraform to Provision an AWS EC2 Instance
  • Pair Testing in Software Development
  • How to Create a Real-Time Scalable Streaming App Using Apache NiFi, Apache Pulsar, and Apache Flink SQL

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: