1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! This library helps injecting dynamic libraries into processes
//! and manipulating the memory of these processes.
//! Currently only Linux is supported but support for other platforms (freebsd, windows) is coming.
//!
//! ```rust
//! use injex::prelude::*;
//!
//! # use std::error::Error;
//! #
//! # fn main() -> Result<(), Box<dyn Error>> {
//!
//! let anon = AnonManipulator::new("game_name")?;
//! inject(&anon, anon.pid(), "path/to/dynamic_library")?;
//! # Ok(())
//! # }
//! ```
//! ```rust
//! // Dynamic Library in its own crate
//!
//! use std::thread;
//! use injex::prelude::*;
//!
//! #[link_section = ".init_array"]
//! static INITIALIZE: fn() = init;
//!
//! fn init() {
//! thread::spawn(move || -> thread::Result<()> {
//! let manipulator = InternalManipulator {}
//! println!("{:?}", manipulator.memory_maps());
//! let address = manipulator.find(0, 1024, &[0, 3, 10, 32, 1]).unwrap();
//! loop {
//! manipulator.write(address, &[255, 255, 255, 255]).unwrap();
//! }
//! });
//! }
//!
//! ```