|
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.
|
|
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.
|
Ask your Facebook Friends
|
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 ".
|
|
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.
|
|
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 have a linker command file that assigns the top address of the stack into a variable
_stack = . + 0x80000;
I want to use this address in a 'c' program - I want to copy the stack to another location and then update the stack pointer to point to the new...
Started by sparklewhiskers on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
MyFunction(& stack); should pass myFunction the address of the variable * stack .
|