Skip to content

Commit 580ac93

Browse files
committed
add mac_addr to check realy exist
1 parent 37eb10c commit 580ac93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_routes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,6 @@ async def shellagent_check_exist(request):
222222
data = await request.json()
223223

224224
return_dict = {
225-
"exist": os.path.exists(data["path"])
225+
"exist": uuid.getnode() == data["mac_addr"] and os.path.exists(data["path"]) # really exist, instead of same name
226226
}
227227
return web.json_response(return_dict, status=200)

0 commit comments

Comments
 (0)