Giter Site home page Giter Site logo

copycat's Introduction

Copycat

This project is meant to provide an easily usable library for overwriting system calls.

For example consider a program called "weird-program" that uses a hardcoded config path and opens it at runtime, let's say that config is /etc/config. Now suppose that you want it to use another config file and don't have much time on your hand and don't like beating around the bush, so you absolutely don't want to edit the source code of that program and recompile it. Instead with this library you can now do the following:

# Note that the syntax will probably change in the future
COPYCAT="/etc/config $HOME/.new-local-config" copycat -- weird-program

Tada, "weird-program" will now successfully use your new local config despite the hardcoded config and completely without recompiling. ๐Ÿฅณ

How does this work?

The way that this is implemented at the moment, is by intercepting the openat() system call using LD_PRELOAD and dlsym(). This has effectively no performance impact but the disadvantage is that it will not work with all binaries (e.g. not with statically linked binaries).

To make this work for all binaries, I intend to implement optional ptrace support in the future, which would also work for static binaries, but would be much slower (much like running the binary through a debugger).

If you'd like to test it out, you can install the copycat-git package from the AUR.

copycat's People

Contributors

vimpostor avatar sam9032 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.