Skip to content

Commit eff606d

Browse files
committed
Make warning more accurate
1 parent 0748244 commit eff606d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nxc/netexec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def main():
195195
protocol_object.module_paths = proto_module_paths
196196

197197
if args.execute and args.protocol == "rdp":
198-
ans = input(highlight("[!] Executing remote command via RDP will lock the Windows session (not disconnect) if the targeted user is connected via RDP, do you want to continue ? [Y/n] ", "red"))
198+
ans = input(highlight("[!] Executing remote command via RDP will disconnect the Windows session (not log off) if the targeted user is connected via RDP, do you want to continue ? [Y/n] ", "red"))
199199
if ans.lower() not in ["y", "yes", ""]:
200200
exit(1)
201201

0 commit comments

Comments
 (0)