Skip to content

Commit 1cf07ac

Browse files
Kyle-Kyletesuji
authored andcommitted
use the trixie private key
1 parent 647c449 commit 1cf07ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

igni/crasher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
SUCCESS_BANNER = b'Analysis Success!!!'
2222

2323
UTIL_DIR = os.path.join(os.path.dirname(__file__), "utils")
24-
KEY_PATH = os.path.join(UTIL_DIR, "img", "buster.id_rsa")
24+
KEY_PATH = os.path.join(UTIL_DIR, "img", "trixie.id_rsa")
2525
GDB_SCRIPT = os.path.join(UTIL_DIR, "gdb.py")
2626
PATCH_SCRIPT = os.path.join(UTIL_DIR, "patch.py")
2727
ANALYZE_SCRIPT = os.path.join(UTIL_DIR, "analyze.py")
@@ -87,7 +87,7 @@ def __init__(self, exp_path, kernel_path, mod_path=None, vmlinux_path=None):
8787
def connect(self):
8888
self.logger.debug("Connecting ssh...")
8989
try:
90-
self.ssh = ssh(user=USERNAME, host=IP, port=self.ssh_port, keyfile=self.key)
90+
self.ssh = ssh(user=USERNAME, host=IP, port=self.ssh_port, keyfile=self.key, ignore_config=True)
9191
return True
9292
except Exception as e:
9393
self.logger.exception(e)

0 commit comments

Comments
 (0)