Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use unsafe cipher suites #434

Merged
merged 2 commits into from
Mar 18, 2025

Conversation

dwisiswant0
Copy link
Member

@dwisiswant0 dwisiswant0 commented Mar 18, 2025

Fixes projectdiscovery/nuclei#6095

Co-authored-by: @gnuletik

Copy link
Member

@Mzack9999 Mzack9999 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm!

$ cat test.go
package main

import (
	"context"
	"log"

	"github.com/projectdiscovery/fastdialer/fastdialer"
)

func main() {
	fd, err := fastdialer.NewDialer(fastdialer.DefaultOptions)
	if err != nil {
		log.Fatal(err)
	}
	defer fd.Close()

	if conn, err := fd.DialTLS(context.Background(), "tcp", "119.163.194.78:843"); err != nil {
		log.Fatal(err)
	} else {
		log.Printf("Connected to %s", conn.RemoteAddr())
		conn.Close()
	}
}
$ go run .
2025/03/18 20:03:41 Connected to 119.163.194.78:843

@Mzack9999 Mzack9999 merged commit e12186b into main Mar 18, 2025
5 checks passed
@Mzack9999 Mzack9999 deleted the dwisiswant0/feat/use-unsafe-cipher-suites branch March 18, 2025 19:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Issue with tls handshake with tls10
2 participants