All Projects → codecat → catsight

codecat / catsight

Licence: GPL-3.0 license
Cross-platform process memory inspector

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to catsight

Rappel
A linux-based assembly REPL for x86, amd64, armv7, and armv8
Stars: ✭ 818 (+445.33%)
Mutual labels:  x64, x86-64
X64dbg
An open-source x64/x32 debugger for windows.
Stars: ✭ 37,825 (+25116.67%)
Mutual labels:  x64, x86-64
Distorm
Powerful Disassembler Library For x86/AMD64
Stars: ✭ 829 (+452.67%)
Mutual labels:  x64, x86-64
X86 Bare Metal Examples
Dozens of minimal operating systems to learn x86 system programming. Tested on Ubuntu 17.10 host in QEMU 2.10 and real hardware. Userland cheat at: https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly ARM baremetal setup at: https://github.com/cirosantilli/linux-kernel-module-cheat#baremetal-setup 学习x86系统编程的数十个最小操作系统。 已在QE…
Stars: ✭ 3,985 (+2556.67%)
Mutual labels:  x64, x86-64
oberon-07-compiler
Oberon-07 compiler for x64 (Windows, Linux), x86 (Windows, Linux, KolibriOS), MSP430x{1,2}xx, STM32 Cortex-M3
Stars: ✭ 45 (-70%)
Mutual labels:  x64, x86-64
Labeless
Labeless is a multipurpose IDA Pro plugin system for labels/comments synchronization with a debugger backend, with complex memory dumping and interactive Python scripting capabilities.
Stars: ✭ 378 (+152%)
Mutual labels:  x64, x86-64
Evoasm.rb
An AIMGP (Automatic Induction of Machine code by Genetic Programming) engine
Stars: ✭ 91 (-39.33%)
Mutual labels:  x64, x86-64
Beelzebub
The Lord of Flies - A hobby operating system
Stars: ✭ 24 (-84%)
Mutual labels:  x64, x86-64
Asm Cli
Interactive shell of assembly language(X86/X64) based on unicorn and keystone
Stars: ✭ 211 (+40.67%)
Mutual labels:  x64, x86-64
Onednn
oneAPI Deep Neural Network Library (oneDNN)
Stars: ✭ 2,600 (+1633.33%)
Mutual labels:  x64, x86-64
Reloaded.Assembler
Minimal .NET wrapper around the simple, easy to use Flat Assembler written by Tomasz Grysztar. Supports both x64 and x86 development.
Stars: ✭ 17 (-88.67%)
Mutual labels:  x64, x86-64
kasm
Assembler library for Kotlin
Stars: ✭ 40 (-73.33%)
Mutual labels:  x64, x86-64
FoxOS
The FoxOS main repository
Stars: ✭ 48 (-68%)
Mutual labels:  x64, x86-64
profiler-api
The portable version of JetBrains profiler API for .NET Framework / .NET Core / .NET / .NET Standard / Mono
Stars: ✭ 21 (-86%)
Mutual labels:  x64, x86-64
biefircate
Running x86-16 or x86-32 code from x86-64 UEFI; _very experimental_ • mirror of https://gitlab.com/tkchia/biefircate • developer notes at https://gitlab.com/tkchia/biefircate/-/blob/main/doc/NOTES.asciidoc
Stars: ✭ 47 (-68.67%)
Mutual labels:  x64, x86-64
Asm
Assembly Tutorial for DOS
Stars: ✭ 125 (-16.67%)
Mutual labels:  x64, x86-64
jsix
A hobby operating system for x86_64, boots with UEFI.
Stars: ✭ 60 (-60%)
Mutual labels:  x64, x86-64
Capstone.NET
.NET Core and .NET Framework binding for the Capstone Disassembly Framework
Stars: ✭ 108 (-28%)
Mutual labels:  x64, x86-64
MetalOS
Homebrew x64 OS written in C++ that runs Doom!
Stars: ✭ 33 (-78%)
Mutual labels:  x86-64
async
async is a tiny C++ header-only high-performance library for async calls handled by a thread-pool, which is built on top of an unbounded MPMC lock-free queue.
Stars: ✭ 25 (-83.33%)
Mutual labels:  x64

Catsight

Cross-platform process memory viewer inspired by x64dbg.

Features

  • Cross-platform (currently runs on Linux and Windows).
  • Attach to any process that your system user has access to.
  • Look at all the mapped pages of memory.
  • Browse and scroll through the memory of any process as an address table.
  • Disassemble code in memory regions and jump between references.
  • Byte pattern searching and generation in code sections.

Download & install

Pre-built binaries will be provided very soon on Itch.io.

Screenshots

Data tab

Code tab

Maps tab

String search

What this isn't

This is not a debugger. (At least, not yet.) It was not designed with debugging in mind, it is merely a process memory viewer.

Building

Catsight uses CMake to build.

Preparing the build

You'll need to make sure the Git submodules are initialized and updated first. For example:

$ git submodule update --init --recursive

Building on Linux

Building on Linux should work out of the box as long as the necessary dependencies are installed.

Using your favorite package manager, you will have to install lua and its development files.

Then, to actually run the CMake build:

$ mkdir build
$ cd build
$ cmake ..
$ make -j9

You can also use ninja by running CMake like this:

$ cmake .. -G Ninja
$ ninja

Building on Windows

On Windows, you can optionally use vcpkg to install the lua dependency using vcpkg install lua:x64-windows. You can then run CMake with -DCMAKE_TOOLCHAIN_FILE=C:/path/to/vcpkg/scripts/buildsystems/vcpkg.cmake before building and it will automatically find the dependencies.

To actually run the CMake build, you can use the CMake GUI application to generate a Visual Studio project, or you can use the command line:

> mkdir build
> cd build
> cmake ..

Using VSCode

VSCode is a great way to automatically configure and build the CMake project on both Linux and Windows. On Linux no additional configuration is necessary.

On Windows, you might need to add the following directive to .vscode/settings.json to make sure that the vcpkg toolchain is being used:

"cmake.configureSettings": {
	"CMAKE_TOOLCHAIN_FILE": "C:/path/to/vcpkg/scripts/buildsystems/vcpkg.cmake",
},
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].