├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── deploy_book.yml ├── .gitignore ├── LICENSE ├── README.md ├── book ├── .gitignore ├── book.toml ├── src │ ├── SUMMARY.md │ ├── _assets │ │ ├── hook-dark.svg │ │ ├── hook-light.svg │ │ └── jmp-hook.excalidraw │ ├── asm │ │ ├── asm.md │ │ ├── assemble.md │ │ ├── code_len.md │ │ ├── disassemble.md │ │ ├── objects-inst.md │ │ └── objects.md │ ├── best-practices.md │ ├── cffi │ │ ├── cffi.md │ │ ├── conv.md │ │ ├── objects-callable.md │ │ ├── objects-nativecall.md │ │ ├── objects-wstr.md │ │ ├── objects.md │ │ └── type.md │ ├── configuration.md │ ├── examples.md │ ├── faq.md │ ├── here-be-dragons.md │ ├── hook │ │ ├── hook.md │ │ ├── hook_.md │ │ ├── objects-trampoline.md │ │ └── objects.md │ ├── iat │ │ ├── enum.md │ │ ├── enum_demangled.md │ │ ├── find.md │ │ ├── find_demangled.md │ │ ├── iat.md │ │ ├── objects-iatsymbol.md │ │ └── objects.md │ ├── info │ │ ├── info.md │ │ ├── object-version.md │ │ ├── objects.md │ │ └── version.md │ ├── introduction.md │ ├── log │ │ ├── debug.md │ │ ├── error.md │ │ ├── info.md │ │ ├── log.md │ │ ├── trace.md │ │ └── warn.md │ ├── mem │ │ ├── alloc.md │ │ ├── alloc_granularity.md │ │ ├── alloc_in.md │ │ ├── deep_pointer.md │ │ ├── mem.md │ │ ├── objects-alloc.md │ │ ├── objects-prot.md │ │ ├── objects.md │ │ ├── prot.md │ │ ├── read.md │ │ ├── set.md │ │ └── write.md │ ├── modules │ │ ├── enum.md │ │ ├── find.md │ │ ├── load.md │ │ ├── modules.md │ │ ├── objects-module.md │ │ ├── objects.md │ │ └── unload.md │ ├── popup │ │ ├── error.md │ │ ├── exclamation.md │ │ ├── info.md │ │ ├── popup.md │ │ ├── question.md │ │ └── warn.md │ ├── project-layout-and-setup.md │ ├── scan │ │ ├── data.md │ │ ├── pattern.md │ │ ├── scan.md │ │ └── sig.md │ ├── segments │ │ ├── enum.md │ │ ├── find.md │ │ ├── objects-segment.md │ │ ├── objects.md │ │ └── segments.md │ ├── symbols │ │ ├── demangle.md │ │ ├── enum.md │ │ ├── enum_demangled.md │ │ ├── find.md │ │ ├── find_demangled.md │ │ ├── objects-symbol.md │ │ ├── objects.md │ │ └── symbols.md │ ├── tips-and-tricks.md │ └── vmt │ │ ├── objects-vtable.md │ │ ├── objects.md │ │ └── vmt.md └── theme │ ├── catppuccin-admonish.css │ ├── catppuccin.css │ ├── checkboxes.js │ ├── custom.css │ ├── index.hbs │ ├── init.js │ ├── mdbook-admonish.css │ ├── pagetoc.css │ └── pagetoc.js └── rust ├── Cargo.lock ├── Cargo.toml ├── mutation ├── Cargo.toml └── src │ ├── asm.rs │ ├── hook.rs │ ├── iat.rs │ ├── lib.rs │ ├── memory.rs │ ├── memory │ └── monitor.rs │ ├── modules.rs │ ├── scan.rs │ ├── scan │ ├── README.md │ ├── aligned_bytes.rs │ ├── backends.rs │ ├── backends │ │ ├── avx2.rs │ │ ├── scalar.rs │ │ └── sse42.rs │ └── pattern.rs │ ├── segments.rs │ ├── symbols.rs │ ├── utils.rs │ └── vtable.rs ├── native-memory-scripter ├── Cargo.toml ├── build.rs └── src │ ├── config.rs │ ├── console.rs │ ├── interpreter.rs │ ├── lib.rs │ ├── logging.rs │ ├── modules.rs │ ├── modules │ ├── asm.rs │ ├── bootstrap.py │ ├── cffi.rs │ ├── cffi │ │ ├── args.rs │ │ ├── jit.rs │ │ ├── jit │ │ │ └── callback.rs │ │ ├── jitpoline.rs │ │ ├── ret.rs │ │ └── types.rs │ ├── hook.rs │ ├── iat.rs │ ├── info.rs │ ├── log.rs │ ├── mem.rs │ ├── modules.rs │ ├── popup.rs │ ├── scan.rs │ ├── segments.rs │ ├── symbols.rs │ └── vmt.rs │ ├── paths.rs │ ├── popup.rs │ └── utils.rs └── rust-toolchain.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: MolotovCherry 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/.github/workflows/deploy_book.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/README.md -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/_assets/hook-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/_assets/hook-dark.svg -------------------------------------------------------------------------------- /book/src/_assets/hook-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/_assets/hook-light.svg -------------------------------------------------------------------------------- /book/src/_assets/jmp-hook.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/_assets/jmp-hook.excalidraw -------------------------------------------------------------------------------- /book/src/asm/asm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/asm/asm.md -------------------------------------------------------------------------------- /book/src/asm/assemble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/asm/assemble.md -------------------------------------------------------------------------------- /book/src/asm/code_len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/asm/code_len.md -------------------------------------------------------------------------------- /book/src/asm/disassemble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/asm/disassemble.md -------------------------------------------------------------------------------- /book/src/asm/objects-inst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/asm/objects-inst.md -------------------------------------------------------------------------------- /book/src/asm/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/best-practices.md -------------------------------------------------------------------------------- /book/src/cffi/cffi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/cffi.md -------------------------------------------------------------------------------- /book/src/cffi/conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/conv.md -------------------------------------------------------------------------------- /book/src/cffi/objects-callable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/objects-callable.md -------------------------------------------------------------------------------- /book/src/cffi/objects-nativecall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/objects-nativecall.md -------------------------------------------------------------------------------- /book/src/cffi/objects-wstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/objects-wstr.md -------------------------------------------------------------------------------- /book/src/cffi/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/cffi/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/cffi/type.md -------------------------------------------------------------------------------- /book/src/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/configuration.md -------------------------------------------------------------------------------- /book/src/examples.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /book/src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/faq.md -------------------------------------------------------------------------------- /book/src/here-be-dragons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/here-be-dragons.md -------------------------------------------------------------------------------- /book/src/hook/hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/hook/hook.md -------------------------------------------------------------------------------- /book/src/hook/hook_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/hook/hook_.md -------------------------------------------------------------------------------- /book/src/hook/objects-trampoline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/hook/objects-trampoline.md -------------------------------------------------------------------------------- /book/src/hook/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/iat/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/enum.md -------------------------------------------------------------------------------- /book/src/iat/enum_demangled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/enum_demangled.md -------------------------------------------------------------------------------- /book/src/iat/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/find.md -------------------------------------------------------------------------------- /book/src/iat/find_demangled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/find_demangled.md -------------------------------------------------------------------------------- /book/src/iat/iat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/iat.md -------------------------------------------------------------------------------- /book/src/iat/objects-iatsymbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/iat/objects-iatsymbol.md -------------------------------------------------------------------------------- /book/src/iat/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/info/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/info/info.md -------------------------------------------------------------------------------- /book/src/info/object-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/info/object-version.md -------------------------------------------------------------------------------- /book/src/info/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/info/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/info/version.md -------------------------------------------------------------------------------- /book/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/introduction.md -------------------------------------------------------------------------------- /book/src/log/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/debug.md -------------------------------------------------------------------------------- /book/src/log/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/error.md -------------------------------------------------------------------------------- /book/src/log/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/info.md -------------------------------------------------------------------------------- /book/src/log/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/log.md -------------------------------------------------------------------------------- /book/src/log/trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/trace.md -------------------------------------------------------------------------------- /book/src/log/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/log/warn.md -------------------------------------------------------------------------------- /book/src/mem/alloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/alloc.md -------------------------------------------------------------------------------- /book/src/mem/alloc_granularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/alloc_granularity.md -------------------------------------------------------------------------------- /book/src/mem/alloc_in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/alloc_in.md -------------------------------------------------------------------------------- /book/src/mem/deep_pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/deep_pointer.md -------------------------------------------------------------------------------- /book/src/mem/mem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/mem.md -------------------------------------------------------------------------------- /book/src/mem/objects-alloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/objects-alloc.md -------------------------------------------------------------------------------- /book/src/mem/objects-prot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/objects-prot.md -------------------------------------------------------------------------------- /book/src/mem/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/mem/prot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/prot.md -------------------------------------------------------------------------------- /book/src/mem/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/read.md -------------------------------------------------------------------------------- /book/src/mem/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/set.md -------------------------------------------------------------------------------- /book/src/mem/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/mem/write.md -------------------------------------------------------------------------------- /book/src/modules/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/enum.md -------------------------------------------------------------------------------- /book/src/modules/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/find.md -------------------------------------------------------------------------------- /book/src/modules/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/load.md -------------------------------------------------------------------------------- /book/src/modules/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/modules.md -------------------------------------------------------------------------------- /book/src/modules/objects-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/objects-module.md -------------------------------------------------------------------------------- /book/src/modules/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/modules/unload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/modules/unload.md -------------------------------------------------------------------------------- /book/src/popup/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/error.md -------------------------------------------------------------------------------- /book/src/popup/exclamation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/exclamation.md -------------------------------------------------------------------------------- /book/src/popup/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/info.md -------------------------------------------------------------------------------- /book/src/popup/popup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/popup.md -------------------------------------------------------------------------------- /book/src/popup/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/question.md -------------------------------------------------------------------------------- /book/src/popup/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/popup/warn.md -------------------------------------------------------------------------------- /book/src/project-layout-and-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/project-layout-and-setup.md -------------------------------------------------------------------------------- /book/src/scan/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/scan/data.md -------------------------------------------------------------------------------- /book/src/scan/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/scan/pattern.md -------------------------------------------------------------------------------- /book/src/scan/scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/scan/scan.md -------------------------------------------------------------------------------- /book/src/scan/sig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/scan/sig.md -------------------------------------------------------------------------------- /book/src/segments/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/segments/enum.md -------------------------------------------------------------------------------- /book/src/segments/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/segments/find.md -------------------------------------------------------------------------------- /book/src/segments/objects-segment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/segments/objects-segment.md -------------------------------------------------------------------------------- /book/src/segments/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/segments/segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/segments/segments.md -------------------------------------------------------------------------------- /book/src/symbols/demangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/demangle.md -------------------------------------------------------------------------------- /book/src/symbols/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/enum.md -------------------------------------------------------------------------------- /book/src/symbols/enum_demangled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/enum_demangled.md -------------------------------------------------------------------------------- /book/src/symbols/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/find.md -------------------------------------------------------------------------------- /book/src/symbols/find_demangled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/find_demangled.md -------------------------------------------------------------------------------- /book/src/symbols/objects-symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/objects-symbol.md -------------------------------------------------------------------------------- /book/src/symbols/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/symbols/symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/symbols/symbols.md -------------------------------------------------------------------------------- /book/src/tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/tips-and-tricks.md -------------------------------------------------------------------------------- /book/src/vmt/objects-vtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/vmt/objects-vtable.md -------------------------------------------------------------------------------- /book/src/vmt/objects.md: -------------------------------------------------------------------------------- 1 | # objects 2 | -------------------------------------------------------------------------------- /book/src/vmt/vmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/src/vmt/vmt.md -------------------------------------------------------------------------------- /book/theme/catppuccin-admonish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/catppuccin-admonish.css -------------------------------------------------------------------------------- /book/theme/catppuccin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/catppuccin.css -------------------------------------------------------------------------------- /book/theme/checkboxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/checkboxes.js -------------------------------------------------------------------------------- /book/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/custom.css -------------------------------------------------------------------------------- /book/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/index.hbs -------------------------------------------------------------------------------- /book/theme/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/init.js -------------------------------------------------------------------------------- /book/theme/mdbook-admonish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/mdbook-admonish.css -------------------------------------------------------------------------------- /book/theme/pagetoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/pagetoc.css -------------------------------------------------------------------------------- /book/theme/pagetoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/book/theme/pagetoc.js -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/mutation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/Cargo.toml -------------------------------------------------------------------------------- /rust/mutation/src/asm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/asm.rs -------------------------------------------------------------------------------- /rust/mutation/src/hook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/hook.rs -------------------------------------------------------------------------------- /rust/mutation/src/iat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/iat.rs -------------------------------------------------------------------------------- /rust/mutation/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/lib.rs -------------------------------------------------------------------------------- /rust/mutation/src/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/memory.rs -------------------------------------------------------------------------------- /rust/mutation/src/memory/monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/memory/monitor.rs -------------------------------------------------------------------------------- /rust/mutation/src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/modules.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/README.md -------------------------------------------------------------------------------- /rust/mutation/src/scan/aligned_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/aligned_bytes.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/backends.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/backends.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/backends/avx2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/backends/avx2.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/backends/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/backends/scalar.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/backends/sse42.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/backends/sse42.rs -------------------------------------------------------------------------------- /rust/mutation/src/scan/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/scan/pattern.rs -------------------------------------------------------------------------------- /rust/mutation/src/segments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/segments.rs -------------------------------------------------------------------------------- /rust/mutation/src/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/symbols.rs -------------------------------------------------------------------------------- /rust/mutation/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/utils.rs -------------------------------------------------------------------------------- /rust/mutation/src/vtable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/mutation/src/vtable.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/Cargo.toml -------------------------------------------------------------------------------- /rust/native-memory-scripter/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/build.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/config.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/console.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/console.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/interpreter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/interpreter.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/lib.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/logging.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/asm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/asm.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/bootstrap.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/args.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/jit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/jit.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/jit/callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/jit/callback.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/jitpoline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/jitpoline.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/ret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/ret.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/cffi/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/cffi/types.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/hook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/hook.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/iat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/iat.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/info.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/log.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/mem.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/modules.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/popup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/popup.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/scan.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/segments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/segments.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/symbols.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/modules/vmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/modules/vmt.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/paths.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/popup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/popup.rs -------------------------------------------------------------------------------- /rust/native-memory-scripter/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/native-memory-scripter/src/utils.rs -------------------------------------------------------------------------------- /rust/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MolotovCherry/Native-Memory-Scripter/HEAD/rust/rust-toolchain.toml --------------------------------------------------------------------------------