Earlier quoted context omitted.
It got approved fairly quickly. It was a false positive (see my link in main thread) with their spam detection (DuckSoft copy pasted the post so flagged as "type too fast").
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 I am DuckSoft on GitHub and I prove my identity by GPG signing this message. I am not typing too fast, nor pasting all my stuffs into the comment area. I just put a link to the GitHub issue. The discussion board even automatically extracted title and abstract for me, where I thought, 'pretty cool huh'. Then I got banned. -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEE2H0…
Signal's TLS Proxy Failed to Be Probing Resistant
31–40 of 46 posts
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#32Earlier quoted context omitted.
From pure interpretation of your answer, i would say you are the snowflake human here.
I guess not wanting to sign up with my email adress on servers administered by god knows who with unknown security practices just to help you makes me a special snowflake then.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#33Earlier quoted context omitted.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 I am DuckSoft on GitHub and I prove my identity by GPG signing this message. I am not typing too fast, nor pasting all my stuffs into the comment area. I just put a link to the GitHub issue. The discussion board even automatically extracted title and abstract for me, where I thought, 'pretty cool huh'. Then I got banned. -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEE2H0…
It sounds like a mistake, the robots incorrectly tagged you. I wouldn't interpret any ill will because of it. Also sounds like they approved your account shortly after so it's hard to see anything that negative here...
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#34Earlier quoted context omitted.
I guess not wanting to sign up with my email adress on servers administered by god knows who with unknown security practices just to help you makes me a special snowflake then.
Some people go without food. Being too afraid to sign up to a forum has past the point of first world problem.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#35For people curious, it looks like they are discussing it in the community but only the mod is involved and I don't think they (Herohtar) are an employee. While the block was unintentional this doesn't seem like the right way to handle the situation and Moxie should have been clearer and that would have avoided the issue. It is easy to interpret the response given as being brushed off. TLDR: DuckSoft got autobanned be…
> Also, honestly, why not use GitHub issues. I find issues useful. Some people would prefer to use their own issue tracker or discussion forum. I don't see that as strange at all, given that with GH issues you don't have full control over the data or experience.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#36For people curious, it looks like they are discussing it in the community but only the mod is involved and I don't think they (Herohtar) are an employee. While the block was unintentional this doesn't seem like the right way to handle the situation and Moxie should have been clearer and that would have avoided the issue. It is easy to interpret the response given as being brushed off. TLDR: DuckSoft got autobanned be…
People who run the project get to pick the bug tracker. Its really next level entitlement to not let maintainers choose the place they track bugs.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#37My experience with the Signal team in issues and their community has been about the same. They're generally dismissive, especially so about design problems that cause a big amount of bugs that are strewn throughout Signal, like their handling of message timestamps/sync and dismissal of the IME concerns.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#38Re: Signal's TLS Proxy Failed to Be Probing Resistant
#39Earlier quoted context omitted.
I guess not wanting to sign up with my email adress on servers administered by god knows who with unknown security practices just to help you makes me a special snowflake then.
Some people go without food. Being too afraid to sign up to a forum has past the point of first world problem.
Re: Signal's TLS Proxy Failed to Be Probing Resistant
#40 func send(addr, server, sni string) int {
c0, e := net.Dial("tcp", addr)
if e != nil {
log.Fatal(e)
}
c1 := tls.Client(c0, &tls.Config{
ServerName: server,
InsecureSkipVerify: true,
})
c2 := tls.Client(c1, &tls.Config{
ServerName: sni,
InsecureSkipVerify: true,
})
c2.SetDeadline(time.Now().Add(2 * time.Minute))
s := fmt.Sprintf("GET / HTTP/1.1\r\nHost: %s\r\nUser-Agent: curl/7.68.0\r\n\r\n", sni)
//b := make([]byte, 4096)
l, _ := c2.Write([]byte(s))
log.Println(l)
if e != nil {
return 0
}
log.Printf("%s->%s->%s\n", addr, server, sni)
return l
}