|
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.
|
|
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.
|
|
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 .
|
|
Which is fastest way to implement a operation that returns the absolute value of a number?
x=root(x²)
or
if !isPositive(x): x=x*(-1)
Actually this question can be translated as, how fast is a if(and why please).
My college programing professors always...
Started by Diones on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
The program counter stores the address of the next instruction more operations than the if with a....
I modified the question because it should counter based on that condition .
Operation is used to find a remainder, you mean absolute value.
|