开发者

Authentication with wget

开发者 https://www.devze.com 2023-01-01 21:33 出处:网络
I am currently accepting the parameters login and password in my servlet, but logs are storing this info when using wget (as long as it 开发者_高级运维is GET method, and apache is in the middle)

I am currently accepting the parameters login and password in my servlet, but logs are storing this info when using wget (as long as it 开发者_高级运维is GET method, and apache is in the middle)

Instead of this I want to enhance my servlet's authentication accepting:

wget --http-user=login --http-password=password http://myhost/myServlet

How can I read, in my servlet, the server side, the login and the password user is sending, in java code?


Can you not persuade your servlet clients to use POST instead of GET? wget has --post-data and --post-file options which might do what you need it.

wget's --http-user and --http-password options cause it to send HTTP Basic authentication. They are normally used for simple access control enforced by the web server itself, typically mediated by a .htaccess file; you'll have to consult your servlet framework documentation to find out whether that is available to you.

0

精彩评论

暂无评论...
验证码 换一张
取 消