soc.octade.net is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Admin email
social@octade.net

Search results for tag #security

[?]Nonilex » 🌐
@Nonilex@masto.ai

Another option would be to make a deal on — a sale or lease, with expanded access to rights, & role in . In the event of a crisis, “the rest of will lean on to make some kind of arrangement with the ,” Rahman said.

    [?]ResearchBuzz: Firehose » 🌐
    @researchbuzz_firehose@rbfirehose.com

    Gizmodo: Disney to Pay $10 Million After Feds Say It Broke Kids’ Privacy Rules on YouTube. “Disney has agreed to pay $10 million in civil penalties to settle allegations that it violated federal data-collection laws designed to protect children. The Department of Justice (DOJ) announced on Tuesday that a federal court has entered a stipulated order resolving a case against Disney Worldwide […]

    https://rbfirehose.com/2026/01/06/gizmodo-disney-to-pay-10-million-after-feds-say-it-broke-kids-privacy-rules-on-youtube/

    [?]knoppix » 🌐
    @knoppix95@mastodon.social

    Wayland is replacing X11 as Linux’s display protocol, offering lower latency, simpler design, and stronger security. 🖥️
    By restricting app access to input and screen data, it reduces long-standing privacy risks. 🔐

    Gains are clear, but compatibility and tooling still slow full adoption. ⚖️

    🔗 hintnal.com/the-great-display-

      [?]Church of Jeff » 🌐
      @jeffowski@mastodon.world

      [?]knoppix » 🌐
      @knoppix95@mastodon.social

      Apple is allowing alternative browser engines on iOS in Japan with iOS 26.2, ending the WebKit-only rule in response to antitrust law. 🧭

      The change expands browser choice but applies only regionally, with Apple retaining control via entitlements and privacy rules. ⚖️

      Will similar openness reach Europe under the DMA? 🇪🇺

      @mozilla

      🔗 webpronews.com/apple-opens-ios

        [?]Hacker News » 🤖 🌐
        @h4ckernews@mastodon.social

        [?]Allpoints » 🌐
        @allpoints@mstdn.social

        @briankrebs This is one of the reasons I keep all the IoT/customer surveillance devices on their own network and block access from that network to other internal spaces It's not a perfect and doesn't prevent that network from becoming a cesspool, but at least it isolates the blast radius.

        I do periodic checks of the outbound traffic from that network looking for suspicious activity but it's tough given how chatty even legitimate boxes are.

          screwlisp boosted

          [?]Gonzalo Nemmi :runbsd: » 🌐
          @gnemmi@mastodon.sdf.org

          Reminder: You better hurry!

          @monocles and are available for free on your Android device since Dec 24th and until the 31st on Google Play!

          Get your friends and family and don’t miss out on the opportunity to install and onboard them in one (or both) of the most featureful clients on Android!

          Set them free from invasive, data harvesting, centralized IM communications networks!

            [?]Flipboard Tech Desk » 🌐
            @TechDesk@flipboard.social

            A hacker-turned-source turns up dead. A secret order to allow U.K. officials to spy on users. And who could forget the Trump administration accidentally texting its war plans to a reporter. These are just a few of @Techcrunch’s best cybersecurity stories from 2025 that were originally reported on by other organizations. Quite an informative and gripping batch.

            flip.it/ZhRZ_4

              [?]The Linux Foundation » 🌐
              @linuxfoundation@social.lfx.dev

              The Linux Foundation’s 2025 Annual Report highlights growth across AI, global standards, security, education, and community participation.
              Here are the main takeaways from this year’s report.
              Link:linuxfoundation.org/resources/

                [?]gtbarry » 🌐
                @gtbarry@mastodon.social

                Inquiry ongoing after UK government hacked, says minister

                Cyber security officials have confirmed they are aiding an investigation after a minister said the UK government had been hacked.

                It is understood a Chinese affiliated group is suspected of being behind the attack.

                bbc.com/news/articles/cj4qpwpr

                  [?]🌱🏴‍🅰️🏳️‍⚧️🐧🔧📎 Ambiyelp [she/her] » 🌐
                  @ambiguous_yelp@veganism.social

                  @Tutanota I've mentioned this before but SimpleX is more private secure and anonymous that signal threema and session.

                  SimpleX is decentralised meaning taking down a single group of servers or org wouldnt destroy the simplex network, people can run completely anonymous simplex servers over tor, this puts simplex ahead of Signal and Threema

                  SimpleX has quantum resistant encryption which puts it ahead of Threema and Session, the UK military[1] and NATO[2] both consider quantum computers to be a threat now because of store now decrypt later attacks

                  SimpleX has no user identifiers not even random strings, its essentially like having a "burner phone for every contact". Two or more compromised contacts could corroborate your messages by linking them to your signal username or your session id, but with simplex your contacts can't prove your identity even between eachother. This fact puts SimpleX above Signal Threema and Session

                  These technical details about the simplex protocol can all be found on the project website including the whitepaper[3]

                  [1]
                  ncsc.gov.uk/whitepaper/prepari

                  [2]
                  nato.int/docu/review/articles/

                  [3]
                  isdb4l77sjqoy2qq7ipum6x3at6hyn

                    [?]Light » 🌐
                    @light@noc.social

                    @obscuravpn
                    I mean, is it possible to generate my keypair locally and upload it to @mullvadnet, or how is it securely handled?

                      [?]The Linux Foundation » 🌐
                      @linuxfoundation@social.lfx.dev

                      The Linux Foundation’s 2025 Annual Report reflects a year of global collaboration and steady growth across open source, AI, security, standards, and education.

                      Here are the highlight moments from this year’s report.

                      Read more: linuxfoundation.org/resources/

                        [?]Aral Balkan » 🌐
                        @aral@mastodon.ar.al

                        Node.js devs, so picture this: you run `npm install` and you get a bunch of packages with audit errors.

                        The only thing I want to know at that point is what’s the root package that these dependencies belong to? (Running npm audit fix is a last resort as I don’t like it fiddling around with the dependencies of nested packages.)

                        It’s also not a straightforward thing to do, but it’s nothing jq and a bit of piping can’t fix:

                        ```bash
                        npm audit --json | jq -r '.vulnerabilities[].name' | xargs -n1 npm ls
                        ```

                        If you’re using fish shell, add an abbr(aviation) or an alias to that with a name like npm-audit-tree and you’re golden ;)

                        ```bash
                        abbr --add --global npm-audit-tree 'npm audit --json | jq -r '.vulnerabilities[].name' | xargs -n1 npm ls'
                        ```

                        (I usually prefer abbreviations to aliases as I like to remember/see the actual command being executed.)

                        Enjoy 💕

                          [?]Woodoo Prod » 🌐
                          @WoodooProd@mastodon.cloud

                          Underground: Tales of Hacking, Madness and Obsession on the Electronic Frontier is a 1997 book by Suelette Dreyfus, researched by Julian Assange. It describes the exploits of a group of Australian, American, and British black hat hackers during the late 1980s and early 1990s, among them Assange himself.

                          You can get it free
                          underground-book.net/

                          en.wikipedia.org/wiki/Undergro

                          Underground: Tales of Hacking, Madness and Obsession on the Electronic Frontier is a 1997 book by Suelette Dreyfus, researched by Julian Assange.

                          Alt...Underground: Tales of Hacking, Madness and Obsession on the Electronic Frontier is a 1997 book by Suelette Dreyfus, researched by Julian Assange.

                            [?]Aral Balkan » 🌐
                            @aral@mastodon.ar.al

                            Just updated Node Pebble to support latest release version of Let’s Encrypt’s Pebble testing server.

                            codeberg.org/small-tech/node-p

                            Enjoy!

                            💕

                              [?]OpenSSF » 🌐
                              @openssf@social.lfx.dev

                              💡 Read the final post of the From Beginner to Builder blog series, where we highlight free courses that help contributors build confidence across AI/ML , policy & compliance, ethics, inclusion, & community leadership and more!

                              Read now: openssf.org/blog/2025/12/12/fr

                                [?]knoppix » 🌐
                                @knoppix95@mastodon.social

                                Signal’s reputation for secure messaging rests on strong E2EE using the open-source Signal Protocol 🔐

                                The app collects minimal metadata, but concerns remain around SGX reliance, AWS hosting, and past CDN-based deanonymization research 🛰️
                                Useful, but not flawless, for privacy-focused users ⚖️

                                @signalapp

                                🔗 proton.me/blog/is-signal-safe

                                  [?]Anthropy » 🌐
                                  @anthropy@mastodon.derg.nz

                                  looks like Synergy had a security oopsy-daisy

                                  at least seems like there was no data leaked. They say they have checked the audit logs to verify this.

                                  I do appreciate how forward they are about this though, even though they seem to believe nothing was leaked, it's good habit to be open in the face of breaches. More companies should be like this.

                                  Hi [censored],

We identified unauthorised access to one of our application servers. The issue was contained and the server was rebuilt. The system involved did not store customer data, and no data breach occurred. No action is required from you.

All customer account information, including your email address and hashed password, is stored in a separate database that remained protected throughout the incident. We reviewed application, network, and database audit logs for the full period. These confirm that the attacker did not access, query, or copy any customer data. Payment card information is not stored on our systems and was never at risk.

At 19:46 UTC on Friday 5 December 2025, an attacker reached one application server through an incorrectly exposed network path and triggered a flaw that allowed a command to run, causing the server to stop responding. The server restarted repeatedly due to automatic recovery, resulting in intermittent service disruption. The incident was contained at 02:17 UTC on Saturday 6 December 2025. Some services, including checkout, remained disrupted for a further twenty-four hours while we applied changes across our infrastructure.

We corrected the network issue that allowed direct access and patched the software vulnerability on the affected server. Based on all evidence, no customer data was accessed.

You can contact us if you have any questions by replying to this email or by using our contact form.

                                  Alt...Hi [censored], We identified unauthorised access to one of our application servers. The issue was contained and the server was rebuilt. The system involved did not store customer data, and no data breach occurred. No action is required from you. All customer account information, including your email address and hashed password, is stored in a separate database that remained protected throughout the incident. We reviewed application, network, and database audit logs for the full period. These confirm that the attacker did not access, query, or copy any customer data. Payment card information is not stored on our systems and was never at risk. At 19:46 UTC on Friday 5 December 2025, an attacker reached one application server through an incorrectly exposed network path and triggered a flaw that allowed a command to run, causing the server to stop responding. The server restarted repeatedly due to automatic recovery, resulting in intermittent service disruption. The incident was contained at 02:17 UTC on Saturday 6 December 2025. Some services, including checkout, remained disrupted for a further twenty-four hours while we applied changes across our infrastructure. We corrected the network issue that allowed direct access and patched the software vulnerability on the affected server. Based on all evidence, no customer data was accessed. You can contact us if you have any questions by replying to this email or by using our contact form.

                                    [?]phone-company » 🌐
                                    @andree4live@mastodontech.de

                                    @Tutanota
                                    Be careful, if the product is too secure, the user may be a criminal. This is how some parts of the EU think about security and data protection.

                                      [?]Tuta » 🌐
                                      @Tutanota@mastodon.social

                                      The German has made 2025 the Year of

                                      Great initiative - and great rating for Tuta ❤️ - your secure email provider from Germany. 🇩🇪

                                      bsi.bund.de/DE/Themen/Kampagne

                                      Screenshot of BSI website with Tuta results: achieved 7 out of 7 possible points.

                                      Alt...Screenshot of BSI website with Tuta results: achieved 7 out of 7 possible points.

                                        [?]blaue_Fledermaus » 🌐
                                        @blaue_Fledermaus@mstdn.io

                                        Activating new health insurance app:
                                        - let's use the password manager to create a secure password.
                                        ⛔ "password must be at most 8 characters long"
                                        - unsafe, but OK...
                                        ⛔ "password must begin with an uppercase letter"
                                        - what!? 😡

                                          [?]Profoundly Nerdy » 🌐
                                          @profoundlynerdy@bitbang.social

                                          Is there any point in using a vTPM2 module with VMs? As near as I can tell, you're left with two options:

                                          1. Pass through the host's TPM2. So, you're effectively pinned to the host?
                                          2. Use a virtual TPM2. You can optionally specify your own seed value. Your secrets are at increased risk of leaking to the rest of the host. I assume vTPM entropy is /dev/urandom on the hypervisor.

                                          Could a hardware security module (HSM) help? Am I missing anything?

                                            [?]World Wide Web Consortium » 🌐
                                            @w3c@w3c.social

                                            Why you should W3C? We work to support the community that develops web standards, the building blocks of our digitally connected world.

                                            Show you care about the long-term growth of the open, interoperable web that caters for accessibility, privacy, security, and internationalization. today w3.org/support-us/

                                            youtube.com/watch?v=6bXp8Eet0HM

                                            circular shape of lines and nodes with text "We are global"

                                            Alt...circular shape of lines and nodes with text "We are global"

                                              [?]:awesome:🐦‍🔥nemo™🐦‍⬛ 🇺🇦🍉 » 🌐
                                              @nemo@mas.to

                                              of the day: "Gutta cavat lapidem" is a Latin proverb meaning "a drop hollows out a stone" or "the dripping water hollows the stone. Let's hollow out :D Join the democratic penguin republic 🐧 🫡 ❄️

                                              Democratic Penguins Republic - Trade War (Official Music Video)

                                              youtu.be/HJ8qGOe2K0o

                                                [?]Ivy Cyber » 🤖 🌐
                                                @ivycyber@privacysafe.social

                                                🔥 DEAL 👇
                                                We've already marked these classes down 50% in the Ivy Cyber store, so you don't even need a promo code!

                                                Meet @JohnKiriakou and @profdiggity in 3 live sessions and get a ton of great & content for your life online *and* offline.

                                                ivycyber.com/kiriakou

                                                  [?]Aral Balkan » 🌐
                                                  @aral@mastodon.ar.al

                                                  Wow, if you search for signal messenger on DuckDuckGo using Chrome, the actual @signalapp web site is the *third* entry following ads for “Signal Private Messenger – Free Download” that leads to the site appmaus.com and “Get Signal Messenger | Install Signal App” that leads to the site filelocations.com.

                                                  DuckDuckGo should be held criminally liable for anyone who ends up downloading malware because of this.

                                                  CC @Mer__edith

                                                  Screenshot of the state of affairs described in the post.

                                                  Alt...Screenshot of the state of affairs described in the post.

                                                    [?]Mx Jay Baker [they/he] » 🌐
                                                    @MediaActivist@todon.eu

                                                    [?]The Linux Foundation » 🌐
                                                    @linuxfoundation@social.lfx.dev

                                                    🔭 Modern systems demand real-time insight and resilience — and eBPF has become essential for today’s DevOps and cloud teams.

                                                    In “eBPF Essentials: Security and Observability (LFWS304),” a 1-day instructor-led workshop, you’ll deploy eBPF programs, build observability pipelines, and enforce runtime security in Kubernetes.

                                                    Finish the day with practical, verifiable skills — and a badge to prove it.

                                                    🔗 Enroll today: training.linuxfoundation.org/t

                                                      [?]GeneralX ⏳ » 🌐
                                                      @generalx@freeradical.zone

                                                      I don't trust syncthing-fork anymore.

                                                      1. App ID changed with version 2.x, seemingly for no reason.

                                                      2. catfriend1, the original maintainer has disappeared with no public announcement.

                                                      3. Apparently the Play signing keys were transferred to a Github user with a 5 day old account.

                                                      4. The old repo does redirect to this new user's repo.

                                                      It could be benign and another case of FOSS devs "moving on," quietly. But my paranoia prevails.

                                                      github.com/researchxxl/syncthi

                                                        [?]GeneralX ⏳ » 🌐
                                                        @generalx@freeradical.zone

                                                        Reason 5: in July of this year, copilot-instructions.md appeared, and commits from GitHub Copilot were allowed.

                                                        Does @fdroidorg have a stance on the usage of Copilot or GenAI code?

                                                        github.com/researchxxl/syncthi

                                                          [?]W3C Developers » 🌐
                                                          @w3cdevs@w3c.social

                                                          ⏰ The deadline to submit a proposal for the @w3c workshop on Smart Voice Agents (Feb 2026, virtual) is 27 Nov 2025!

                                                          Smart voice agents need clearer use cases, stronger , better -based interaction, and improved accuracy, , and multilingual support. Broader concerns include device coordination, , , regulatory gaps and emerging business models.

                                                          Don’t miss your chance to present your work and submit now: w3.org/2025/10/smartagents-wor

                                                          W3C Workshop on Smart Voice Agents - February 2026, Virtual on zoom

                                                          Alt...W3C Workshop on Smart Voice Agents - February 2026, Virtual on zoom

                                                            Back to top - More...