Code injection - Solaris & Linux - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:17:31Z http://stackoverflow.com/feeds/question/378158 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378158/code-injection-solaris-linux 1 Code injection - Solaris & Linux Dmitry Khalatov 2008-12-18T15:19:36Z 2008-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#378202 3 Answer by Rob Kennedy for Code injection - Solaris & Linux Rob Kennedy 2008-12-18T15:35:33Z 2008-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#378244 0 Answer by Jonathan Leffler for Code injection - Solaris & Linux Jonathan Leffler 2008-12-18T15:45:20Z 2008-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>