Hi. I posted something here that I couldn’t find any discussions about. If there are debates on this topic somewhere, please let me know.
This isn’t just about this forum. Look it up.
Let me be clear: I am not accusing FreeTube of being a Chinese ransomware virus.
I am simply interested in the development and processes that deal with involvement, and I have added relevant tags.
I want to know if
this is a forum for people who only post bad, malicious things?!
or if it’s a place to question, analyze, and discuss things that bother me in the context of privacy.?
Okay, relax Solid Snake, don’t be grumpy, since specifics from regular users can sometimes be hard to come by, I’ll try to capture that here on Privacy Guides and not on another platform.
Anyone who starts using FreeTubeApp will get into the details and include brains. They’ll analyze where and why the application connects and exchanges data. Let me be clear: no one discusses this connection on the Internet.
This will be useful for beginners who want to analyse their traffic. There’s no need to send them straight to GitHub where they’ll get lost or stay there and forget about this project.
I have found the code.
I have a solution for anyone who has notifications popping up from the signed Apple code indicating an unusual connection to FreeTubeApp.
lastAppWasRunning = new Date(lastAppWasRunning)
}
fetch('https://write.as/freetube/feed/')
.then(response => response.text())
.then(response => {
const xmlDom = new DOMParser().parseFromString(response, 'application/xml')
the lastAppWasRunning variable is updated to track the time of the last application activity.
code executes a request to retrieve FreeTube, which is an RSS feed hosted on write.as.
The response is treated as text and parsed as XML
How does this relate to privacy and security?
Apparently the connection is used to receive announcements from the FreeTube project.
This code shows that the application is only receiving data.
HTTPS is used, and the connection could be used for basic analytics (counting active users).
This could be part of an update checking mechanism, which has both security benefits because of timely security updates and
potential privacy concerns = update checks can be tracked.
I want to understand how critical it is to block this connection.
But I’m done for now.