Tagged Questions
The self-modifying tag has no wiki summary.
22
votes
14answers
4k views
What are the uses of self modifying code?
Is there any real use for self modifying code?
I know that they can be used to build worms/viruses, but I was wondering whether there is some good reason that a programmer may have to use self ...
14
votes
12answers
2k views
Self Modifying Code
I am recently thinking about writing self-modifying programs, I think it may be powerful and fun...
So I am currently looking for a language that allow modifying program own code easily..
I read ...
14
votes
10answers
3k views
What is a code cave, and is there any legitimate use for one?
I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is:
an unused block of ...
11
votes
10answers
815 views
Can a C program modify its executable file?
I had a little too much time on my hands and started wondering if I could write a self-modifying program. To that end, I wrote a "Hello World" in C, then used a hex editor to find the location of the ...
11
votes
8answers
497 views
Is there any self-improving compiler around?
I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy.
Is there ANY self-improving compiler out there?
Please note that I am talking about a compiler that ...
10
votes
3answers
1k views
Homoiconic and “unrestricted” self modifying code + Is lisp really self modifying?
I will be forward in admiting that my knowledge of Lisp is extremely minimal. However I am extremely interested in the language and plan to begin seriously learning it in the near future. My ...
10
votes
4answers
1k views
How to write self-modifying code in x86 assembly
I'm looking at writing a JIT compiler for a hobby virtual machine I've been working on recently. I know a bit of assembly, (I'm mainly a C programmer. I can read most assembly with reference for ...
7
votes
5answers
279 views
How to write self modifying code in C?
I want to write a piece of code that changes itself continuously, even if the change is insignificant.
For example maybe something like
for i in 1 to 100, do
begin
x := 200
for j in 200 ...
7
votes
2answers
675 views
Writing a JIT compiler in assembly
I've written a virtual machine in C which has decent performance for a non-JIT VM, but I want to learn something new, and improve performance. My current implementation simply uses a switch to ...
7
votes
3answers
694 views
Dynamic relocation of code section
Just out of curiosity I wonder if it is possible to relocate a piece of code during
the execution of a program. For instance, I have a function and this function should
be replaced in memory each time ...
6
votes
8answers
758 views
Compiled dynamic language
Greetings,
I search for a programming language for which a compiler exists and that supports self modifying code. I’ve heared that Lisp supports these features, but I was wondering if there is a more ...
4
votes
7answers
1k views
Self modifying code in Java
Have you ever created or encountered a self modifying code in Java?
If yes, then please post the link or simply post the code.
4
votes
2answers
477 views
Is it possible to write an assembly which dynamically generates a new class and patches itself with the new class?
Is it possible to write an assembly which dynamically generates/emits a new class and patches itself to include the new class?
How?
3
votes
2answers
66 views
Use cases for self-modifying code?
On a Von Neumann architecture, program and data are both stored in memory, so a program can modify itself. Is this useful for a programmer? Could you give some examples?
3
votes
2answers
280 views
Does the C Standard Allow for Self-Modifying Code?
Is self-modifying code possible in a portable manner in C?
The reason I ask is that, in a way, OOP relies on self-modifying code (because the code that executes at run-time is actually generated as ...
3
votes
2answers
826 views
Self Modifying Code [C++]
I was reading a codebreakers journal article on self-modifying code and there was this code snippet:
void Demo(int (*_printf) (const char *,...))
{
_printf("Hello, OSIX!n");
return;
}
...
3
votes
4answers
195 views
Self-modifying code for trace hooks?
I'm looking for the least-overhead way of inserting trace/logging hooks into some very performance-sensitive driver code. This logging stuff has to always be compiled in, but most of the time do ...
3
votes
2answers
538 views
Self modifying code
i found an article about self modifying code and tried to do some examples, but i get always segmentation faults. As fas as i can understand, there is a violation in memory permissions. The code ...
3
votes
3answers
222 views
A way to implement `String#split!`
Sometimes I need such method, which could change class of its own object. There are String#delete!, #downcase!, #encode!, #gsub!, #strip!, #slice!, etc. They are all trying to change string, but ...
3
votes
2answers
225 views
Python - Code snippet not working on Python 2.5.6, using IDLE
I am using a piece of self-modifying code for a college project.
Here it is:
import datetime
import inspect
import re
import sys
def main():
# print the time it is last run
lastrun = 'Mon ...
2
votes
2answers
103 views
A self modifying code?
I would like to do the following . I have declared a structure in my program and in run time when the program is being executed, if there is a user input, I should be able to create another new ...
2
votes
1answer
430 views
Native self-modifying code on Android
I am trying to make some self-modifing native code on Android and run it in the emulator. My sample is based on the HelloJNI sample from the android-ndk. It looks like this:
#define NOPE_LENGTH 4
...
2
votes
2answers
457 views
Does mprotect flush the instruction cache on ARM Linux?
I am writing a JIT on ARM Linux that executes an instruction set that contains self-modifying code. The instruction set does not have any cache flush instructions (similar to x86 in that respect).
If ...
2
votes
3answers
610 views
Program that modify string inside his exe
I looking for example of program, that modify string inside his exe.
I work with C++, Visual Studio under Windows.
I searched in internet for working examples in Windows, but I doesn't find any ...
1
vote
0answers
92 views
modify the NDK and generate new experimental release packages
I am trying to modify the NDK and generate new experimental release packages with the doc 'android-ndk-r6\docs\DEVELOPMENT.html',but getting the following error after execute script ...
1
vote
1answer
43 views
Can I execute the number stored in a register as an instruction in MIPS?
If I take an instruction and break it down into the binary representation of its op code, rs, rt etc... could I then put this binary number into a register and get MIPS to treat it as an instruction?
...
1
vote
2answers
108 views
Is it possible to write self-modifying PowerShell scripts?
Is it possible to write self-modifying PowerShell scripts?
Suppose I have a script named foo.ps1:
"Write-Host `"Goodbye world`"" | Set-Content "foo.ps1"
Write-Host "Hello world"
This script prints ...
1
vote
5answers
154 views
C++ Boolean Variables Changing
I have a C++ class; this class is as follows:
First, the header:
class PageTableEntry {
public:
PageTableEntry(bool modified = true);
virtual ~PageTableEntry();
bool modified();
...
1
vote
3answers
186 views
copy and call function
I'd like to copy and call a function, but the code below segfaults when calling the buffer. What do I have to change? (Linux, x86)
#include <string.h>
#include <malloc.h>
#include ...
0
votes
1answer
224 views
How to inline in C++ self modifying assembly code?
How would I inline this in C++ function.
0041F84E . 7B 02 JPO SHORT Unmodifi.0041F852
0041F850 B8 DB B8
0041F851 00 DB 00
0041F852 . 8B46 38 MOV ...
0
votes
2answers
70 views
Is there any real application being self modifying code?
There are few examples on the web demonstrating how to write a self-modifying code. But they're just examples. I would like to know if there is any real application being self modifying code. Thanks!
0
votes
2answers
340 views
Self modifying html-JavaScript file
I would like to have a html file with JavaScript, which (file) is able to modify its context. In more details, I imagine it like that. I have a html file, which I open with a browser. I have a text ...
0
votes
2answers
103 views
Reading/Writing self heap
Could the own heap space be readed? could the software be self modified in memory?
I write some code to show the subject,
am I reading own code at memory?
how (if possible) to write it and change ...