2016-09-16 3 views
0

저는 Mac El Capitan에서 bash shell을 사용하고 있습니다. curl을 사용하여 프록시 서버에 빈 사용자 이름/암호를 전달하려면 어떻게합니까? 나는이curl을 사용하여 빈 프록시 사용자 이름/비밀번호를 어떻게 전달합니까?

localhost:tmp davea$ curl http://www.google.com --proxy localhost:9050 --proxy-user "":"" 
514 Authentication required. 

내가

tor --CookieAuthentication 0 --HashedControlPassword "" --ControlPort 9050 --SocksPort 50001 

과 내가 그렇게

localhost:tmp davea$ telnet localhost 9050 
Trying ::1... 
telnet: connect to address ::1: Connection refused 
Trying 127.0.0.1... 
Connected to localhost. 
Escape character is '^]'. 
AUTHENTICATE 
250 OK 
같은 암호를 입력하지 않고 텔넷을 통해 연결할 수있어이 명령을 사용하여 내 컴퓨터에 토르 데몬을 실행하는거야 시도

그래서 적어도 내 비밀번호가 정확한지 알고 있습니다.

답변