Security Update #6

Merged
raul merged 25 commits from testing into main 2024-05-17 08:00:14 +02:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 51b0dd5258 - Show all commits

View File

@ -6,6 +6,7 @@ package cmd
import ( import (
"bufio" "bufio"
"crypto/tls"
"fmt" "fmt"
"io" "io"
"log" "log"
@ -42,7 +43,11 @@ var (
) )
func Client() { func Client() {
conn, err := net.Dial("tcp", serverIP+":"+serverPort) //conn, err := net.Dial("tcp", serverIP+":"+serverPort)
conf := &tls.Config{
InsecureSkipVerify: true,
}
conn, err := tls.Dial("tcp", serverIP+":"+serverPort, conf)
if err != nil { if err != nil {
log.Fatalf("Error occurred trying to connect to server: %v\n", err) log.Fatalf("Error occurred trying to connect to server: %v\n", err)
} }