-
-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File server handler needs reworking #160
Labels
enhancement
New feature or request
Comments
Thanks for reporting this, I will look into it shortly |
`
` |
I will rewrite the HTTP handler for better authentication, and when I am done there should be no problem with this upload function. |
TODO
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the put function(CChandle.go),I input
put '/root/too/curl.exe' 'c:\users\public\curl.exe'
, the author's code directly splices the absolute path of the local file (such as/root/tool/curl.exe
) towww/
. Although the file has been transferred to thewww/
at this time, when the agent downloads the file, it will downloadcurl.exe
onhttp://example.com/www//root/tool/curl.exe
instead ofhttp://example.com/www/curl.exe
. Buthttp://example.com/www//root/tool/
is 404The text was updated successfully, but these errors were encountered: