Skip to content

Commit

Permalink
add x64dbg dialect
Browse files Browse the repository at this point in the history
x64dbg dialect is used to send commands to the debugger from IDA.
  • Loading branch information
bootleg committed Jun 5, 2015
1 parent e313e7b commit 0b11e67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ext_ida/SyncPlugin.py
@@ -1,5 +1,5 @@
#
# Copyright (C) 2012-2014, Quarkslab.
# Copyright (C) 2012-2015, Quarkslab.
#
# This file is part of qb-sync.
#
Expand Down Expand Up @@ -101,6 +101,7 @@
'windbg': {'prefix': '!', 'si': 't', 'so': 'p', 'go': 'g', 'bp': 'bp ', 'hbp': 'ba e 1 ', 'bp1': 'bp /1 ', 'hbp1': 'ba e 1 /1 '},
'gdb': {'prefix': '', 'si': 'si', 'so': 'ni', 'go': 'continue', 'bp': 'b *', 'hbp': 'hb *', 'bp1': 'tb *', 'hbp1': 'thb *'},
'ollydbg2': {'prefix': '', 'si': 'si', 'so': 'so', 'go': 'go', 'bp': 'bp ', 'hbp': 'xxx ', 'bp1': 'xxx ', 'hbp1': 'xxx '},
'x64_dbg': {'prefix': '', 'si': 'sti', 'so': 'sto', 'go': 'go', 'bp': 'bp ', 'hbp': 'bph ', 'bp1': 'xxx ', 'hbp1': 'xxx '},
}

# --------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion ext_ida/broker.py
@@ -1,5 +1,5 @@
#
# Copyright (C) 2012-2014, Quarkslab.
# Copyright (C) 2012-2015, Quarkslab.
#
# This file is part of qb-sync.
#
Expand Down
2 changes: 1 addition & 1 deletion ext_ida/dispatcher.py
@@ -1,5 +1,5 @@
#
# Copyright (C) 2012-2014, Quarkslab.
# Copyright (C) 2012-2015, Quarkslab.
#
# This file is part of qb-sync.
#
Expand Down

0 comments on commit 0b11e67

Please sign in to comment.