From 1f9015e473392a118ddb3475ba6c2f83ae8c6a10 Mon Sep 17 00:00:00 2001 From: Hallowizer <40325350+Hallowizer@users.noreply.github.com> Date: Mon, 1 Mar 2021 12:27:03 -0800 Subject: [PATCH] sploitMixin.getServices bugfix --- exploit/ipc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exploit/ipc.js b/exploit/ipc.js index 00883e8..b36ea3b 100644 --- a/exploit/ipc.js +++ b/exploit/ipc.js @@ -709,7 +709,7 @@ sploitMixin.getServices = function(services, callback) { try { return callback.apply(undefined, serviceHandles); } finally { - for (var shi = 0; si < serviceHandles.length; shi++) { + for (var shi = 0; shi < serviceHandles.length; shi++) { this.svcCloseHandle(serviceHandles[shi]); } }