The patching tag has no wiki summary.
1
vote
1answer
57 views
GDB Patching results in "Cannot access memory at address 0x
I have a program that I need to patch using GDB. The issue is there is a line of code that makes a "less than or equal test" and fails causing the program to end with a Segmentation fault. The ...
1
vote
1answer
23 views
Keep patched kernel module over updates
After a small modification of a kernel module (eg. adding just another USB DeviceId to a device driver), is it possible to hold back updates for this module (eg. by apt-get upgrade) and is there any ...
0
votes
2answers
247 views
how to get vertical gradient fill in matlab plot
I have a function y=x^2 to plot and I would like to fill the area bound by this curve with gradient color from black to red along the y direction. I found the color online
x = linspace(-3, 3, 20)';
f ...
-1
votes
4answers
181 views
How to force PHP set correct permissions on files uploading?
I have server with FreeBSD 8.0, Apache 2.2.23 and PHP 5.4.10. That is my VirtualHost config:
<VirtualHost *>
ServerName site.com
ServerAlias www.site.com
DocumentRoot ...
0
votes
2answers
64 views
How do I detect a previous version when using a standard patch
I've successfully created a Standard Patch using InstallShield 2011 Basic MSI. I'm having trouble with it detecting an earlier version of the application that has been installed. For instance, I have ...
0
votes
1answer
39 views
How to patch javascript plugins and keep them maintainable
These days when I code JavaScript I find myself using more and more plugins to accomplish common tasks. Often times when I use an existing plugin, e.g. to display tooltips, I'm not quite happy with ...
3
votes
2answers
86 views
Patching an OS X App Easily
What's the simplest way to patch an OS X app not issued through the Mac App Store?
From what I've gathered, the "standard" way is via bsdiff and bspatch, but I've noticed that a bunch of programs ...
0
votes
0answers
88 views
OS X app patching and codesign issues [closed]
On Snow Leopard, after making a single byte modification to the binary of an app (downloaded from app stored) the application fails to launch; crashing with exception "Code Signature Invalid".
I ...
1
vote
1answer
213 views
Best way to fix IAT and relocs when patching (merging) two different binaries (x86 PE)?
First of - Hello and thank you for reading this,
I have one DLL which I do not have the source code but need to add some functionalities into it.
I made up another DLL implementing all these needed ...
0
votes
0answers
134 views
How to I import patch in exporting to xls? (Fix for frozen string in Ruby On Rails)
I'm trying to export data to Excel using
http://code.dblock.org/exporting-data-to-excel-in-ruby-on-rails-w-spreadsheet-and-toxls
and I added to the Gemfile:
gem "spreadsheet", "0.6.5.8"
gem ...
1
vote
4answers
228 views
sed append after multi-line match
I got some code which looks like this:
lots of code...
start(){
some code...
if mountpart "$1" /mnt -w ; then
some code...
}
lots of code...
I would now like to insert some new code after if ...
0
votes
1answer
145 views
Is there auto updater/patcher you can implement for you java/scala app?
I'm making a game which I'm planning to update a lot. The previous game I made, I just let users download whole game or patches every time a new version is released but I want to implement online ...
1
vote
0answers
54 views
.NET 4.0 LDAP bind fails after patch install
Have a rather weird issue. Once .NET 4.0 framework patches are applied on a win2k3 box, the application running on it fails at the bind operation to AD. Specific error: ...
4
votes
1answer
437 views
Applying patch files using perl?
This should be simple,
Is there a way to apply .patch files using perl?
I am aware I can use system I am looking for a module or something. I have looked on search.cpan.org but I guess I am not ...
0
votes
1answer
484 views
Assembler STRB instructions armv7
I have this code:
STRB R2, [R0,R1]
and its opcode is 42 54
I'm using this table http://imrannazar.com/ARM-Opcode-Map
but I so 54 is the opcode of my strb istructions.
What I want is ...
0
votes
2answers
515 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 ...
2
votes
1answer
646 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 ...
0
votes
1answer
79 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
343 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));
...
1
vote
1answer
229 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
98 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 ...
0
votes
1answer
59 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 ...
1
vote
1answer
157 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 ...
2
votes
3answers
55 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:
# ...
0
votes
1answer
72 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 ...
2
votes
1answer
104 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:
...
3
votes
4answers
227 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 ...
0
votes
3answers
130 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 ...
2
votes
2answers
320 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
161 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 ...
0
votes
2answers
466 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
127 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 ...
8
votes
2answers
2k 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 ...
10
votes
8answers
4k 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 ...
2
votes
1answer
2k 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 ...
0
votes
1answer
25 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
178 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 ...
3
votes
1answer
283 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 ...
0
votes
1answer
627 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 ...
7
votes
4answers
454 views
To (monkey)patch or not to (monkey)patch, that is the ques‌tion [closed]
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, ...
9
votes
9answers
3k 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 ...
1
vote
1answer
713 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 ...
2
votes
3answers
716 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 ...
5
votes
5answers
1k 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 ...
12
votes
11answers
1k 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 ...
8
votes
5answers
3k 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 ...
0
votes
2answers
177 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. ...
2
votes
3answers
434 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
2k 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 ...
4
votes
3answers
2k 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 ...

