Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37588019
en ru br
ALT Linux repositórios
S:4.0.20100725-alt3
5.0: 4.0.20061122-alt2
4.1: 4.0.20061122-alt1
4.0: 4.0.20061122-alt1
3.0: 3.6-alt2

Group :: Rede/Outros
RPM: netcat

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

Patch: netcat-4.0.20100725-alt-proxy_pass.patch
Download


--- src/usr.bin/nc/nc.1
+++ src/usr.bin/nc/nc.1
@@ -39,7 +39,10 @@
 .Op Fl I Ar length
 .Op Fl i Ar interval
 .Op Fl O Ar length
-.Op Fl P Ar proxy_username
+.Oo Xo
+.Fl P Ar proxy_username Ns Oo : Ns
+.Ar proxy_password Oc Oc
+.Xc
 .Op Fl p Ar source_port
 .Op Fl s Ar source_ip_address
 .Op Fl T Ar ToS
@@ -140,9 +143,16 @@ Do not do any DNS or service lookups on any specified addresses,
 hostnames or ports.
 .It Fl O Ar length
 Specifies the size of the TCP send buffer.
-.It Fl P Ar proxy_username
-Specifies a username to present to a proxy server that requires authentication.
+.It Xo
+.Fl P Ar proxy_username Ns Oo : Ns
+.Ar proxy_password Oc
+.Xc
+Specifies a username and, optionally, password to present to a proxy
+server that requires authentication.
 If no username is specified then authentication will not be attempted.
+If no password is specified then
+.Nm
+will request it.
 Proxy authentication is only supported for HTTP CONNECT proxies at present.
 .It Fl p Ar source_port
 Specifies the source port
--- src/usr.bin/nc/netcat.c
+++ src/usr.bin/nc/netcat.c
@@ -993,7 +993,7 @@ help(void)
 	\t-l		Listen mode, for inbound connects\n\
 	\t-n		Suppress name/port resolutions\n\
 	\t-O length	TCP send buffer length\n\
-	\t-P proxyuser\tUsername for proxy authentication\n\
+	\t-P proxyuser[:pass]\tUsername and optionally password for proxy authentication\n\
 	\t-p port\t	Specify local port for remote connects\n\
 	\t-r		Randomize remote ports\n"
 #ifdef HAVE_TCP_MD5SIG
--- src/usr.bin/nc/socks.c
+++ src/usr.bin/nc/socks.c
@@ -286,10 +286,13 @@ socks_connect(const char *host, const char *port,
 
 		if (authretry > 1) {
 			char resp[1024];
-
-			proxypass = getproxypass(proxyuser, proxyhost);
-			r = snprintf(buf, sizeof(buf), "%s:%s",
-			    proxyuser, proxypass);
+			if (strchr(proxyuser, ':'))
+			    r = snprintf(buf, sizeof(buf), "%s", proxyuser);
+			else {
+			    proxypass = getproxypass(proxyuser, proxyhost);
+			    r = snprintf(buf, sizeof(buf), "%s:%s",
+				proxyuser, proxypass);
+			}
 			if (r == -1 || (size_t)r >= sizeof(buf) ||
 			    b64_ntop(buf, strlen(buf), resp,
 			    sizeof(resp)) == -1)
 
projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
mantenedor atual: Michael Shigorin
mantenedor da tradução: Fernando Martini aka fmartini © 2009