|
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.
|
|
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.
|
Ask your Facebook Friends
|
Hello,
For example,We have a DWORD = $12345678
Which of the instructions would be faster - absolute or Move()?
var a:DWORD = $12345678; b:Array[0..3] of byte absolute a; var a:DWORD = $12345678;b:Array[0..3] of Byte begin Move(a,b,4); end;
Specifically...
Started by John on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
No code is executed, so yes it is faster than Move or... .
With absolute, both vars are stored at the same address, your second declaration storesThe 'absolute' directive points to the same memory as the specified variable.
Some time.
|
|
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 .
|
|
I'm using SharePoint List web services to have some queries on SharePoint server. It seems work fine when providing absolute Url with IP address where such input parameters required. For example, http://192.168.1.114/sites/myteam/Shared Documents/foo....
Answer Snippets (Read the full thread at microsoft):
If I replaced sFileName with absolute Url problems when ....
For example sFileName with absolute Url with IP address, it works fine.
Fine when providing absolute Url with IP address where such input parameters required.
|
|
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 ".
|
|
I have written an Asp .Net MVC applicaton that runs inside an IFrame. When one of my controller methods returns RedirectToAction(), I want the top browser URL to redirect to the address, not just my IFrame. How would I go about doing this? Because I am...
Started by Robin Weston on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Public ActionResult Handback() { return View(your_absolute_url); }
Then your.
So for example...
Itself.
|