-
umu
dryan: u wanna sign ur messages with pgp?
-
dryan
umu: do you have an ideea?
-
umu
wym
-
umu
ig u can just do inline for now if you'd like
-
dryan
> wym umu: *#verifiable_identiy_in_public_mucs* In case someone is trying to impersonate you *IN A PUBLIC MUC* -aka MITM ( like in the case of jabber.ru ) -or malicious admin -or somebody who stoled/knows the password of your xmpp account✎ -
dryan
> wym umu: *#verifiable_identiy_in_public_mucs* In case someone is trying to impersonate you *IN A PUBLIC MUC* -aka MITM ( like in the case of jabber.ru ) -or malicious admin -or somebody who stoled/knows the password of your xmpp account ✏
-
dryan
*#how* I wish I attach to this account a PGP public key. And change my name to: *[key id] dryan* or something like that, where *key id = last 8 digits of the PGP public key fingerprint*
-
dryan
This way, if I chat a lot, people could recognize it ( I hope ). So, if someone somehow gets my password and tries to impersonate me in a public MUC, he can't demonstrate that is me. -If he says something funny, he is unable to sign that message with my public key at someones request. -If he is trying to change the PGP key, he will need to also change the "key id" at the nickname. And people will notice ( Again. I hope. ).
-
dryan
*#question* When I create the gnupg key pair, it asks me for "name, email, etc". Should I put my xmpp account, ex: dryan@xmpp.com ? Is it a good ideea to keep my xmpp address private?
-
umu
why not just every day ur online set an account canary comment in ur vcard signing the time and the btc block #
-
umu
in gajim
-
dryan
umu: I have to understand the method. And your slang đ Someone else suggested https://xmpp-util.keyoxide.org/ is one suggestion
-
umu
https://www.digitalocean.com/community/tutorials/how-to-use-gpg-to-encrypt-and-sign-messages
-
dryan
umu: you you suggest to sign a message and put in the comments every day? A bit of pain in the ass.✎ -
dryan
umu: you suggest to sign a message and put in the comments every day? A bit of pain in the ass. ✏
-
dryan
umu: you suggest to sign a message and put in the comments every day? A bit of pain in the ass. And does not prevent someone to impersonate me latter in the day. ✏
-
dryan
umu: you suggest to sign a message and put in the comments every day? A bit of pain in the ass. And does not prevent someone from impersonating me latter in the day. ✏
-
dryan
umu: you suggest to sign a message and put in the comments every day? A bit of pain in the ass. And does not prevent someone from impersonating me latter in the day. And I don't think anyone will verifiy that signed message every day. ✏
-
MSavoritias (fae,ve)
Omemo already signs messages. You dont have to use a different encryption to sign messages.
-
fjklp
what might cause corrected messages to display as separate messages instead of replacing the original?
-
mrdoctorwho
gajim is constantly consuming 10-15% of my CPU even when idle
-
mrdoctorwho
no log activity, no xml log activity
-
fjklp
mrdoctorwho: are there any chats that are in a reconnecting state where the chat row in the chat list to the left shows the rotating icon?
-
mrdoctorwho
fjklp, yes
-
fjklp
stop those and check cpu usage
-
mrdoctorwho
yes, it helped
-
mrdoctorwho
thanks fjklp
-
fjklp
you're welcome, I've run into that myself
-
mrdoctorwho
fjklp, did you report it?
-
fjklp
I have in this chat
-
fjklp
I think it's just one of those things where the only thing that could reduce cpu usage is eliminating the animation
-
dryan
For how long does gajim run on python?
-
fjklp
I don't know what my opinion is on these things. Maybe a static "connecting" icon would be better?
-
cal0pteryx
I doubt that a CSS animation causes 15% cpu
-
cal0pteryx
dryan: 19 years
-
fjklp
> I doubt that a CSS animation causes 15% cpu it does something close to that for me✎ -
fjklp
> I doubt that a CSS animation causes 15% cpu it does something close to that for me. I believe over 10%. No, it's not an ancient or slow cpu. ✏
-
Link Mauve
Modern CPUs can go down to very low frequencies, mine for instance can stay at 400Â MHz when in idle, in that case 15% isnât that much.
-
Link Mauve
They can also go much higher, mine turbos to 3.6Â GHz.
-
mrdoctorwho
Link Mauve, that's not the case
-
Link Mauve
mrdoctorwho, what frequency is yours?
-
fjklp
Honestly, I have no idea how monitoring tools like htop or gnome-system-monitor calculate cpu percent used. Are they counting percentage against current frequency or max frequency?
-
Link Mauve
mrdoctorwho, also you can run `perf top -p $(pidof gajim)` to get a feeling of where that CPU time is spent.
-
Link Mauve
fjklp, against current of course.
-
fjklp
that's not at all my intuition
-
Link Mauve
Also they only report what the kernel reports.
-
Link Mauve
Thatâs why profiling usually counts in cycles, not in percentage of usage.
-
fjklp
that kind of makes the percent numbers meaningless
-
umu
but
-
umu
cpu regulates itself
-
Link Mauve
Indeed, they have been meaningless ever since the first CPUs with frequency scaling.
-
umu
depends on it's state
-
umu
if it's overheated the capacity is reduced
-
umu
so it works from both ends
-
Link Mauve
Still a good indicator if e.g. you have one core used at 100%, you know there is either a long computation going on, or an infinite loop of some kind.
-
fjklp
an someone summarize how these tools do or can measure this?✎ -
fjklp
can someone summarize how these tools do or can measure this? ✏
-
mrdoctorwho
Link Mauve, I'm sure my cpu was not running at 400MHz as it was used by other applications. I can't reproduce the problem now, but if I see it, I'll see which core that was and what frequency it was at
-
Link Mauve
umu, when writing software, one of the goals is to not overheat anything, to maximise battery usage, to minimise power consumption, etc.
-
umu
whhhaa
-
umu
why would it overheat when writing software?
-
Link Mauve
fjklp, Iâm not well-versed in the details, but some tools (like valgrind) will run the program in a simulator, keeping track of every single instruction, this is obviously quite costly.
-
Link Mauve
Some tools (like perf) use a stochastic approach, where they will poll hardware counters at regular interval to estimate how much time is spent where.
-
Link Mauve
Some tools (like cProfile) will instrument the code, adding overhead at the beginning and end of each function in order to obtain informations about it.
-
Link Mauve
Which one(s) you use depends on which particular areas you are interested in, which language the program youâre profiling is written in, etc.
-
Link Mauve
umu, I mean you write the software hoping that it will not cause those issues on the usersâ computers.
-
umu
wouldn't the CPU handle that tho?
-
umu
the not overheating part
-
Link Mauve
Many developers donât take those into account, this creates software which is less efficient for every user.
-
Link Mauve
umu, sure, at worst your computer will shut down instead of destroying itself, but unless the software you are using is a scientific program which uses as much computation as possible, itâs generally expected that you donât overheat anything.
-
Link Mauve
Even (good) video games try to avoid overheating anything, so that it continues running correctly during a long period of time.
-
dashabi
hi
-
Link Mauve
Hi dashabi, welcome here. :)
-
meson
> Many developers donât take those into account, this creates software which is less efficient for every user. In this context I'd like to mention the > FOSS Energy Efficiency Project and the > Blauer Engel For FOSS (BE4FOSS) certification of the German Environment Agency, which together aim to enhance the efficiency of Software: https://eco.kde.org/de/#feep✎ -
meson
> Many developers donât take those into account, this creates software which is less efficient for every user. In this context I'd like to mention the > FOSS Energy Efficiency Project and the > Blauer Engel For FOSS (BE4FOSS) certification of the German Environment Agency, which together aim to enhance the efficiency of software in order to reduce the energy consumption of the system: https://eco.kde.org/de/#feep ✏
-
dashabi
gajim support o memo and it is safe
-
dashabi
what about otr
-
MSavoritias (fae,ve)
Otr is obsolete
-
âMike Yellow
(sigh) I guess this âdashabiâ is another Chinese who still persists OTR.
-
Belgin
âMike Yellow, how rude
-
franck-x
rudeness is the meaning of "da shabi" in chinese, i'm right Mike ?
-
âMike Yellow
Please, talk in private messages.
-
polarian
MSavoritias (fae,ve), not exactly, it is still used for rigidly anonymous clients (such as coyim)
-
polarian
OMEMO is now preferred for every day use
-
polarian
but OTR is still useful for a one off conversation which you never want to be seen
-
MSavoritias (fae,ve)
no its not
-
MSavoritias (fae,ve)
cryptography has moved on
-
MSavoritias (fae,ve)
if you want to see metadata resistant protection i reccomend reading the bramble protocol from briar
-
MSavoritias (fae,ve)
it will give you a sense where we are currently in cryptography.
-
MSavoritias (fae,ve)
that and signal stuff of course
-
polarian
MSavoritias (fae,ve), well tell other clients to catch up then if you want to be a twat about it
-
polarian
I think you forget the complexity of implementing secure encryption algorithms
-
polarian
some XMPP clients support no E2E encryption at all
-
MSavoritias (fae,ve)
every xmpp app i have come across has caught up so no idea what you are talking about
-
polarian
Spark doesn't have any encryption
-
polarian
and I am pretty sure Coyim still uses OTR
-
MSavoritias (fae,ve)
i feel like we are getting ot here. and these seem like clients that need to be updated. especially since they dont have a doap file to be added to the xmpp.org site
-
Neustradamus
It is possible to look for https://dev.gajim.org/gajim/python-nbxmpp/-/issues/128? Thanks in advance
-
polarian
ah
-
polarian
channel bindings has been coming up a ton in the XMPP community since the MitM
-
polarian
but channel bindings is designed to prevent authentication credentials being yanked and reused
-
polarian
also
-
polarian
channel bindings require a large amount of time and developer effort, other XMPP software has stated to implement it they would need a full time developer to do so
-
polarian
Maybe its different for gajim, but thats what I have heard
-
wwww
rr
-
debacle
MSavoritias (fae,ve), I assume, OTR might still come handy, if you like to communicate encrypted with IRC users over Biboumi.
-
MSavoritias (fae,ve)
ah there yeah probably it does. i wonder how many actually do that nowadays though. with choices like jami, briar and i2pbote even. i hope at least.
-
Zatalyz
Hello ! I have Gajim 1.8.1. Since some time, I have a trouble : when I connect, i don't join my room automatically. it say that "i left this room". But I never leave, only close Gajim at the end of the night... There are an option to change this ?
-
pep.
Zatalyz, maybe it's just a question of UX. Technically you do leave everytime you disconnect. Just that maybe it was never shown this way in previous releases
-
chud
How do you test the flatpak version, is there some trick like pip -e ?
-
chud
I'm having a hard time getting flatpak-builder to actually "notice" the changes I'm making
-
pep.
Zatalyz, there would be an issue if you had to rejoin manually (by clicking something), but I don't think that's the case, right?
-
Zatalyz
I can join manually, no problem for this
-
Zatalyz
juste it take a long time to click on each room one after the other
-
pep.
Ah so you do have to click?
-
Zatalyz
yes, click and click again :)
-
pep.
Ok that's meh
-
Link Mauve
Zatalyz, do you know whether your bookmarks are set to autojoin?
-
Link Mauve
This sounds like they arenât.
-
dryan
No. It is not a Conversations bug it seems. I send a pm from Gajim. But the reply is received only on C. I tought that's because I use C and Gajim at the same time. Or because I have the server archive disabled ( sorry Licaon_Kter đď¸ ). But it seems it is a Gajim bug. I can see I'm sending pms. But I can't see those I receive. I have to close the PM windows, and reopen it. And only then the pms seem to appear. Gajim 1.5.1 ( 1.4.7 really debian oldstable backports ), connected over Tor to a clearnet provider.
-
Zatalyz
Link Mauve : I don't know where we see "bookmark" on gajim. Maybe that but where i can fix it ?
-
dryan
> Link Mauve : I don't know where we see "bookmark" on gajim. Maybe that but where i can fix it ? Zatalyz, look on 'Advanced Configuration Editor'. Search there for 'bookmark'. Change some settings and the restart. Don't forget to make a backup.
-
cal0pteryx
Zatalyz: this button only appears if the bookmark is not set to autojoin
-
Link Mauve
Zatalyz, I think just joining a room once sets the autojoin to true.
-
Link Mauve
But perhaps not if itâs set to false before? I donât know.
-
cal0pteryx
>> Link Mauve : I don't know where we see "bookmark" on gajim. Maybe that but where i can fix it ? > Zatalyz, look on 'Advanced Configuration Editor'. Search there for 'bookmark'. Change some settings and the restart. Don't forget to make a backup. That is plain wrong. Please don't ↺
-
lovetox
Zatalyz, i think your server has a problem storing the bookmark information
-
lovetox
you would need to provide debug logs
-
lovetox
there is nothing you can do yourself probably
-
Zatalyz
I am on movim :s
-
Zatalyz
ok...
-
pep.
(.eu)
-
Zatalyz
(yes ^^ )
-
lovetox
ah no movims bookmarks are broken
-
lovetox
the server currently has problems
-
pep.
lovetox, the server does?
-
lovetox
they investigate this currently
-
pep.
Isn't it just movim?
-
Zatalyz
Ok so... it is this, I just wait :)
-
Zatalyz
thanks lovetox !
-
pep.
(the client and not the xmpp server, I mean)
-
lovetox
i assumed his server is movim.eu
-
lovetox
why would he come to gajim chat, and tell us that he uses movim
-
pep.
their*, yes
-
lovetox
fyi pep https://github.com/processone/ejabberd/issues/4106
-
pep.
ugh, ok I see
-
Zatalyz
Yes, my account is on movim.eu and I use gajim has client ;)
-
Zatalyz
sorry for noise, as I had updated the computer shortly before seeing this problem, I thought it was my client who was at fault
-
dryan
> No. It is not a Conversations bug it seems. I send a pm from Gajim. But the reply is received only on C. I tought that's because I use C and Gajim at the same time. Or because I have the server archive disabled ( sorry Licaon_Kter đď¸ ). But it seems it is a Gajim bug. > I can see I'm sending pms. But I can't see those I receive. I have to close the PM windows, and reopen it. And only then the pms seem to appear. > Gajim 1.5.1 ( 1.4.7 really debian oldstable backports ), connected over Tor to a clearnet provider. I don't see the PMs I should receive on gajim. I see only those I sent.
-
dryan
> I don't see the PMs I should receive on gajim. I see only those I sent. Should I open an issue?
-
lissine
You didn't mention that you disabled server archiving...
-
dryan
> You didn't mention that you disabled server archiving... Or because I have the server archive I did. But I did some tests with it enabled and it is the same thing. Thank's that you rememberd me to disable it again.
-
lissine
Oh sorry, it's actually mentioned in the quote that you disabled archiving
-
dryan
lissine And with Conversations, the PMs in *public mucs* work fine without server archiving. On Gajim doesn't work either way.
-
bot
Philipp HĂśrist pushed 1 commit to branch _refs/heads/master_ of _python-nbxmpp_ < https://dev.gajim.org/gajim/python-nbxmpp >: *8a87dc77* < https://dev.gajim.org/gajim/python-nbxmpp/-/commit/8a87dc77b3f8ef56aa5deea5a06d1782d7bc237d > refactor: Rewrite channel binding code - Fix some bugs related to XEP-0388 (SASL2)
-
lissine
> refactor: Rewrite channel binding code congrats!
-
lovetox
the code is non-functional, its just there in case of GLib supports it some day
-
bot
Philipp HĂśrist pushed 1 commit to branch _refs/heads/master_ of _python-nbxmpp_ < https://dev.gajim.org/gajim/python-nbxmpp >: *bf73fcc1* < https://dev.gajim.org/gajim/python-nbxmpp/-/commit/bf73fcc1d7232e4e2039ea688d01a63f93729270 > change: Raise GLib version
-
Link Mauve
lovetox, what is missing in glib?
-
Link Mauve
Is there an issue?
-
lovetox
not exactly glib, its the bindings
-
lovetox
https://gitlab.gnome.org/GNOME/pygobject/-/issues/603
-
lovetox
seems the developer adding channel binding to glib, chose a very rare way to pass the data
-
lovetox
one thats not currently supported by the bindings
-
lovetox
or broken
-
var
Thoughts on simplex claims its better than xmpp and matrix
-
dryan
var, You belive me I was about to ask the same thing?
-
var
Apparently its funded by village global
-
var
Which is funded by bill gates, Jeff bezos, mark zuck
-
dryan
Well, it is still open source.
-
dryan
AGPL-3. Not open-source. It is free/libre software really.
-
bot
Daniel BrĂśtzmann pushed 1 commit to branch _refs/heads/master_ of _gajim_ < https://dev.gajim.org/gajim/gajim >: *4fd5f6a0* < https://dev.gajim.org/gajim/gajim/-/commit/4fd5f6a091cf73f8ed10d1a67b0edf4ea1cefc83 > imprv: ChatBanner: Don't show QR code for privated MUCs Fixes #11647
-
var
> Well, it is still open source. Open source, decentralized, no identifiers ↺
-
var
You connect by sharing a link
-
var
But the funding is suspect
-
dryan
It looks amazing. But I don't know how it really works. I'm not that skilled and I don't have the time. I'm way to poor.
-
dryan
lovetox, Thank you for all the great work you do.
-
dryan
> > No. It is not a Conversations bug it seems. I send a pm from Gajim. But the reply is received only on C. I tought that's because I use C and Gajim at the same time. Or because I have the server archive disabled ( sorry Licaon_Kter đď¸ ). But it seems it is a Gajim bug. > > I can see I'm sending pms. But I can't see those I receive. I have to close the PM windows, and reopen it. And only then the pms seem to appear. > > Gajim 1.5.1 ( 1.4.7 really debian oldstable backports ), connected over Tor to a clearnet provider. > I don't see the PMs I should receive on gajim. I see only those I sent. > > You didn't mention that you disabled server archiving... > Or because I have the server archive > I did. But I did some tests with it enabled and it is the same thing. Thank's that you rememberd me to disable it again. > lissine > And with Conversations, the PMs in *public mucs* work fine without server archiving. On Gajim doesn't work either way. Should I open an issue about this, or should I wait to upgrade to 1.8.1 before anything?
-
dryan
And lovetox, regarding this issue, https://dev.gajim.org/gajim/gajim/-/issues/11654 about 'Distrust all certificates'. There are xmpp servers operators like creep.im and xmpp.is which have the fingerprint of the certificate posted on their websites. So again, I think that option it is really usefull for some people.
-
lovetox
you should try gajim 1.8.x because you are the first user in a long time that reports problems with PMs
-
lovetox
dryan, a website also uses TLS and a cert, why would you trust the website cert more than the xmpp server cert?
-
lovetox
chud, i think you have to build the flatpak after each code change, not sure why you would want to do that though
-
lissine
Actually, I recently reported problems with PMs =] But not this specific problem
-
lovetox
what problem?
-
dryan
I should run the older version, 1.3.1. I think it didn't open the pm in a separate window. It may be something about that.
-
dryan
> a website also uses TLS and a cert, why would you trust the website cert more than the xmpp server cert? lovetox, you are right. creep.im is uses the same cert for the web also. Hmm. And the warrent canarry is outdated.
-
umu
real
-
umu
does gajim default to starttls
-
umu
or does it use regular tls
-
umu
if both are availible
-
pep.
Depends on the priority set by the server no?
-
pep.
Unless all have the same priority, right.
-
umu
does it?
-
pep.
It should. Otherwise we might as well get rid of SRV priority straight away
-
umu
i thot
-
umu
there was seprate
-
umu
srv records
-
umu
for both starttls and tls
-
umu
they arent in the same record meme
-
umu
isnt the priority determined for that single txt entery?
-
pep.
hmm that's true they aren't
-
dryan
Whice one is better? umu Direct or Start?
-
umu
direct obcourse
-
dryan
Gajim defaults to start tls.
-
polarian
hm
-
umu
itsover
-
polarian
why did startls take over than direct tls?
-
polarian
afaik startls is less secure
-
polarian
because the initial connection is unencrypted
-
polarian
and it has to be upgraded
-
dryan
Noo wayyy.
-
Menel
Because once it was the successor of plaintext and a second tls port
-
polarian
still..
-
umu
probably internal firewall reason
-
Menel
It's jsut the standard for historical reasons. But every server can signal to support direct tls and clients will follow if they can
-
dryan
> because the initial connection is unencrypted > and it has to be upgraded I didn't know that. I have to change all my passwords. But I use the gajim version of the last year. Maby 1.8.x is different.
-
umu
xmpp and email is intended to be used on corportate networks
-
polarian
Menel, so basically direct tls should be used...
-
polarian
well I know why SMTP uses startls
-
Link Mauve
dryan, umu, STARTTLS isnât any less secure no.
-
polarian
its for compatibility
-
Menel
>> because the initial connection is unencrypted >> and it has to be upgraded > I didn't know that. I have to change all my passwords. > But I use the gajim version of the last year. Maby 1.8.x is different. No. That's not how it works
-
Menel
You're fine
-
Link Mauve
The only benefits of direct TLS are one roundtrip less, and better integration with reverse proxies and such.
-
umu
start tls has different shape than tls tho
-
Link Mauve
Other than that, STARTTLS is the same.
-
umu
if u were multiplexing on 443 for fun might not be good4u
-
dryan
If the first connection is not encrypted, I might get mitm.
-
Link Mauve
dryan, direct TLS also isnât encrypted on the first connection.
-
dryan
AA. Yea. I remember. That's why we need certificates.
-
Link Mauve
You first start by sending in clear text âhi, Iâd like to talk with <domain>â and then the server replies with âoh sure, Iâm <domain>, here is my certificate.â
-
Link Mauve
Then you can start encrypting.
-
Link Mauve
Thatâs exactly the same as STARTTLS, except there itâs done using XMPP stanzas instead of TLS.
-
Link Mauve
This comes from the era before SNI was a thing, XMPP got the ability to have per-domain certificates long before the web did.
-
dryan
Ahaa. Thank you. Not the place for the discussion. But thank you very much Link Mauve.
-
umu
does gajim default to websockets on connection?
-
Link Mauve
Youâre welcome. :)
-
dryan
Link Mauve, I have a question if you have the time and the others. If some mitm intercept the handshake can he redirect me to another website and give the certificate of that other website? I mean if the is able to also mitm my dns request.
-
Link Mauve
Of course not, thatâs what the certificate protects against.
-
Link Mauve
A DNS attacker can trick your client into thinking it has to connect to evil.com when you ask for your server, but then evil.com has to present a valid certificate for your domain.
-
Link Mauve
If the attacker controls DNS, and you donât validate DNSSEC, that is.
-
Link Mauve
Also in that case, your server wonât even see the request, as it would be redirected to evil.com instead.
-
dryan
Aha. I understand that. But let's say he is redirecting me from xmpp.com to zmpp.com and I didn't notice. And the zmpp.com has a certificate that's valid.
-
dryan
If it is too complex and takes a lot of your time, I will search in other place. Thank you anyway for everything. I really apreciate it. đď¸
-
Menel
You're thinking like a browser does use http `moved`? That's not a thing. You want xmpp.com and your client will not somehow go to something else
-
Menel
If you want xmpp.com your client will error on anything except a valid cert for xmpp.com
-
dryan
> You're thinking like a browser does use http `moved`? That's not a thing. You want xmpp.com and your client will not somehow go to something else AA. Yea. That makes sense! Such a stupid question. I hope someday I will find enough time to learn about these things. I love it. Thank you very much Menel. And all of you.
-
lovetox
pep., fyi Gajim will always use direct tls if available first, there was this one xep that said to gather all priorities from all the connection methods and choose the highest or something, but its way to much work, no network lib supports mixing priorities from different dns entries, so you need to query all the dns entries and then add this logic on top
-
lovetox
we had a discussion about this a few years back, and the conclusion was, to not do this
-
Menel
Sounds reasonable, especially since everyone deploying direct tls as a sever sets records with higher priority for them anyway as far as I've seen.
-
var
https://step.im:5444/82661ca73d6d31c03c22aa090b7ae4fdf7813c07/OBC1oLVL9DmFVV3BDvSOA62j3iqcOTyUHM50CEXo/zb2rhZDmHs4FphPDLxqKhuHwJZN85nzDDaZmQrviKKjtj8aKs.jpg
-
Menel
So its the same thing with less code, and why not let the client deside in the first place
-
umu
> https://step.im:5444/82661ca73d6d31c03c22aa090b7ae4fdf7813c07/OBC1oLVL9DmFVV3BDvSOA62j3iqcOTyUHM50CEXo/zb2rhZDmHs4FphPDLxqKhuHwJZN85nzDDaZmQrviKKjtj8aKs.jpg can it do multi device?
-
Menel
var: from one vendor controlled protocol, with exactly one implementation? You can move there if you want but don't have to hijack rooms with other topics
-
var
>> https://step.im:5444/82661ca73d6d31c03c22aa090b7ae4fdf7813c07/OBC1oLVL9DmFVV3BDvSOA62j3iqcOTyUHM50CEXo/zb2rhZDmHs4FphPDLxqKhuHwJZN85nzDDaZmQrviKKjtj8aKs.jpg > can it do multi device? Not yet ↺
-
dryan
lovetox - I managed to hack somebody who has Blind Trust activated. He was such a not techical person. So, nothing worth bragging about đď¸. But young. So. I don't know. - A friend of mine. I was testing the security of our setup. I made an account that looked pretty similar to the one we chat on. I'v sent him a message. 'Please give me my number FAST, cuz I don't know it and I don't have it stored anywhere. I need it very fast'. And he did. And started talking about his personal stuff afterwards with somebody that wasn't technicaly me.
-
dryan
*The unverified chats should be colored the same way untrusted or unencrypted ones are.* Ok. Maby not red. But orange or yellow. - Or at least make that *lock* or *shild* icon bright yellow or birght or something that popsup.. The way it is right now, you don't really differentiate between verified and just blind trusted.
-
umu
real
-
dryan
I made an account that looked very much like mine + the blind trust *icon* that you could barely differentiate that is not an verified account = WE HAVE A BIG SECURITY ISSUE.
-
hannibal
> I'm having a hard time getting flatpak-builder to actually "notice" the changes I'm making chud, if you are using the yaml files from repository, you have to change the source of the gajim module. You could change `type: git` to `type: dir` and `url: https://...` to `path: ..`.
-
dryan
> I made an account that looked very much like mine + the blind trust *icon* that you could barely differentiate that is not an verified account = WE HAVE A BIG SECURITY ISSUE. - Even for someone techy and worried about security, he can't easily differentiate between blind trusted and verified. And everyone has bad days. I think it's really really important to make the difference pop up. - Not an annoying difference. But a easy visible difference. Like making the icon really pop up either for blind trusted, either for verified.
-
dryan
> Every blindly trusted message has a lock, verified ones have a shield For which you need superman vision + eyeglasses + time + focus + and luck to differentiate.
-
dryan
> No message history isn't an indicator it is a different contact? Belive that when we talk about security, won't be any history most of the time.
-
dryan
I have sent him a video tutorial about how to set that autodelete to 1 day. Easy. It would be nice to have a future to delete his history like in TG or even Whatsapp. But I didn't requested that. I have requested a more visible difference between blind trusted and verified.