|
Hi,
i want to write a little function's tracer. I use ptrace.
When i see a CALL instruction, i want to show the function name equivalent to the address call.
My tracer work with symbols with absolute address (symbol define in the main binary). But i don...
Started by La Chamelle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If I were in your situation, I would search for corresponding binary fragments in memory and in ... .
As soon as you did not describe the system you work on, this article clarifies that at least the described task can be solved for some cases, not for all .
|
|
I'm trying to code a exe packer/protector as a way of learning more about assembler, c++, and how PE files work. I've currently got it working so the section containing the EP is XORed with a key and a new section is created that contains my decryption...
Started by Chris T on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could use:
push DESTINATION_VA ret
or
mov address and the image is not relocated.
An absolute address, you would need a different opcode.
|
|
An absolute cell address either has the form $ColRow (eg, $A1, $Z25), Col$Row (e.g., A$1, Z$25), or $Col$Row (e.g., $A$1, $Z$25).
Started by Answered on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at chacha):
|
Ask your Facebook Friends
|
On Tue, 23 Oct 2007 08:58:11 -0400 (EDT), "koen handekyn (JIRA)" <jira-events@lists.jboss.org> wrote:
s:link builds absolute path URL with private IP address
-------------------------------------------------------
Key: JBSEAM...
Answer Snippets (Read the full thread at omgili):
> s:link builds absolute path URL with private IP....
> s:link builds absolute path URL with private IP address
> s:link builds absolute path URL with private IP address
>.
Or Tomcat somewhere down the line.
|
|
I'm trying to determine in vb if a URL is absolute or relative. I'm sure there has to be some library that can do this but I'm not sure which. Basically I need to be able to analyze a string such as 'relative/path' and or 'http://www.absolutepath.com/...
Started by Ben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Bool IsAbsoluteUrl(string url that address is well-formed, you should to use:
static bool IsAbsolute(string address, UriKind kind) { Uri uri = null; return Uri.TryCreate(address....
Whether you're checking for absolute or relative.
|
|
Hi,
I'm having a problem fetching the absolute URL of a remote image. What I'm doing right now is this:
foreach($html->find('img') as $e){ $path = parse_url($e->src, PHP_URL_PATH); $absolute = realpath($path); if($e->src==$path){ echo '<img...
Started by Carvefx on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you know the address of where you are filtering.
Into the site host, the relative page to that host .
|
|
If I have managed to locate and verify the existence of a file using Server.MapPath and I now want to send the user directly to that file, what is the fastest way to convert that absolute path back into a relative web path?
Started by tags2k on
, 9 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Take the example....
Regarding use of the tilde (~) at the beginning of a virtual address, see this MSDN having the virtual path.
Be useful to know because sometimes the absolute file path might have been pulled out of the database generated it.
|
|
I wrote a function named absD that i want to return the absolute value of its argument.. I am using GCC inline assembly with cygwin..
I dont see why its not working. i m loading into memory. then into st(0) where i am using fabs - absolute value. Do i...
Started by icelated on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Double absD(double input.
Obviously, the contents of %eax are a double an address), there's no need to jump through hoops moving things around.
Load a float from the value at address %eax ".
|
|
Hello all,
I've been using a rteEditor very sucefully until now.
The problem is in this line of code:
document.getElementById(rteName).contentWindow.document.execCommand('insertHTML', false, html);
I'm passing an ABSOLUTE path to the html var such as ...
Started by Paulo Bueno on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Upon saving the HTML, you just have to replace all the WYSIWYG editor on www2.example... .
Are trying to insert, and the address you are running the HTML editor from are on the same domain the result that the absolute link remains untouched.
|
|
I am trying write a function named absD that returns the absolute value of its argument. I do not want to use any predefined functions. Right now i am getting a parse error when i try to compile it.
I would image all i would have to do to get the absolute...
Started by Corey on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
/tmp/ccl2H7rf.s:229: Error: missing or invalid immediate expression `0x7 '
EAX does .
Point value directly from %eax -- the operand needs to be an address to load from
you can't have the address.
|