This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import r2pipe | |
| r2 = r2pipe.open('http://192.168.100.64:1337') | |
| def cont(): | |
| print(r2.cmd('dc')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Colors] | |
| AbstractTableViewBackgroundColor=#252526 | |
| AbstractTableViewHeaderTextColor=#000000 | |
| AbstractTableViewSelectionColor=#323238 | |
| AbstractTableViewSeparatorColor=#64646F | |
| AbstractTableViewTextColor=#E8EADE | |
| DisassemblyAddressBackgroundColor=#XXXXXX | |
| DisassemblyAddressColor=#BD63C5 | |
| DisassemblyAutoCommentBackgroundColor=#XXXXXX | |
| DisassemblyAutoCommentColor=#787878 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import psycopg2 as pg | |
| from io import BytesIO | |
| from collections import defaultdict | |
| from contextlib import contextmanager | |
| from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT, ISOLATION_LEVEL_READ_COMMITTED | |
| READ_COMMIT = ISOLATION_LEVEL_READ_COMMITTED | |
| AUTO_COMMIT = ISOLATION_LEVEL_AUTOCOMMIT |