What steps will reproduce the problem?
When tests web-server on not standart ports like 80 and 443 you will see
such warning:
"[!] WARNING: Access to this port denied."
Please provide any additional information below.
Problem in http.c. Patch you can see below.
diff -u http.c.orig http.c
--- http.c.orig 2009-05-13 23:41:01.000000000 +0400
+++ http.c 2010-03-25 14:09:19.175346738 +0300
@@ -496,8 +496,8 @@
if (!ret->port || ret->port > 65535)
http_error(client,"Illegal port specification",1);
- if (ret->port < 1024 && ret->port != 80 && ret->port != 443)
- http_error(client,"Access to this port denied",1);
+/* if (ret->port < 1024 && ret->port != 80 && ret->port != 443)*/
+ /*http_error(client,"Access to this port denied",1);*/
*x = 0;
Original issue reported on code.google.com by
naplan...@gmail.comon 25 Mar 2010 at 11:25