Code injection - Solaris & Linux - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T07:17:31Zhttp://stackoverflow.com/feeds/question/378158http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378158/code-injection-solaris-linux1Code injection - Solaris & LinuxDmitry Khalatov2008-12-18T15:19:36Z2008-12-18T15:45:20Z
<p>I have an executable module created by third party. I would like to "inject" my code (kind of watchdog running in separate thread) into this process. </p>
<p>So far there are two possible ways - one is to run my code as executable and dynamically load a proess on top of it (seems to be very hard and tricky) or to make my code a shared object, load it via LD_PRELOAD and initialize from some static variable constructor.</p>
<p>Are there more convenient ways to do this ?
My OS are Linux x86 and Solaris-SPARC.</p>
<p>Update: If possible, I'd like not to patch the process, but load my code dynamicaly.</p>
http://stackoverflow.com/questions/378158/code-injection-solaris-linux/378202#3782023Answer by Rob Kennedy for Code injection - Solaris & LinuxRob Kennedy2008-12-18T15:35:33Z2008-12-18T15:35:33Z<p>Sounds like you're looking for <a href="http://www.securiteam.com/tools/5EP0P157PG.html" rel="nofollow">InjectSo</a>. There's a <a href="http://www.blackhat.com/presentations/bh-europe-01/shaun-clowes/bh-europe-01-clowes.ppt" rel="nofollow">Powerpoint presentation</a> that explains how it works. I haven't gotten around to trying it out yet.</p>
http://stackoverflow.com/questions/378158/code-injection-solaris-linux/378244#3782440Answer by Jonathan Leffler for Code injection - Solaris & LinuxJonathan Leffler2008-12-18T15:45:20Z2008-12-18T15:45:20Z<p>Rob Kennedy told you about InjectSo - that's probably what you need.</p>
<p>Beware that the introduction of a thread into a non-threaded process would be fraught with synchronization issues. The problems are less serious if the application is already threaded, but even so, the application may object to a thread that it doesn't know about.</p>