Displaying 3 results from an estimated 3 matches for "greyhat".
Did you mean:
great
2009 Mar 10
2
[LLVMdev] Bug in X86CompilationCallback_SSE
...I found that the X86CompilationCallback_SSE wrapper for
X86CompilationCallback2 is not setting up properly for the PIC
invocation.
Before you can correctly invoke a function via the Procedure Linkage
Table (plt), the ABI mandates that ebx is pointing to the GOT (Global
Offset Table) (see http://www.greyhat.ch/lab/downloads/pic.html)
Dump of assembler code for function X86CompilationCallback_SSE:
0xb74544f8 <X86CompilationCallback_SSE+0>: push %ebp
0xb74544f9 <X86CompilationCallback_SSE+1>: mov %esp,%ebp
0xb74544fb <X86CompilationCallback_SSE+3>: push %eax
0xb7...
2005 May 28
1
[Bug 1048] scp.c xstrdup() memory leak?
...memory leak?
Product: Portable OpenSSH
Version: 4.1p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: bitbucket at mindrot.org
ReportedBy: flatline at greyhat.nl
20050403
- (djm) OpenBSD CVS Sync
- deraadt at cvs.openbsd.org 2005/03/31 18:39:21
[scp.c]
copy argv[] element instead of smashing the one that ps will see; ok otto
This addition uses xstrdup(), but fails to free the allocated buffer after use.
I'm not sure how much of an i...
2009 Mar 11
0
[LLVMdev] Bug in X86CompilationCallback_SSE
Hello, Corrado
> Before you can correctly invoke a function via the Procedure Linkage
> Table (plt), the ABI mandates that ebx is pointing to the GOT (Global
> Offset Table) (see http://www.greyhat.ch/lab/downloads/pic.html)
This is known issue, just nobody realized, that we have bunch of non-
PIC-aware assembler code. :) Fixing would be not so trivial though,
mostly due to ABI differences between linux / darwin / mingw. Please
file a PR. Thanks!
---
With best regards, Anton Korobeyniko...