this post was submitted on 03 Sep 2025
74 points (96.2% liked)

Privacy

41480 readers
316 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

much thanks to @gary_host_laptop for the logo design :)

founded 5 years ago
MODERATORS
 

Hello all,

According to the Wireshark record my computer connects to various services often, including Amazon, Hetzner, 1337 Services GmbH, Evanzo GmbH and ThomasFamilyInvestments. The most often were the connections to mail.my-mail.rocks which is a part of Netcup GmbH. I have a somewhat minimal distro and the attached recordings were made when no app was open including no browser. I can send the other screenshots showing other connections too. I'm suspecting of malware since some time ago but can you help me clarify these connections please?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] infjarchninja@lemmy.ml 21 points 2 days ago (3 children)

I find wireshark too confusing unless you have a lot of experience with it.

It looks like you are using linux because I see Wlan0 at the top of the image

I use ss

ss --help

to see what you are connecting to

ss -x -a

ss -o state established

ss -o state established '( dport = :http or sport = :http )'

what processes are using open sockets

ss -pl

TCP sockets

ss -t -a

UDP sockets

ss -t -a

a deeper guide here:

https://www.cyberciti.biz/tips/linux-investigate-sockets-network-connections.html

[โ€“] ki9@lemmy.gf4.pw 4 points 1 day ago

-u for udp in the last one.

load more comments (2 replies)