Execute the given script over the given database file that was created earlier. Args: database (path): path to a database file created by the same program script (path): python script to be executed once the database is loaded
(self, database, script)
| 563 | raise NotImplementedError("Subclasses should implement this!") |
| 564 | |
| 565 | def executeScript(self, database, script): |
| 566 | """Execute the given script over the given database file that was created earlier. |
| 567 | |
| 568 | Args: |
| 569 | database (path): path to a database file created by the same program |
| 570 | script (path): python script to be executed once the database is loaded |
| 571 | """ |
| 572 | raise NotImplementedError("Subclasses should implement this!") |
| 573 | |
| 574 | class DisasVerifier(object): |
| 575 | """Abstract class that verifies that we are running inside our matching disassembler. |