We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37eb10c commit 580ac93Copy full SHA for 580ac93
custom_routes.py
@@ -222,6 +222,6 @@ async def shellagent_check_exist(request):
222
data = await request.json()
223
224
return_dict = {
225
- "exist": os.path.exists(data["path"])
+ "exist": uuid.getnode() == data["mac_addr"] and os.path.exists(data["path"]) # really exist, instead of same name
226
}
227
return web.json_response(return_dict, status=200)
0 commit comments