Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
11answers
997 views

What language is to binary, as Perl is to text?

I am looking for a scripting (or higher level programming) language (or e.g. modules for Python or similar languages) for effortlessly analyzing and manipulating binary data in files (e.g. core ...
7
votes
2answers
816 views

Auto Patcher (Efficient Auto Updater)

I want an auto updater that detect modified files (by comparing files on the client-side and a server) and only download modified files. I also want it to give me its status lively (To show it on a ...
7
votes
9answers
1k views

I don't “get” how a program can update itself. How can I make my software update?

Say I make an .exe file and everything is peachy. Wonderful it works. Say I worked on a new feature on the software and I want it to be available for people who already have the older version, how ...
7
votes
4answers
2k views

Anyone know of a good free patch creator?

Does anyone know of a good patching program that is free? You know, one that can take a directory with your old program in it and compare it to a directory with your new version, and spit out a patch ...
7
votes
7answers
1k views

Self Updating

What's the best way to terminate a program and then run additional code from the program that's being terminated? For example, what would be the best way for a program to self update itself?
5
votes
4answers
338 views

To (monkey)patch or not to (monkey)patch, that is the question

I was talking to a colleague about one rather unexpected/undesired behavior of some package we use. Although there is an easy fix (or at least workaround) on our end without any apparent side effect, ...
5
votes
5answers
702 views

How to dynamically patch a running ASP.NET application?

Does anyone have a sample of how to patch a running asp.net app? The scenario I'm envisioning is that the app could look to a known central server for newer versions. Download the newer files to a ...
5
votes
3answers
310 views

How do you apply patches on a web project at production server?

We recently had a project where we released beta of a big web app on our client's server. Our client requested us to do bug fixes as they come, and we tried to do it same way. Normally while building ...
3
votes
4answers
92 views

Patching a .NET Application

Today I was debugging an issue a customer had remotely, and rather than build a whole new installation and send it to him, I just compiled the dll, made sure the version information was identical to ...
3
votes
5answers
1k views

git add --interactive “Your edited hunk does not apply”

I'm trying to use git add --interactive to selectively add some changes to my index, but I continually receive the "Your edited hunk does not apply. Edit again..." message. I get this message even if ...
3
votes
1answer
212 views

How to update application files using patching?

I am not interested in any auto update solution, such as ClickOnce or the MS Updater Block. For anyone feeling the urge to ask why not: I am already using these and there is nothing wrong with them, I ...
3
votes
3answers
1k views

How to overwrite some bytes in the middle of a file with Python?

I'd like to be able to overwrite some bytes at a given offset in a file using Python. My attempts have failed miserably and resulted : - either in overwriting the bytes at given offset but also ...
2
votes
3answers
47 views

Patching: Replacing a method call with another

I use Python's mocking framework for tests - It works great! However, one thing I wasn't able to figure out, is how to patch a function so that I replace the call with another function. Example: # ...
2
votes
1answer
60 views

Mocking before importing a module

How can I patch and mock getLogger in this module under test (MUT): # Start of the module under test import logging log = logging.getLogger('some_logger') # ... I would like to do: ...
2
votes
2answers
220 views

Versioning when binary AND text files are involved?

I have a project where I need to maintain changes to both the text and binary files. I have a couple of options: Use patches Use a versioning system like git or hg. For my purposes, patches are a ...
2
votes
1answer
97 views

OSGi Application Patching Strategy

What are appropriate mechanisms for patching an OSGi container. 1) Should the bundles (binaries/jars) have the same name as the old ones then: a. Replace the bundle with the with ...
2
votes
3answers
420 views

Can you help with this assembly language code?

I've been looking through a piece of code of a pc game that I'm trying to "improve". (ok so maybe I suck at the game but I still want to play it). Could you please look into the following code: fld ...
2
votes
3answers
264 views

Git working with patches

To follow up on my previous question Git work flow with an inexpirenced member. I choose to have him send patches to me. The problem is i haven't used patches before and i can't find tutorials giving ...
2
votes
3answers
1k views

Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user

For various complicated reasons[1] I need to add extra properties to the Django User class. I can't use either Profile nor the "inheritance" way of doing this. (As in ...
2
votes
2answers
391 views

Hooking sycalls from userspace on Linux

Is there any way to catch all syscalls on Linux? The only solution I know of is using LD_PRELOAD à la fakeroot, but that only works for dynamically linked applications. Furthermore, this approach ...
2
votes
3answers
606 views

Hooking syscalls from userspace on Windows

I'm patching connect() to redirect network traffic as part of a library (NetHooker) and this works well, but it depends on ws2_32.dll remaining the same and doesn't work if the syscall is used ...
1
vote
0answers
75 views

How to patch iPhone Apps using IDA /pro?

I am trying to patch my own programs which I created for this task. Unfortunately, once I do really simple patches and send the App to my iPod touch, it crashes as soon as I launch the App. I'm ...
1
vote
1answer
80 views

C - Inline asm patching at runtime

I am writing a program in C and i use inline asm. In the inline assembler code is have some addresses where i want to patch them at runtime. A quick sample of the code is this: void ...
1
vote
2answers
40 views

Adding a function to a Linux binary

as part of a homework assignment for my security class, I'm supposed to "add a simple function which prints "Hello, World!" to a compiled C Linux binary". The binary provided is just a compiled main ...
1
vote
1answer
1k views

How to make Patch-able/Update-able application?

I have completed a student project, this project extract data from xml files on internet and save to database and displays it. And i use that data in a few different ways e.g. display on main page, in ...
1
vote
1answer
427 views

Modifying Patch Creation Properties (.pcp) file programmatically?

Is there a way to script the complete process of a hotfix build using msiexec.exe and msimsp.exe with a Patch Creation Properties file? I use msiexec.exe to create network installations of the before ...
1
vote
1answer
214 views

Patching out CALLL by replacing with NOPs works in user space but not in kernel space

I have a device driver I want to patch. This device driver calls IOLog and I want to get rid of the logging. If I replace the CALLL to IOLog with (the corresponding number of) NOPs inside the device ...
0
votes
2answers
29 views

Patching a simple c program with IDA PRO get segmentation fault

This is my program: #include <stdio.h> int main(){ int var=5; if(var==5) printf("Accesso effettuato!"); else printf("Access denied"); } I change the op code... in the hex edit like in ...
0
votes
1answer
20 views

Access to different versions of taskmgr.exe for analysis

I'm looking to get hold of different versions of taskmgr.exe from different versions of Windows, in order to test a Task Manager addon I'm building. I've managed to get some basic additional ...
0
votes
1answer
78 views

Patching with ida pro

I have a program like this #include <stdio.h> int somma(x,y){ return x+y; } int diff(x,y){ return x-y; } int main(){ int x=5; int y=4; printf("la somma e' %d", somma(x,y)); ...
0
votes
1answer
40 views

How to create patch for Kohana?

I've found a bug at Kohana couple hours ago and fixed it. After that I found a ticket at Redmine describing same issue. Now I want to create patch for the bug but I dont know how to do this. Could ...
0
votes
1answer
53 views

Is there any patch tools that work well with mercurial, when patch-based workflows fail causing .rej hunks in your repo

I am looking for a better patch tool than the ones built into Mercurial, or a visual tool to help me edit patches so that they will get accepted into Mercurial or Gnu patch. The mercurial wiki has a ...
0
votes
1answer
54 views

Mocking a function throughout a project

I would like to mock a certain function in a utility module throughout my project, as part of a testing suite. I could of course patch and mock this function for each module using it, but there are a ...
0
votes
0answers
47 views

Memory patching - is it legal or not? [closed]

Is patching an executable in memory illegal? If yes, does it depend on local laws? If not, can it be disallowed by an EULA?
0
votes
0answers
149 views

API hook can be thread safe?

I made a sample about API hook with IAT hook skill. But my sample works with not Windows Vista & 7 But Windows XP and 2003. I discoverd change of IAT in the dll that is the target of API hook. So ...
0
votes
3answers
93 views

Changing parts of compiled binaries

learned english as a second lang, sorry for the mistakes & awkwardness I have given a peculiar project to work on. The company has lost the source code for the app, and I have to make changes to ...
0
votes
2answers
183 views

OSGi fragments: Patching bugs in Eclipse plug-ins

After hearing about OSGi fragments, I was wondering: Can I use a fragment to inject a patch, that is, replace an existing class in an existing, signed bundle? Is there documentation how to do that?
0
votes
1answer
87 views

Dynamic patching of executable on BSD/Unix

I'm facing quite a big problem. I need to patch an executable to modify its behaviour. The program is written in C and until now I've been using IDA to edit it, but that way I couldn't for example ...
0
votes
1answer
23 views

Rails - how do I confirm the version of a plugin

I noticed that a rails plug-in I am using has had several fixes made to it, and im a little worried about all the other rails apps i have written. Ideally I would like to have a script that can ...
0
votes
2answers
151 views

Is there a way to create a patch that is identical to doing a full install of the newer version?

I'm trying to create patches using the method from this tutorial. An issue I'm running into is that I can't install a new patch on top of a previous patch. I can full install Version A,then patch to ...
0
votes
1answer
284 views

Resolving patch conflicts manually

I've downloaded a patch from some site and trying to apply it (twisted, python web framework). Several hunks failed. How do I automate manual patching process using vim? Details: I'm trying to ...
0
votes
2answers
122 views

Cross platform patching

I have a program that I intend to install on Linux and Windows machines. I have it cross-compiling fine (with autotools), but at some point I would like the program to be able to update its binaries. ...