Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k-stz/cl-ptrace
live process hacking - lisp bindings to ptrace()
https://github.com/k-stz/cl-ptrace
cffi common-lisp ptrace
Last synced: 8 days ago
JSON representation
live process hacking - lisp bindings to ptrace()
- Host: GitHub
- URL: https://github.com/k-stz/cl-ptrace
- Owner: k-stz
- License: mit
- Created: 2016-08-11T23:55:35.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-07T20:48:23.000Z (over 2 years ago)
- Last Synced: 2024-08-01T03:42:11.840Z (3 months ago)
- Topics: cffi, common-lisp, ptrace
- Language: Common Lisp
- Homepage:
- Size: 3.54 MB
- Stars: 51
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* About
Bindings to the ptrace() Linux system call, used to hack processes by altering the
process' memory.Should just work on 64bit CPUs!
* Videos
The following YouTube video series shows the code in action, all the while covering the
What, Why and How of Process Hacking and related concepts.Hopefully not cutting short on entertainment! ;)
Link:
[[https://www.youtube.com/watch?v=PuGgCOyBMyc&index=1&list=PLBgJcoaU2hl-JnoVOzjYB5qk_PfYjPm-I][YouTube Process Hacking Series]]* How to use it?
You can get the latest version via Ultralisp (fetches new commits in a 5min cycle from
this GitHub page). Simply add the Software distribution to Quicklisp's distribution pool:#+BEGIN_SRC lisp
(ql-dist:install-dist "http://dist.ultralisp.org/" :prompt nil)
#+END_SRCNow Quicklisp will also search for systems in the Ultralisp software distribution! You
can download and load the cl-ptrace system with Quicklisp:#+BEGIN_SRC lisp
(ql:quickload "cl-ptrace")
#+END_SRC
* How to remove it?
You can remove the Software distribution folders and the downloaded systems with:
#+BEGIN_SRC lisp
(ql-dist:uninstall (ql-dist:find-dist "ultralisp"))
#+END_SRC* Common Lisp Implementation
cl-ptrace was tested on sbcl and ccl, but should only work on 64bit CPUs as of now