Browse Source

fixed port in https

mip-it 10 years ago
parent
commit
29b4009c5d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/de/tudarmstadt/informatik/hostage/protocol/HTTPS.java

+ 1 - 1
src/de/tudarmstadt/informatik/hostage/protocol/HTTPS.java

@@ -18,7 +18,7 @@ public class HTTPS implements Protocol<String> {
 
 	@Override
 	public int getPort() {
-		return 80;
+		return 443;
 	}
 
 	@Override