Skip to content

Commit

Permalink
update references to nitro.libvmi module
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Tarral committed Jun 27, 2018
1 parent 44ef720 commit 4c252da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@
from pprint import pprint

import libvirt
from libvmi import LibvmiError
from docopt import docopt

from nitro.nitro import Nitro
from nitro.libvmi import LibvmiError



def init_logger():
logger = logging.getLogger()
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.INFO)
logger.setLevel(logging.DEBUG)


class NitroRunner:
Expand Down
2 changes: 1 addition & 1 deletion nitro/backends/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections import defaultdict

from nitro.event import SyscallDirection
from nitro.libvmi import LibvmiError
from libvmi import LibvmiError

class Backend:
"""
Expand Down
2 changes: 1 addition & 1 deletion nitro/backends/factory.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from nitro.libvmi import VMIOS, Libvmi
from libvmi import VMIOS, Libvmi
from nitro.backends.linux import LinuxBackend
from nitro.backends.windows import WindowsBackend

Expand Down
2 changes: 1 addition & 1 deletion nitro/backends/linux/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

from ctypes import sizeof, c_void_p

from libvmi import LibvmiError
from nitro.syscall import Syscall
from nitro.event import SyscallDirection
from nitro.libvmi import LibvmiError
from nitro.backends.linux.process import LinuxProcess
from nitro.backends.backend import Backend
from nitro.backends.linux.arguments import LinuxArgumentMap
Expand Down

0 comments on commit 4c252da

Please sign in to comment.