GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Conversation

Notices

  1. Embed this notice
    Aldis (aldis@sheep.network)'s status on Wednesday, 28-Jun-2023 03:39:08 JST Aldis Aldis
    • anime graf mays ?️?
    • Alex Gleason
    • Matty
    • Lance ?
    • Big Diggity
    • Gabe
    • Parker Banks
    • Tyler
    I'm wondering what Linux distributions would be most secure or least affected by a massive cyber-war. If there was ongoing cyber-war that targeted banks and other critical infrastructure, so much so that people would be left with no money and possibly unable to heat their homes for months, what Linux distribution would survive the best under those circumstances? I've been using Ubuntu, but if Canonical has to cut its workforce substantially then they might not push out the fastest security patches and updates, which would be critical in that kind of environment. I was thinking Arch Linux might be better suited, because it's more community driven and rolling release.

    I want to know because if large websites go down, then we (Server Admins) will need to be there to supply critical cyber infrastructure to those who can still get on the Internet. Lines of communication are always key in wars.

    Paging admins @gabriel @alex @graf @tyler @matty @Big_Diggity @parker @Lance
    In conversation Wednesday, 28-Jun-2023 03:39:08 JST from sheep.network permalink

    Attachments


    • Embed this notice
      pistolero :thispersondoesnotexist: (p@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 03:39:07 JST pistolero :thispersondoesnotexist: pistolero :thispersondoesnotexist:
      in reply to
      • anime graf mays ?️?
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      @Aldis @gabriel @graf @tyler @matty @Big_Diggity @parker @Lance

      > what Linux distribution would survive the best under those circumstances?

      It's style of operation, not distro. "Principle of Least Access" (take advantage of user- and process-segmentation to make sure that programs can't exceed their station, and don't give anyone access to the box unless they need it, and don't give them more access than they need), good monitoring (so you can see when something bad happens), relevant alerts (either it's important or you shouldn't be alerted), doesn't hurt to know how to do a bit of numerical analysis (rolling averages and standard deviation). Don't be a bigger target than you have to be: don't keep data you don't need. More moving parts means a bigger surface which means more holes: have as few holes as possible by installing as little as you can. Figure out the threat model, figure out what you need, gut everything else without mercy (it's a server, not a dev box or a desktop machine), and then make sure you understand everything that you have left on the box. What's doing disk I/O in the middle of the night? You should know if something is and you should know what triggers it to do disk I/O and you should know what it means if it's doing disk I/O in the middle of the night. nmap your own box to see exactly what's open and what people can see from the outside.

      So, "what distro?" is the wrong question. Whatever distro fits that model is the right distro, but no distro is going to do your thinking for you, and it's never going to be great out of the box unless you roll your own box.

      That having been said, I'd avoid Ubuntu/Debian/etc. but a lot of sysadmins like it: it ships without things I need (strace, iotop, iftop, a lot of network diagnostics tools) and then ships a bunch of things I don't need or want (which are potential holes at best and liabilities at worst). Ubuntu specifically doesn't give you a lot of flexibility in terms of what actually gets installed, so you have to spend more time gutting bullshit. If you are drawing a big corporate salary to run a farm of boxes, maybe you can afford the time to analyze all the packages and bash out ansible scripts; I don't work as a sysadmin so I just go with whatever doesn't do anything I don't expect. FSE runs on Slackware and CRUX (but will run on Plan 9 before it turns five). I hear very good things about OpenBSD and Theo's cool but I have not used his operating system.

      > I want to know because if large websites go down, then we (Server Admins) will need to be there to supply critical cyber infrastructure to those who can still get on the Internet.

      I don't know how likely that is to happen, but if Secret Hackers hit Amazon, that's not just a lot of big sites, it's also most mobile apps and a big chunk of fedi is on EC2.
      hackedbychinese.gif
      In conversation Wednesday, 28-Jun-2023 03:39:07 JST permalink

      Attachments


      1. https://freespeechextremist.com/media/5710478b-7cc2-4f40-9566-51b708897445/hackedbychinese.gif?name=hackedbychinese.gif
      victor likes this.
    • Embed this notice
      victor (victor@crucible.world)'s status on Wednesday, 28-Jun-2023 03:49:52 JST victor victor
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      @p @tyler @Lance @gabriel @matty @parker @graf @Aldis @Big_Diggity A lot of admins here don't care for containers (understandable, they're complex, and complexity often invites security issues), but there's a reason they're getting so popular. Podman allows running containers in userspace and has an emphasis on security, unlike Docker. It can be set to run containers on startup, and all the Linux system capabilities (SYSCAP) can be tweaked or taken away from a given container as needed. The book Podman in Action is a good intro to how it works.

      So if you want a reasonably "secure system" with some measure of defense in depth, you might consider a tiny OS whose only purpose is to run containers and have a proxy like Nginx as the frontend to forward requests by hostname to their respective container ports. The downside is the hassle to configure it all...Better take good notes when setting things up.
      In conversation Wednesday, 28-Jun-2023 03:49:52 JST permalink
    • Embed this notice
      pistolero :thispersondoesnotexist: (p@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:43:51 JST pistolero :thispersondoesnotexist: pistolero :thispersondoesnotexist:
      in reply to
      • anime graf mays ?️?
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      @victor @Aldis @Big_Diggity @Lance @gabriel @graf @parker @tyler

      > but there's a reason they're getting so popular

      "If it works on your machine, you can just send people your machine. Let's give up on reliable builds. The OS is so balky and the libraries are so fragile and nothing is self-contained so we may as well put another OS in the OS. At least the kernel's stable." Tack on a ridiculous hype train and that's the reason people are spinning up EC2 instances (a container that Amazon provides in the form of a VM) and then using it to run cgroups-based containers, 99% of the use-case being equivalent to a chroot but with a routing table and a bunch of unreproducible blobs (often of unknown provenance), hardly ever useful and almost never necessary given that process- and user-isolation have been present in Unix since almost the beginning and if I keep going, I will end up pissing everyone off, so I won't. If you are spinning up single-purpose VMs, you don't need containers: it's in a container.

      :ken: "We have persistent objects. They're called 'files'." :kenbw:

      Anyway, I haven't heard of Podman but checking out their repo required 244MB of space to check out, it was developed at and is owned by RedHat, and podman.io advertises a coloring book. The last item in that list gives a strong hint about who this software is designed for.
      what_the_fuck_is_this_bullshit.png
      In conversation Wednesday, 28-Jun-2023 21:43:51 JST permalink

      Attachments

      1. No result found on File_thumbnail lookup.
        Podman

      2. https://freespeechextremist.com/media/c4b389a8-80c0-49c9-9f7b-6bd24137a79f/what_the_fuck_is_this_bullshit.png?name=what_the_fuck_is_this_bullshit.png
      victor likes this.
    • Embed this notice
      pistolero :thispersondoesnotexist: (p@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:46:21 JST pistolero :thispersondoesnotexist: pistolero :thispersondoesnotexist:
      in reply to
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      @sysrq @Aldis @Big_Diggity @Lance @gabriel @graf @parker @tyler @victor

      > do it, piss everyone off :hellduck:

      I remember Vagrant trying and failing to get traction in places besides cut-rate code camps. Then along came Docker and it's the same shit. And Docker (and Docker-alikes) just look to me like someone fluoridated LxC. It's designed for startup feature factories where maintenance is not even on the priority list and you are MOVEFASTBREAKTHINGS DISRUPTING THE HOCKEYSTICK KPIs and you just pray it doesn't break. "Let's add another entire OS's worth of moving parts to the OS." God *damn*. "Let's add a series of container-managers to contain the containers!" It's strictly worse than shipping around zip files: the problems of containers in containers is a strict subset of the problems you get just shipping around zip files. People don't want to use iptables to do a firewall so they build an internal goddamn LAN inside a computer and then...they have to route the traffic to containers. The hardest part of programming is debugging and this is shit that makes debugging harder. You want your shit to only run on Ubuntu? SEND A SUBSET OF UBUNTU IN A 2GB DISK IMAGE FILE. NO, ACTUALLY, LET'S JUST USE 20 OVERLAYS! I HAVE NO PROBLEM DOWNLOADING A BLOB FULL OF BINARIES PUBLISHED BY UBER AND MICROSOFT AND SOME RANDOM GUY ON GITHUB AND ALSO SOME OF OUR COMPETITORS. OH, IT INTEGRATES WITH VSCODE? WONDERFUL
      ken-yshl.jpg
      In conversation Wednesday, 28-Jun-2023 21:46:21 JST permalink

      Attachments


      1. https://freespeechextremist.com/media/9e3901cd-aa2f-4e99-80d3-8007686539fd/ken-yshl.jpg?name=ken-yshl.jpg
      victor likes this.
    • Embed this notice
      sysrq (sysrq@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:46:22 JST sysrq sysrq
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      @p @victor @Aldis @Big_Diggity @Lance @gabriel @graf @parker @tyler
      >. . . if I keep going, I will end up pissing everyone off, so I won't
      do it, piss everyone off :hellduck:
      In conversation Wednesday, 28-Jun-2023 21:46:22 JST permalink
    • Embed this notice
      тнгэдт[угроза]™ (threat@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:49:48 JST тнгэдт[угроза]™ тнгэдт[угроза]™
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      @p @sysrq @Aldis @Big_Diggity @Lance @gabriel @graf @parker @tyler @victor had nightmare about p talking docker. here we are.

      work with containers daily they are fine if you have kontrol of full supply and build chain. most do not nor do they understand how it works. but even then no true reproducibility. work with this stuff daily and conduct sec ops for hyperscalar clusters (think 200+ node multi-regjon k8s and nomad clusters). all ov it horribly complex.

      but yes they are mainly for feature factory shipit™ companies

      mitch rolled a turd with vagrant. will not touch on that.

      vms in general can be subject to same supply chain vectors unless you have a way of ensuring upstream + downstream chains are in your custody (not realistic) and you have cluepon.

      this is why nixos is useful for me. makes controlling supply and build chains nicer, i can achieve reproducibility up to ~98% every time and everything can be audited end to end via cryptography. if i hand you a nix flake (builds manifest) to build a vm the sha and outputs will be identical on my machine as yours. but problem with nix is it invalidates all modern tooling for orchestration and configuration management. as well, it breaks convention of lsb-fhs but tradeoff is immutability and path isolation which had some benefits. but using in production environment likely will not be adopted due to cost of tearing down the abyss of shvt container systems.
      In conversation Wednesday, 28-Jun-2023 21:49:48 JST permalink
      victor likes this.
    • Embed this notice
      victor (victor@crucible.world)'s status on Wednesday, 28-Jun-2023 21:51:46 JST victor victor
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • тнгэдт[угроза]™
      @p @tyler @Lance @sysrq @threat @gabriel @parker @graf @Aldis @Big_Diggity I'm not pissed off, I'm actually kind of ashamed that the thing I recommend has a coloring book. Red Hat really is full of faggots.
      In conversation Wednesday, 28-Jun-2023 21:51:46 JST permalink
    • Embed this notice
      pistolero :thispersondoesnotexist: (p@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:51:47 JST pistolero :thispersondoesnotexist: pistolero :thispersondoesnotexist:
      in reply to
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      • тнгэдт[угроза]™
      @threat @Aldis @Big_Diggity @Lance @gabriel @graf @parker @sysrq @tyler @victor See, when I said I'd piss everyone off, I figured that would do it. Welcome to hellthread! :helllife:

      > had nightmare about p talking docker.

      :venomsnakedemon2:

      > work with this stuff daily and conduct sec ops for hyperscalar clusters (think 200+ node multi-regjon k8s and nomad clusters). all ov it horribly complex.

      I think you have to have a dedicated guy. If you have a dedicated guy, it's not as much of a mess but also does not strike me so much as useful.

      > vms in general can be subject to same supply chain vectors unless you have a way of ensuring upstream + downstream chains are in your custody (not realistic) and you have cluepon.

      Yeah, but you have that problem with any OS. At least you don't have that problem twice if you're not downloading containers from Docker.

      > nixos

      Reproducibility is nice; I don't like how they did it.
      In conversation Wednesday, 28-Jun-2023 21:51:47 JST permalink
    • Embed this notice
      тнгэдт[угроза]™ (threat@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 21:57:44 JST тнгэдт[угроза]™ тнгэдт[угроза]™
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor

      @p @Aldis @Big_Diggity @Lance @gabriel @graf @parker @sysrq @tyler @victor

      See, when I said I’d piss everyone off, I figured that would do it. Welcome to hellthread! :helllife:

      never mess up with me, reverso. you’re wrong. i’m smiling. this is the most interesting thread in ~6.mo. besides i needed break from trying to get my fbi agent to send me nudes

      I think you have to have a dedicated guy. If you have a dedicated guy, it’s not as much of a mess but also does not strike me so much as useful.

      dedicated operator is necessary for this shvt. if it were easy to manage mk would be running faang-corps. it’s only useful in the sense that many corps don’t understand the concept of simplicity and distributed computing. mostly they shovel container bodies onto the burnpile and yolo-deploy all day long.

      the schedulers (k8s/nomad/etc) fundamentally are simple in design. it’s when you layer on abstraction after abstraction of lo-code/no-code dogshvt the problem becomes complex because nobody can troubleshoot 9 layers of helltrash.

      Yeah, but you have that problem with any OS. At least you don’t have that problem twice if you’re not downloading containers from Docker.

      you do have a point there. the weirdest thing i’ve seen is.

      metal-host(insert os here) --> vm(insert vm host os here) --> docker(insert container os artifacts here) --> app stack --> hello_world

      maddening shvt all ov it.

      Reproducibility is nice; I don’t like how they did it.

      nix has lots of problems, maybe i will sideload a chat with you as to what you don’t like as not to start the fist_shake.

      thanks for good thread, komrade. :cupofcoffee: time!

      In conversation Wednesday, 28-Jun-2023 21:57:44 JST permalink
      victor likes this.
    • Embed this notice
      тнгэдт[угроза]™ (threat@freespeechextremist.com)'s status on Wednesday, 28-Jun-2023 22:04:36 JST тнгэдт[угроза]™ тнгэдт[угроза]™
      in reply to
      • pistolero :thispersondoesnotexist:
      • anime graf mays ?️?
      • sysrq
      • Lance ?
      • Big Diggity
      • Gabe
      • Parker Banks
      • Tyler
      • victor
      @victor @p @Aldis @Big_Diggity @Lance @gabriel @graf @parker @sysrq @tyler

      > I'm not pissed off, I'm actually kind of ashamed that the thing I recommend has a coloring book.

      nothing wrong with that. we can download colouring book and make ad-hoc rorschach tests

      > Red Hat really is full of faggots.

      faegots are everywhere it's irrelevant, redhat's light has dimmed for years. it seems their focus is corporate morons who won't take time to learn fundamentals of komputing
      In conversation Wednesday, 28-Jun-2023 22:04:36 JST permalink
      victor likes this.
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:27:53 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @Aldis

      take the smallest distros that supports docker and run your own wordpress blog in less then a minute WITHOUT the need of:

      - a static ip
      - a public ip
      - a domain name
      - a ssl certificate
      - portforwarding in the router
      - firewall rule in the router

      https://mastodon.satoshishop.de/@mk/109914957721932866

      @tyler @Lance @alex @gabriel @matty @parker@pl.psion.co @graf @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:27:53 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:29:32 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @Aldis

      spin up your bitcoin lightning-network node in less than 10 min WITHOUT the need of:

      - a static ip
      - a public ip
      - a domain name
      - a ssl certificate
      - portforwarding in the router
      - firewall rule in the router

      https://mastodon.satoshishop.de/@mk/111819231243916351

      @tyler @Lance @alex @gabriel @matty @graf @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:29:32 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:32:48 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @Aldis

      spin up your own peertube instance via tor in less than 15min WITHOUT the need of:

      - a static ip
      - a public ip
      - a domain name
      - a ssl certificate
      - portforwarding in the router
      - firewall rule in the router

      https://peertube.satoshishop.de/w/qjwoGjNFmnNvg53Ane5Cyf

      @tyler @Lance @alex @gabriel @matty @graf @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:32:48 JST permalink
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Sunday, 03-Mar-2024 07:49:23 JST Matty Matty
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Lance ?
      • Big Diggity
      • Gabe
      • mk
      • Tyler
      >PeerTube over TOR

      :really:
      In conversation Sunday, 03-Mar-2024 07:49:23 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:49:23 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @matty

      "PeerTube over TOR"

      yes. when you're at war, you try everything !

      here's a proof of concept with a old peertube version.

      http://n6272t6terlsvhklynv4cc36rldsuhwpscdqx7iwcqvpwkrcb6df6ayd.onion/w/ksW138Sx2jDdQCDM6ukojA

      @tyler @Lance @alex @gabriel @graf @Aldis @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:49:23 JST permalink

      Attachments


    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Sunday, 03-Mar-2024 07:52:14 JST Matty Matty
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Lance ?
      • Big Diggity
      • Gabe
      • mk
      • Tyler
      Know your target audience, nigga.
      In conversation Sunday, 03-Mar-2024 07:52:14 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:52:14 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @matty

      what's the target audience? a bunch of group-think-faggots that believe that you enemy isn't going to attack you on every angle?

      minimizing the attack vectors is super powerfull !

      @tyler @Lance @alex @gabriel @graf @Aldis @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:52:14 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 07:58:31 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @matty

      1. "not knowing how many exit nodes are compromised, then decreasing accessibility to it."

      you gotta be one of the most retarded persons on this planet.

      how many exit nodes are there if you connect from a tor-node to a tor-node?

      i'll spoil it for you: ZERO

      2. yes bandwidth is going to be ass..whats better..0 bandwidth or ass-tor-bandwidth?

      3. the services i posted run without anonymity. you can turn it on on demand.

      @tyler @Lance @alex @gabriel @graf @Aldis @Big_Diggity

      In conversation Sunday, 03-Mar-2024 07:58:31 JST permalink
    • Embed this notice
      Matty (matty@nicecrew.digital)'s status on Sunday, 03-Mar-2024 07:58:32 JST Matty Matty
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Lance ?
      • Big Diggity
      • Gabe
      • mk
      • Tyler
      You are "minimizing attack vectors" by using a service like Tor, not knowing how many exit nodes are compromised, then decreasing accessibility to it. Your bandwidth over Tor is going to be ass. It already takes a long time to load a single website over Tor, now add videos to it. I understand the desire, but at some point you're getting diminishing returns on anonymity versus practicality.
      In conversation Sunday, 03-Mar-2024 07:58:32 JST permalink
    • Embed this notice
      mk (mk@mastodon.satoshishop.de)'s status on Sunday, 03-Mar-2024 08:00:38 JST mk mk
      in reply to
      • anime graf mays ?️?
      • Alex Gleason
      • Matty
      • Lance ?
      • Big Diggity
      • Gabe
      • Tyler

      @matty

      you can set up a standalone-laptop and run around with it..plug it in -if any internet is available-and you're good to go.

      no additional configuration required...a monkey can do this.

      you can do that with anything

      @tyler @Lance @alex @gabriel @graf @Aldis @Big_Diggity

      In conversation Sunday, 03-Mar-2024 08:00:38 JST permalink

Feeds

  • Activity Streams
  • RSS 2.0
  • Atom
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.