Tagged Questions

1
vote
0answers
12 views

Can the APC cache be shared among multiple PHP processes running as fastcgi/fcgid?

I'm running a LAMP box with PHP running as fcgid. APC is installed and working well. However, each PHP process gets its own cache. This is a problem, because it would make far more …
0
votes
3answers
317 views

Opcode (APC/XCache), Zend, Doctrine, and Autoloaders

I am trying to use either APC or XCache as an opcode to cache my php pages. I am using it with Zend and Doctrine and it's having a problem with the autoloader. If I try with APC, …
7
votes
3answers
424 views

calling code stored in the heap from vc++

Imagine I am doing something like this: void *p = malloc (1000); *((char*)p) = some_opcode; *((char*)p+1) = another_opcode; // for the sake of the example: the opcodes are ok ... …
0
votes
1answer
151 views

[ASM] JMP to absolute address (op codes)

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 X …
1
vote
2answers
80 views

Looking for a way to trap CPUID instructions

I am looking for a neat way to trap and fiddle with the CPUID instruction of Linux processes. Played around with ptrace() and patching all cpuid opcodes in all executable mmap'ed r …
0
votes
1answer
76 views

How does the putspecialobject opcode in the RubyVM work?

I'm working on an implementation of the RubyVM and I've searched all over for some documentation on the opcodes, but to no avail. If anyone knows specifically how the putspecialob …
0
votes
0answers
71 views

Can we construct an instance of `OpCode`?

The .NET Framework 4.0 introduces several items to the Reflection API that range from extremely useful to vital for my work. Among these are protected constructors for Assembly, Mo …
2
votes
1answer
222 views

Dynamic object property populator (without reflection)

I want to populate an object's properties without using reflection in a manner similar to the DynamicBuilder on CodeProject. The CodeProject example is tailored for populating enti …
2
votes
7answers
266 views

C String literals not in machine code?

I need to slightly change a string in an exe which I dont have source code for anymore. It was writtin in C. I notice that C string literals do not seem to appear in the machine c …
1
vote
2answers
122 views

APC Caching with variable includes

I have been doing some research on APC Caching with PHP and found that conditional includes just don't work. Like: if($a) { include('a.php'); } else { include('b.php'); } …
6
votes
2answers
282 views

VM Design: More opcodes or less opcodes? What is better?

Don't be shocked. This is a lot of text but I'm afraid without giving some detailed information I cannot really show what this is all about (and might get a lot of answers that don …
3
votes
2answers
251 views

What are these opcodes for?

Using reflector I get the following output: .method private hidebysig static class myModelTestarea.Foo Method() cil managed { .maxstack 1 .locals init ([0] class myModelTestar …
5
votes
2answers
764 views

Can someone explain this directly assembled x86 JMP opcode?

At school we have been using a bootstrap program to run stand-alone programs without an operating system. I have been studying this program and when protected mode is enabled there …
0
votes
2answers
179 views

The easiest way to convert a PHP script into OpCode using C#?

Hi, What is the easiest way to convert a PHP script (.php) into OpCode/Bytecode (Operation Code) using C#? I can use DLLs if I have to. I need this to be done for the project I a …
1
vote
2answers
211 views

Unhandled dwarf expression

hello can anyone tell me what exactly the following means that occurs during segmentation fault. Unhandled dwarf expression opcode 0x93 any advice appreciated, Edit : Its on so …

1 2 next
15 30 50 per page