Skip to content

Releases: cbiesinger/JsDbg

JsDbg for GDB release 0.8.9

17 Jul 19:56

Choose a tag to compare

Pre-release

This release comes with updates to extensions and better tested Python 2 support, as well as a .deb package for easier installation.

Installation instructions for the .deb package (Debian/Ubuntu):

sudo apt install ./jsdbg_0.8.9-1_amd64.deb

Installation instructions for the .tar.bz2 file:

cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOF

Then, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.

JsDbg for GDB release 0.8.8

16 May 19:29

Choose a tag to compare

Pre-release

This release makes JsDbg work with Python 2, though this is not tested much.

Installation instructions:

cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOF

Then, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.

JsDbg for GDB release 0.8.7

16 May 18:06

Choose a tag to compare

Pre-release

Installation instructions:

cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOF

Then, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.

JsDbg for GDB release 0.8.5

13 May 17:06

Choose a tag to compare

Pre-release

Installation instructions:

cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOF

Then, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.

JsDbg for GDB release 0.8

07 May 21:08

Choose a tag to compare

Pre-release

Installation instructions:

cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOF

Then, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.