--- Log opened Sat Nov 08 00:00:05 2025 00:00 -!- fedaykin [~rusty@user/fedaykin] has quit [Quit: leaving] 00:04 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 265 seconds] 00:05 < thrig> reserved inodes for root? 00:15 -!- hussein1 [~weechat@gateway/tor-sasl/hussein1] has joined #openbsd 00:17 -!- ArGGu^^ [~quassel@host-62-106-12-42.dynamic.elmonet.fi] has joined #openbsd 00:20 -!- CCIE|VOICE [~SOLARIS_s@pool-99-235-11-104.cpe.net.cable.rogers.com] has quit [Remote host closed the connection] 00:20 -!- Z_O [~zero@user/Z-O/x-2536656] has joined #openbsd 00:20 -!- SOLARIS_s [~SOLARIS_s@pool-99-235-11-104.cpe.net.cable.rogers.com] has joined #openbsd 00:20 -!- Z_O [~zero@user/Z-O/x-2536656] has left #openbsd [] 00:21 -!- StellarOrbit [~StellarOr@host-184-174-142-52.BROOLT3.epbfi.com] has joined #openbsd 00:21 -!- johnzlly [~johnzlly@user/johnzlly] has joined #openbsd 00:25 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 00:25 -!- StellarOrbit [~StellarOr@host-184-174-142-52.BROOLT3.epbfi.com] has quit [Ping timeout: 252 seconds] 00:29 -!- shiranaihito_ [~shiranaih@ppp-171-97-85-24.revip8.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 00:32 -!- jadi [~jadi@74.49.178.126] has joined #openbsd 00:33 -!- jadi [~jadi@74.49.178.126] has quit [Client Quit] 00:36 -!- fro [fro@humpty.dance] has quit [Remote host closed the connection] 00:43 -!- CosmicDJ_ [~CosmicDJ@p200300e24f422a0102e04cfffe01e7ab.dip0.t-ipconnect.de] has joined #openbsd 00:45 -!- CosmicDJ [~CosmicDJ@p200300e24f3cfd0102e04cfffe01e7ab.dip0.t-ipconnect.de] has quit [Ping timeout: 250 seconds] 00:49 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has quit [Ping timeout: 240 seconds] 00:55 -!- martinver [~martinver@200.68.178.102] has joined #openbsd 00:58 -!- martinver [~martinver@200.68.178.102] has quit [Client Quit] 01:00 -!- martinver [~martinver@200.68.176.202] has joined #openbsd 01:01 -!- martinver [~martinver@200.68.176.202] has quit [Client Quit] 01:07 -!- fro [fro@humpty.dance] has joined #openbsd 01:11 -!- martinver [~martinver@200.68.176.202] has joined #openbsd 01:13 -!- emmanuelux [~emmanuelu@user/emmanuelux] has joined #openbsd 01:14 -!- martinver [~martinver@200.68.176.202] has quit [Client Quit] 01:14 -!- zbcm__ [~mcbz@user/zbcm] has quit [Ping timeout: 240 seconds] 01:15 -!- duri [~mduregon@97-120-177-252.ptld.qwest.net] has quit [Remote host closed the connection] 01:16 -!- defa [~feeeee@aannecy-651-1-433-239.w86-209.abo.wanadoo.fr] has quit [Ping timeout: 240 seconds] 01:19 -!- tozhu [~tozhu@222.210.190.151] has quit [Quit: tozhu] 01:36 -!- fro [fro@humpty.dance] has quit [Quit: I'd never pass the bar unless I thought it was wet .gz.] 01:36 -!- tozhu [~tozhu@222.210.190.151] has joined #openbsd 01:43 -!- DetourNe- [DetourNetw@user/DetourNetworkUK] has joined #openbsd 01:44 -!- DetourNetworkUK [~DetourNet@user/DetourNetworkUK] has quit [Ping timeout: 246 seconds] 01:45 -!- duri [~mduregon@97-120-222-65.ptld.qwest.net] has joined #openbsd 01:46 -!- DetourNe- is now known as DetourNetworkUK 01:57 -!- martinver [~martinver@200.68.178.102] has joined #openbsd 01:59 < rnkn> I'm going to solve my aforementioned web app permissions problem thusly (and appreciate critique); the wep app will start as root, chroot and drop privileges, then it will communicate via socket to a helper script that runs as root to do all the file modications and system user account creation 01:59 -!- zimmer [~zimmer@user/zimmer] has quit [Remote host closed the connection] 02:00 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 02:02 -!- martinver [~martinver@200.68.178.102] has quit [Quit: Client closed] 02:03 < o0x1eef> Why the first part, most web servers would do that for you, and you could avoid it entirely with a high port. 02:07 < rnkn> o0x1eef: apparently this web server does not? what do you mean a high port? it will be behing nginx communicating via a different socket 02:08 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 02:10 < rnkn> the web server is Mojo::Server::Prefork 02:10 < o0x1eef> Why do you have to be root for the first part ? The chroot ? Otherwise you could bind to a port >=1024 as an unprivileged user, and let nginx proxy to your app server running on that higher port. 02:11 -!- wnh [~Thunderbi@user/wnh] has joined #openbsd 02:12 < rnkn> o0x1eef: the chroot yes 02:12 < rnkn> afaik an unprivileged user can't chroot 02:12 < o0x1eef> AFAIK not on OpenBSD but on FreeBSD they can. 02:13 < o0x1eef> It sounds okay I guess, I'm just wary of running things like perl, etc, as root. 02:13 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Read error: Connection reset by peer] 02:15 < o0x1eef> Have you looked into pledge and unveil? 02:15 < o0x1eef> You could use those as an unprivileged user, unveil sounds like it might help 02:16 < rnkn> I have a little, the reason I'm hesitant is that I'm doing development localy on a Linux machine, so to really test things I'd need to faff about with a VM 02:17 < rnkn> atm I have a directory that mirrors my server /var/www and I just chroot into that 02:19 < o0x1eef> On OpenBSD I would personally look into unveil as an alternative to chroot that doesn't require root, so you don't have to run perl as root. 02:23 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 02:25 -!- martinver [~martinver@200.68.178.102] has joined #openbsd 02:27 < rnkn> yeah, it's just that I want my local dev environment to mirror my server 02:29 < o0x1eef> Then your idea should work, but it is optimized for your dev environment rather than your users 02:30 -!- vados [~vados@46-133-57-213.mobile.vf-ua.net] has quit [Ping timeout: 264 seconds] 02:30 -!- martinver [~martinver@200.68.178.102] has quit [Quit: Client closed] 02:32 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 264 seconds] 02:32 -!- martinver [~martinver@200.68.178.102] has joined #openbsd 02:35 < afresh1> security(8) runs as root. Perl isn't any scarier to run as root as anything else. I mean, if _possible_ using pledge and unveil is generally a good idea. 02:37 < o0x1eef> The issue with things like Perl in web apps is the CPAN dependencies. Can you really trust them. I'm never sure. So I would take a more cautious approach, and unveil/pledge could definitely help there. 02:37 -!- martinver [~martinver@200.68.178.102] has quit [Quit: Client closed] 02:38 < rnkn> yeah but if I don't trust the CPAN dependencies I'm not left with much of a framework 02:38 < o0x1eef> That doesn't mean you can't take precautions. WIth pledge you can decide what sys calls are allowed. With unveil you can control access to the filesystem. So if malicious code does happen to run, you have some protection. 03:02 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 03:02 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 03:06 -!- tvtoon [~The_cUnix@user/tvtoon] has quit [Quit: "Kabochiisa!"] 03:37 -!- Poster [~poster@24.210.86.224] has quit [Ping timeout: 264 seconds] 03:40 -!- vinleod [~vdamewood@fedora/vdamewood] has joined #openbsd 03:43 -!- vdamewood [~vdamewood@fedora/vdamewood] has quit [Ping timeout: 260 seconds] 03:47 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 03:50 -!- ublxi [~ublx@user/ublx] has quit [Quit: ublxi] 03:51 -!- fedaykin [~rusty@user/fedaykin] has joined #openbsd 03:53 -!- zip100 [~zip100@185.209.196.185] has quit [Ping timeout: 244 seconds] 03:53 -!- _zip100 [~zip100@193.32.248.133] has joined #openbsd 03:57 -!- vinleod is now known as vdamewood 04:08 -!- mover [~hischild@user/mover] has quit [Quit: leaving] 04:09 -!- artmdl [~art5456@d173-183-34-71.bchsia.telus.net] has quit [Ping timeout: 264 seconds] 04:13 -!- gtlwuc [uid621242@user/gtlwuc] has joined #openbsd 04:15 -!- naoki [~Thunderbi@240f:10b:7440:1:dee8:15c7:5722:3f9d] has joined #openbsd 04:15 -!- Poster [~poster@2603:6010:1302:974c:8d35:116b:e5c0:1555] has joined #openbsd 04:23 -!- shiranaihito_ [~shiranaih@ppp-171-97-85-24.revip8.asianet.co.th] has joined #openbsd 04:29 -!- talos [~talos@68.186.150.133] has quit [Quit: The Lounge - https://thelounge.chat] 04:30 -!- talos [~talos@68.186.150.133] has joined #openbsd 04:39 -!- fgarcia [~lei@user/fgarcia] has joined #openbsd 04:48 -!- OnASnoopPhone [~OnASnoopP@user/OnASnoopPhone] has joined #openbsd 04:49 -!- johnzlly [~johnzlly@user/johnzlly] has quit [Ping timeout: 264 seconds] 04:51 -!- popopoooo [~root@152.156.189.104] has joined #openbsd 04:55 -!- mbuhl [~mbuhl@user/mbuhl] has quit [Remote host closed the connection] 04:57 -!- linsux [~metbsd@user/linsux] has quit [Ping timeout: 244 seconds] 05:01 -!- gh [~bob@user/gh] has joined #openbsd 05:02 -!- mbuhl [~mbuhl@user/mbuhl] has joined #openbsd 05:07 -!- Warr1024 [~Warr@user/warr1024] has quit [Killed (erbium.libera.chat (Nickname regained by services))] 05:07 -!- Warr1024 [~Warr@user/warr1024] has joined #openbsd 05:08 -!- popopoooo [~root@152.156.189.104] has quit [Quit: Lost terminal] 05:09 -!- popopoooo [~root@152.156.189.104] has joined #openbsd 05:09 -!- popopoooo [~root@152.156.189.104] has quit [Client Quit] 05:10 -!- popopoooo [~root@152.156.189.104] has joined #openbsd 05:17 -!- popopoooo [~root@152.156.189.104] has quit [Quit: leaving] 05:18 -!- popopoooo [~root@152.156.189.104] has joined #openbsd 05:18 -!- popopoooo is now known as popopooooo 05:18 -!- popopooooo is now known as popopo123 05:18 -!- popopo123 is now known as popopo-pab 05:21 -!- popopo-pab [~root@152.156.189.104] has quit [Client Quit] 05:21 -!- popopoooo [~root@152.156.189.104] has joined #openbsd 05:21 -!- popopoooo is now known as pdgdeni 05:21 -!- pdgdeni is now known as pdgdeni123 05:21 -!- pdgdeni123 is now known as pdgdeni 05:23 -!- pdgdeni [~root@152.156.189.104] has quit [Client Quit] 05:24 -!- zbcm [~mcbz@user/zbcm] has joined #openbsd 05:26 -!- pdgdeni [~root@152.156.189.104] has joined #openbsd 05:26 -!- pdgdeni [~root@152.156.189.104] has quit [Client Quit] 05:29 < rnkn> I'm getting this on OpenBSD server but not on Linux local when trying to drop privileges for a Perl app: unable to allocate memory for closure at lib/Bliptown/Model/Page.pm line 92. 05:29 -!- pdgdeni [~root@152.156.189.104] has joined #openbsd 05:30 -!- pdgdeni [~root@152.156.189.104] has quit [Changing host] 05:30 -!- pdgdeni [~root@user/pdgdeni] has joined #openbsd 05:30 -!- linsux [~metbsd@pool-99-241-31-97.cpe.net.cable.rogers.com] has joined #openbsd 05:30 -!- linsux [~metbsd@pool-99-241-31-97.cpe.net.cable.rogers.com] has quit [Changing host] 05:30 -!- linsux [~metbsd@user/linsux] has joined #openbsd 05:31 -!- pdgdeni [~root@user/pdgdeni] has quit [Client Quit] 05:31 -!- pdgdeni [~root@152.156.189.104] has joined #openbsd 05:31 -!- pdgdeni [~root@152.156.189.104] has quit [Client Quit] 05:32 -!- pdgdeni [~root@152.156.189.104] has joined #openbsd 05:33 -!- pdgdeni [~root@152.156.189.104] has quit [Client Quit] 05:34 -!- pdgdeni [~root@152.156.189.104] has joined #openbsd 05:34 -!- pdgdeni [~root@152.156.189.104] has quit [Changing host] 05:34 -!- pdgdeni [~root@user/pdgdeni] has joined #openbsd 05:41 -!- linsux [~metbsd@user/linsux] has quit [Ping timeout: 240 seconds] 05:45 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has joined #openbsd 05:47 < rnkn> that's bad right? 05:49 -!- zbcm [~mcbz@user/zbcm] has quit [Quit: leaving] 05:52 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has joined #openbsd 05:55 < rnkn> the line in question calls a FFI::Platypus imported C function md_html from md4c 05:55 < rnkn> so OpenBSD does not want me running my C code? 06:00 -!- fart_cat [~fart_cat@user/fart-cat:36778] has joined #openbsd 06:18 -!- gh [~bob@user/gh] has quit [Remote host closed the connection] 06:19 < rnkn> thought this could be due to a nosuid on /var but changing that didn't help 06:23 -!- gtlwuc [uid621242@user/gtlwuc] has quit [Quit: Connection closed for inactivity] 06:23 -!- vados [~vados@46-133-57-213.mobile.vf-ua.net] has joined #openbsd 06:34 < thrig> login.conf limits may be relevant 06:34 -!- nature [~nature@64.137.144.64] has quit [Ping timeout: 252 seconds] 06:40 -!- pdgdeni [~root@user/pdgdeni] has quit [Quit: Lost terminal] 06:52 < rnkn> thrig: yeah I've boosted them pretty far 06:54 < rnkn> the daemon starts as the bliptown login class, then the Perl script chroots and chdirs and setuid to the _bliptown user. I'm not sure what login class that makes _bliptown? 07:12 < rnkn> I've set usermod -L bliptown _bliptown 07:12 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 264 seconds] 07:14 -!- sonya [~nightwolf@gateway/tor-sasl/sonya] has joined #openbsd 07:15 < rnkn> okay it's definitely the call to the C library md_html 07:15 < rnkn> *C function 07:15 < rnkn> I comment that line and it works 07:20 -!- bigato_ [~bigato@170.81.150.196] has quit [Ping timeout: 246 seconds] 07:31 < IcePic> rnkn: sounds like you found a good place to printf some debig, like get_loginclass and getuid,getresuid,geteuid and so on 07:31 < IcePic> debug* 07:33 -!- mtoy [~mtoy@user/mtoy] has quit [Ping timeout: 240 seconds] 07:35 -!- mtoy [~mtoy@user/mtoy] has joined #openbsd 07:39 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 07:39 -!- zbcm [~zbcm@user/zbcm] has joined #openbsd 07:50 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 244 seconds] 07:51 -!- johnzlly [~johnzlly@KD118158186024.ppp-bb.dion.ne.jp] has joined #openbsd 07:51 -!- johnzlly [~johnzlly@KD118158186024.ppp-bb.dion.ne.jp] has quit [Changing host] 07:51 -!- johnzlly [~johnzlly@user/johnzlly] has joined #openbsd 07:52 < rnkn> it seems that once the app drops privileges it's running as no login class? 07:52 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 07:55 -!- def [~feeeee@aannecy-651-1-433-239.w86-209.abo.wanadoo.fr] has joined #openbsd 07:57 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:58 -!- OnASnoopPhone [~OnASnoopP@user/OnASnoopPhone] has quit [Remote host closed the connection] 08:01 -!- tozhu [~tozhu@222.210.190.151] has quit [Quit: tozhu] 08:04 < rnkn> according to /etc/passwd the user _bliptown is in the bliptown login class, but according to the logging from within the Perl app its stack limits are completely different 08:04 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 240 seconds] 08:06 < rnkn> but it's still running with 8MB soft stack limit and 32MB hard limit, which should be plenty? 08:14 < rnkn> I've currently done the chroot, chdir and setuid within the Perl app, but Google AI is telling me I should do this in the rc.d script? 08:17 -!- CrimeWave [~Ebox-MTL@user/CrimeWave] has quit [Quit: Electronic Box Montréal - Textual IRC 7.2.6 OSX] 08:20 < cgnarne> why would you listen to a parrot? 08:23 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 08:23 -!- OnASnoopPhone [~OnASnoopP@user/OnASnoopPhone] has joined #openbsd 08:26 < IcePic> rkta: depends on if it needs to do things before it setuids or not 08:26 < IcePic> X11 will bind to the gfx hardware and so on, then drop privs for the rest of its run. If your daemon doesn't need to do things as one user (root) and then drop privs, it can just run with low privs from the start 08:27 -!- daugaard [~daugaard@user/daugaard] has joined #openbsd 08:28 < rnkn> I want the app to run in a chroot, but it can't chroot itself 08:30 < rnkn> I'm starting to think this chroot endeavour is a lost cause... 08:30 < IcePic> so if root starts rc.d/some_daemon it could run chroot(8) as uid 0 and you give params to chroot(8) so it setuids to the wanted uid 08:32 -!- ixc [~ixc@user/ixc] has joined #openbsd 08:34 -!- shiranaihito_ [~shiranaih@ppp-171-97-85-24.revip8.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 08:35 < rnkn> I'm just testing the chroot (which I thought was solid) manually and perl is crippled 08:36 -!- zapata [~zapata@user/zapata] has joined #openbsd 08:39 < rnkn> it's so frustrating because it works on my Linux machine. bah! 08:39 < rnkn> (doing the chroot/setuid within the app) 08:40 -!- ali_rahbar_77 [~ali@5.116.125.111] has joined #openbsd 08:42 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 08:42 -!- ali_rahbar_77 [~ali@5.116.125.111] has quit [Changing host] 08:42 -!- ali_rahbar_77 [~ali@user/ali-rahbar-17:36079] has joined #openbsd 08:43 -!- ali_rahbar_77 is now known as ali_rahbar_17 08:49 -!- feriman [~feriman@user/feriman] has quit [Quit: Lost terminal] 08:50 -!- armani_ [~dbd@armani.tech] has quit [Remote host closed the connection] 08:50 -!- feriman [~feriman@user/feriman] has joined #openbsd 08:54 -!- typicat [~iam@user/typicat] has quit [Ping timeout: 252 seconds] 08:55 -!- typicat [~iam@user/typicat] has joined #openbsd 08:59 -!- feriman [~feriman@user/feriman] has quit [Read error: Connection reset by peer] 09:01 -!- rc [~rc@user/rc] has quit [Quit: nyaa~] 09:01 -!- deltahotel [~deltahote@user/deltahotel] has joined #openbsd 09:09 -!- vados [~vados@46-133-57-213.mobile.vf-ua.net] has quit [Ping timeout: 260 seconds] 09:10 -!- ivy [~ivy@amaryllis.le-fay.org] has left #openbsd [] 09:10 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 09:15 -!- km [~km@c978F5BC1.dhcp.as2116.net] has joined #openbsd 09:20 -!- deltahotel [~deltahote@user/deltahotel] has quit [Quit: deltahotel] 09:22 -!- gtlwuc [uid621242@user/gtlwuc] has joined #openbsd 09:25 -!- shiranaihito_ [~shiranaih@49.228.58.127] has joined #openbsd 09:25 -!- parai_ [~parai@user/parai] has joined #openbsd 09:27 -!- parai [~parai@user/parai] has quit [Ping timeout: 264 seconds] 09:27 -!- parai_ is now known as parai 09:32 -!- shiranaihito_ [~shiranaih@49.228.58.127] has quit [Read error: Connection reset by peer] 09:33 -!- CrashOverride [~strcat@p5485421e.dip0.t-ipconnect.de] has joined #openbsd 09:33 -!- parai [~parai@user/parai] has quit [Ping timeout: 245 seconds] 09:33 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has joined #openbsd 09:35 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 252 seconds] 09:37 -!- shiranaihito_ [~shiranaih@mx-ll-171.6.107-69.dynamic.3bb.co.th] has joined #openbsd 09:53 -!- parai [~parai@user/parai] has joined #openbsd 09:56 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 09:58 -!- parai [~parai@user/parai] has quit [Ping timeout: 252 seconds] 10:01 -!- seninha [~seninha@user/seninha] has joined #openbsd 10:07 -!- km [~km@c978F5BC1.dhcp.as2116.net] has quit [] 10:07 -!- szilard [~szilard@1F2EFB15.nat.pool.telekom.hu] has quit [Remote host closed the connection] 10:07 < rnkn> is this AI advice remotely true? https://paste.sr.ht/~rnkn/d569a8627753cd7112be4ec1f1d320f29f596656 10:08 -!- ali_rahbar_17 [~ali@user/ali-rahbar-17:36079] has quit [Ping timeout: 244 seconds] 10:10 -!- szilard [~szilard@1F2EFB15.nat.pool.telekom.hu] has joined #openbsd 10:10 < quinq> Why would anybody review random sentences auto-generated from a computer for free 10:10 -!- cpk [~cpk@185.172.87.163] has quit [Ping timeout: 264 seconds] 10:11 -!- cpk [~cpk@185.172.87.163] has joined #openbsd 10:11 < rnkn> I can pay 50 internet points 10:12 < rnkn> can go as high as 100 if the feedback is really good 10:15 -!- accelerat0r [~user@user/accelerat0r] has joined #openbsd 10:15 < cgnarne> stop listening to the parrot 10:18 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has quit [Remote host closed the connection] 10:21 < quinq> rnkn, though if you have an actual technical question about a problem you're trying to solve, I'm pretty sure some people around here would try to help 10:21 -!- parai [~parai@user/parai] has joined #openbsd 10:22 < rnkn> quinq: I have lost hope in my ability to chroot my web app; will setting an appropriate unprivileged daemon_user and login class be enough? 10:23 < rnkn> I guess that's not definitively technical, more qualitative 10:23 < quinq> Well, OpenBSD already provides a chrooted web server that can talk to another service through CGI 10:25 < quinq> You need a process to open the privileged port from the outside 10:25 < quinq> s/from/listening on/ 10:26 < quinq> If that process doesn't support “dropping privileges”, then it'll always run as a privileged user anyway 10:26 < quinq> What's the architecture of that “web app”? 10:26 < rnkn> Mojolicious (Perl) 10:31 < quinq> I suppose you could duplicate perl installation into a chroot 10:32 < rnkn> what I did was nfs mounted ro the /usr/libdata/perl5 and /usr/local/libdata/perl5 dirs into /var/www 10:33 < rnkn> copied perl, did all the ldd stuff 10:33 < rnkn> libc, etc. 10:35 -!- shiranaihito_ [~shiranaih@mx-ll-171.6.107-69.dynamic.3bb.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 10:50 -!- Guest9 [~Guest28@h135-131-236-225.mdsnwi.broadband.dynamic.tds.net] has joined #openbsd 10:50 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has joined #openbsd 10:52 -!- Guest9 [~Guest28@h135-131-236-225.mdsnwi.broadband.dynamic.tds.net] has quit [Client Quit] 11:01 -!- shiranaihito_ [~shiranaih@mx-ll-171.6.148-196.dynamic.3bb.co.th] has joined #openbsd 11:08 -!- zapata [~zapata@user/zapata] has quit [Quit: zapata] 11:16 -!- zbcm [~zbcm@user/zbcm] has quit [Remote host closed the connection] 11:16 -!- zbcm [~zbcm@user/zbcm] has joined #openbsd 11:17 -!- qqe [~qqq@185.54.21.203] has joined #openbsd 11:18 < rnkn> I gave up and it's just running as daemon_user="_bliptown" now, no chroot. I'm not sure how I feel about this. 11:19 -!- asji [~bajiu@user/asji] has joined #openbsd 11:24 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has quit [Quit: Connection closed for inactivity] 11:31 -!- gtlwuc [uid621242@user/gtlwuc] has quit [Quit: Connection closed for inactivity] 11:33 -!- parai_ [~parai@user/parai] has joined #openbsd 11:34 -!- parai [~parai@user/parai] has quit [Ping timeout: 244 seconds] 11:34 -!- parai_ is now known as parai 11:35 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has quit [Ping timeout: 264 seconds] 11:39 -!- ali_rahbar_17 [~ali@5.116.127.31] has joined #openbsd 11:41 -!- ublx [~ublx@user/ublx] has joined #openbsd 11:43 -!- cgnarne_ [~pk@2a0a-a545-dc2e-0-220-91ff-feff-ee02.ipv6dyn.netcologne.de] has joined #openbsd 11:44 -!- lovisabet [~virys@user/lovisabet] has quit [Remote host closed the connection] 11:44 -!- cgnarne [~pk@user/cgnarne] has quit [Ping timeout: 244 seconds] 11:50 -!- jkm [~jkm@user/jkm] has joined #openbsd 11:51 -!- shreven [~shreven@user/shreven] has joined #openbsd 11:55 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has joined #openbsd 11:57 -!- cgnarne [~pk@2a0a-a545-de48-0-220-91ff-feff-ee02.ipv6dyn.netcologne.de] has joined #openbsd 11:57 -!- cgnarne [~pk@2a0a-a545-de48-0-220-91ff-feff-ee02.ipv6dyn.netcologne.de] has quit [Changing host] 11:57 -!- cgnarne [~pk@user/cgnarne] has joined #openbsd 11:58 -!- cgnarne_ [~pk@2a0a-a545-dc2e-0-220-91ff-feff-ee02.ipv6dyn.netcologne.de] has quit [Ping timeout: 246 seconds] 12:10 -!- accelera` [~user@186.167.85.73] has joined #openbsd 12:11 -!- accelerat0r [~user@user/accelerat0r] has quit [Ping timeout: 250 seconds] 12:12 -!- feriman [~feriman@user/feriman] has joined #openbsd 12:13 -!- deltahotel [~deltahote@user/deltahotel] has joined #openbsd 12:15 -!- asji [~bajiu@user/asji] has quit [Quit: leaving] 12:15 -!- asji [~bajiu@user/asji] has joined #openbsd 12:16 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 250 seconds] 12:17 -!- djhankb9311 [~djhankb@ip-208-113-164-68.nodes.dream.io] has quit [Remote host closed the connection] 12:18 -!- djhankb9311 [~djhankb@ip-208-113-164-68.nodes.dream.io] has joined #openbsd 12:21 -!- seninha [~seninha@user/seninha] has joined #openbsd 12:22 -!- vados [~vados@46-133-57-213.mobile.vf-ua.net] has joined #openbsd 12:27 -!- michel is now known as Voyager_MP 12:29 -!- naoki [~Thunderbi@240f:10b:7440:1:dee8:15c7:5722:3f9d] has quit [Quit: naoki] 12:31 -!- vados [~vados@46-133-57-213.mobile.vf-ua.net] has quit [Read error: Connection reset by peer] 12:32 -!- jedesa [~Thunderbi@user/jedesa] has quit [Remote host closed the connection] 12:35 -!- accelera` [~user@186.167.85.73] has quit [Remote host closed the connection] 12:37 -!- vados [~vados@128-124-193-92.mobile.vf-ua.net] has joined #openbsd 12:48 -!- asji [~bajiu@user/asji] has quit [Quit: leaving] 12:48 -!- asji [~bajiu@user/asji] has joined #openbsd 12:50 -!- johnzlly [~johnzlly@user/johnzlly] has quit [Ping timeout: 250 seconds] 12:54 -!- Red_ [~Red@219.51-174-66.customer.lyse.net] has joined #openbsd 12:56 -!- shiranaihito_ [~shiranaih@mx-ll-171.6.148-196.dynamic.3bb.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 12:56 -!- Red [~Red@219.51-174-66.customer.lyse.net] has quit [Ping timeout: 252 seconds] 12:57 -!- feriman [~feriman@user/feriman] has quit [Read error: Connection reset by peer] 13:03 -!- asji [~bajiu@user/asji] has quit [Quit: leaving] 13:04 -!- Red_ [~Red@219.51-174-66.customer.lyse.net] has quit [Read error: Connection reset by peer] 13:04 -!- Red [~Red@219.51-174-66.customer.lyse.net] has joined #openbsd 13:13 -!- deltahotel [~deltahote@user/deltahotel] has quit [Ping timeout: 260 seconds] 13:19 -!- johnzlly [~johnzlly@user/johnzlly] has joined #openbsd 13:27 -!- linsux [~metbsd@pool-99-241-31-97.cpe.net.cable.rogers.com] has joined #openbsd 13:27 -!- linsux [~metbsd@pool-99-241-31-97.cpe.net.cable.rogers.com] has quit [Changing host] 13:27 -!- linsux [~metbsd@user/linsux] has joined #openbsd 13:30 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has joined #openbsd 13:37 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has quit [Ping timeout: 245 seconds] 13:39 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has joined #openbsd 13:39 -!- skydrome [~emordyks@user/skydrome] has quit [Quit: quit] 13:39 -!- skydrome [~emordyks@user/skydrome] has joined #openbsd 13:45 -!- shiranaihito_ [~shiranaih@ppp-171-97-85-24.revip8.asianet.co.th] has joined #openbsd 13:54 -!- andinus [~andinus@user/andinus] has quit [Ping timeout: 252 seconds] 13:58 -!- Red_ [~Red@219.51-174-66.customer.lyse.net] has joined #openbsd 13:58 -!- feriman [~feriman@user/feriman] has joined #openbsd 13:59 -!- Red__ [~Red@219.51-174-66.customer.lyse.net] has joined #openbsd 14:01 -!- Red [~Red@219.51-174-66.customer.lyse.net] has quit [Ping timeout: 255 seconds] 14:02 -!- Red [~Red@219.51-174-66.customer.lyse.net] has joined #openbsd 14:03 -!- Red_ [~Red@219.51-174-66.customer.lyse.net] has quit [Ping timeout: 252 seconds] 14:04 -!- nature [~nature@64.137.144.64] has joined #openbsd 14:04 -!- Red__ [~Red@219.51-174-66.customer.lyse.net] has quit [Ping timeout: 252 seconds] 14:05 < xx> when browsing https://cvsweb.openbsd.org/ can I get it to display the actual file contents? 14:06 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Read error: Connection reset by peer] 14:06 -!- cnuke [~cnuke@vond.sysret.de] has quit [Quit: leaving] 14:08 -!- deltahotel [~deltahote@user/deltahotel] has joined #openbsd 14:09 -!- cnuke [~cnuke@rin.sysret.de] has joined #openbsd 14:12 -!- andinus [~andinus@user/andinus] has joined #openbsd 14:16 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 14:19 -!- tozhu [~tozhu@222.210.190.151] has joined #openbsd 14:22 -!- deltahotel [~deltahote@user/deltahotel] has quit [Ping timeout: 252 seconds] 14:24 < cgnarne> yes 14:26 -!- psydroid [~psydroid@user/psydroid] has quit [Ping timeout: 244 seconds] 14:32 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has quit [Ping timeout: 260 seconds] 14:34 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has joined #openbsd 14:36 < xx> how? 14:37 -!- psydroid [~psydroid@user/psydroid] has joined #openbsd 14:38 < cgnarne> what did you try to get the content? 14:38 -!- martinver [~martinver@200.68.176.218] has joined #openbsd 14:48 < xx> click the filename 14:50 -!- martinver [~martinver@200.68.176.218] has quit [Quit: Client closed] 14:50 < cgnarne> then try revision or download 14:51 -!- absc [~absc@2a04:ee41:8:6055::101] has joined #openbsd 14:52 -!- padeksist [~padeksist@2001:16e0:207:de00:a8dd:9e16:b813:fc4b] has quit [Ping timeout: 265 seconds] 14:52 < cli> is there an idiomatic way to compile some userspace binary from src with debug symbols? 14:54 < xx> cgnarne: thanks 14:55 -!- amnesiac [~amnesiac@95-27-76-172.broadband.corbina.ru] has joined #openbsd 14:57 < amnesiac> Hi. anybody tried android debug bridge under openbsd ? 14:57 < amnesiac> one more question could vmd passthrough hosts usb devices to guest ? 15:01 -!- beech [~gavin@grassfield.plus.com] has quit [Quit: Upgrading] 15:02 -!- user71 [~user71@2001:1530:1052:fa52:a3b8:2467:2c78:47b1] has joined #openbsd 15:02 < sibiria> it has no passthrough 15:02 < amnesiac> sibiria, i see 15:03 < amnesiac> sad sad 15:06 -!- nature [~nature@64.137.144.64] has quit [Ping timeout: 264 seconds] 15:06 -!- tertullian [~sonne@ip-095-222-113-247.um34.pools.vodafone-ip.de] has quit [Quit: Lost terminal] 15:06 < sonya> i tried passthrough with qemu and usb-stick, failed. 15:07 -!- frkazoid333 [~frkazoid3@2603-900b-46f0-b390-ad3f-67be-f503-ef8c.inf6.spectrum.com] has quit [Ping timeout: 260 seconds] 15:11 -!- vados [~vados@128-124-193-92.mobile.vf-ua.net] has quit [Ping timeout: 256 seconds] 15:12 -!- ali_rahbar_17 [~ali@5.116.127.31] has quit [Ping timeout: 252 seconds] 15:12 -!- absc [~absc@2a04:ee41:8:6055::101] has quit [Ping timeout: 260 seconds] 15:13 -!- frkazoid333 [~frkazoid3@97.97.219.179] has joined #openbsd 15:16 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 15:18 -!- nature [~nature@64.137.144.64] has joined #openbsd 15:20 -!- yclept [~yclept@user/yclept] has joined #openbsd 15:21 -!- johnzlly [~johnzlly@user/johnzlly] has quit [Ping timeout: 264 seconds] 15:22 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has joined #openbsd 15:22 -!- psydroid2 [~psydroid@user/psydroid] has joined #openbsd 15:25 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has joined #openbsd 15:27 -!- mover [~hischild@user/mover] has joined #openbsd 15:28 < amnesiac> sonya, interesting. thank you. 15:29 -!- imightbeacat is now known as iwannabethecat 15:29 < amnesiac> i remember tried block device passthrough and it worked 15:31 -!- fro [fro@humpty.dance] has joined #openbsd 15:32 < sonya> may be i screwed config. it's possible. unfortunately. https://termbin.com/jqs7 15:49 < IcePic> cli: I think you just set DEBUG to a value 15:50 < IcePic> to "-g" more specifically 15:50 < IcePic> and if it is set, the binary will not get stripped 15:56 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has quit [Ping timeout: 244 seconds] 16:00 -!- ikichigai [~ikichigai@user/ikichigai] has quit [Read error: Connection reset by peer] 16:01 -!- mover [~hischild@user/mover] has quit [Ping timeout: 264 seconds] 16:08 -!- aqsd [~aqsd@user/aqsd] has quit [Quit: Everywhere I turn I see more of those hollow glass chickens.] 16:08 -!- ikichigai [~ikichigai@5.43.228.119] has joined #openbsd 16:09 -!- fro [fro@humpty.dance] has quit [Quit: Ripopgodazippa .gz.] 16:10 -!- Guest21 [~Guest21@cpe-94-253-219-86.st2.cable.xnet.hr] has joined #openbsd 16:12 -!- fro [fro@humpty.dance] has joined #openbsd 16:13 -!- mytec333 [~mytec333@user/mytec333] has joined #openbsd 16:16 -!- m0v [~m0v@user/m0v] has quit [Quit: Leaving...] 16:18 -!- m0v [~m0v@113.192.29.135] has joined #openbsd 16:18 -!- m0v [~m0v@113.192.29.135] has quit [Changing host] 16:18 -!- m0v [~m0v@user/m0v] has joined #openbsd 16:19 -!- jackpine [~jackpine@user/jackpine] has quit [Ping timeout: 256 seconds] 16:20 -!- treefrob [~treefrob@p57a96d6b.dip0.t-ipconnect.de] has joined #openbsd 16:21 -!- jackpine [~jackpine@pool-99-250-197-106.cpe.net.cable.rogers.com] has joined #openbsd 16:21 -!- mover [~hischild@user/mover] has joined #openbsd 16:24 < haddock> anyone in here have a good idea how to recreate master.passwd, I tried using pwd_mkdb on it but then it complains about shadow not being in the group. 16:29 < IcePic> haddock: what is the exact error? 16:29 < IcePic> I seem to have a group named _shadow with id 16:29 < IcePic> 65 16:31 < IcePic> the interesting thing is probably 1. why you need to remake master.passwd and 2. what you managed to do before in order to need to run it now 16:31 < haddock> IcePic: my master.passwd got corrupt, I booted the system into single user mode, mounted / and /usr and then tried to run pwd_mkdb but go "cannot find _shadow in the group database" and if I try to just go for passwd I get that line too long. 16:31 < IcePic> so is it possible you have a broken /etc/group als? 16:31 < IcePic> also* 16:31 < o0x1eef> rnkn I'm not sure I follow. Why do you use OpenBSD if you won't use any of the features that are specific to it, and arguably, what makes it secure in the first place ? eg pledge, eg unveil. I get you use Linux locally. But what's the point of using OpenBSD at all? Not a jab. Just trying to understand. 16:32 -!- skydrome [~emordyks@user/skydrome] has quit [Remote host closed the connection] 16:32 < metavoid> haddock: did you check /var/backups? 16:32 < haddock> IcePic: that might be possible I never looked inside of groups 16:32 < haddock> metavoid: no I didnt :D 16:32 < IcePic> /var/backups should have both etc_group.backup etc_group.current 16:33 < IcePic> and passwd if need be 16:35 < haddock> Okey thanks, I will go and have a look 16:40 -!- martinver [~martinver@200.68.176.42] has joined #openbsd 16:40 -!- martinver [~martinver@200.68.176.42] has quit [Client Quit] 16:40 -!- martinver [~martinver@200.68.176.42] has joined #openbsd 16:41 -!- martinver [~martinver@200.68.176.42] has quit [Client Quit] 16:43 -!- skydrome [~emordyks@user/skydrome] has joined #openbsd 16:51 -!- fro [fro@humpty.dance] has quit [Remote host closed the connection] 16:56 -!- beech [~gavin@grassfield.plus.com] has joined #openbsd 16:59 -!- padeksist [~padeksist@2001:16e0:207:de00:ee7c:8599:cebf:a8f7] has joined #openbsd 17:06 -!- ublx [~ublx@user/ublx] has joined #openbsd 17:09 -!- ivanbu [~weechat@93.176.171.127] has quit [Quit: WeeChat 4.7.1] 17:10 < haddock> IcePic and metavoid thanks now the system is back up again :D 17:10 -!- fedaykin [~rusty@user/fedaykin] has quit [Quit: leaving] 17:14 -!- ivanbu [~weechat@93.176.171.127] has joined #openbsd 17:30 -!- Guest21 [~Guest21@cpe-94-253-219-86.st2.cable.xnet.hr] has quit [Quit: Client closed] 17:33 -!- andinus [~andinus@user/andinus] has quit [Ping timeout: 264 seconds] 17:35 -!- andinus [~andinus@user/andinus] has joined #openbsd 18:01 -!- deltahotel [~deltahote@user/deltahotel] has joined #openbsd 18:04 -!- amnesiac [~amnesiac@95-27-76-172.broadband.corbina.ru] has quit [Remote host closed the connection] 18:05 -!- amnesiac [~amnesiac@95-27-76-172.broadband.corbina.ru] has joined #openbsd 18:06 -!- grim [~grim@user/grim] has quit [Read error: Connection reset by peer] 18:11 -!- asji [~bajiu@user/asji] has joined #openbsd 18:16 -!- fedaykin [~rusty@user/fedaykin] has joined #openbsd 18:17 -!- vados [~vados@128-124-193-92.mobile.vf-ua.net] has joined #openbsd 18:24 -!- mover [~hischild@user/mover] has quit [Ping timeout: 264 seconds] 18:29 -!- typicat [~iam@user/typicat] has quit [Read error: Connection reset by peer] 18:31 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has joined #openbsd 18:47 -!- km [~km@c978F5BC1.dhcp.as2116.net] has joined #openbsd 18:47 -!- jds_ [~jds@user/jds] has joined #openbsd 18:48 -!- jds [~jds@user/jds] has quit [Ping timeout: 260 seconds] 18:51 -!- jds_ is now known as jds 18:52 -!- mover [~hischild@user/mover] has joined #openbsd 18:56 -!- fro [fro@humpty.dance] has joined #openbsd 19:09 -!- cryptexx0 [~cryptexx0@185-177-124-101.hosted-by-worldstream.net] has quit [Ping timeout: 245 seconds] 19:15 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has quit [Ping timeout: 264 seconds] 19:32 -!- willyg [~willyg_co@user/willyg-cos/x-4994202] has joined #openbsd 20:01 -!- seninha [~seninha@user/seninha] has quit [Quit: Leaving] 20:13 -!- mover [~hischild@user/mover] has quit [Ping timeout: 244 seconds] 20:15 -!- shiranaihito_ [~shiranaih@ppp-171-97-85-24.revip8.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 20:19 -!- deltahotel [~deltahote@user/deltahotel] has quit [Quit: deltahotel] 20:23 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has quit [Read error: Connection reset by peer] 20:30 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has joined #openbsd 20:32 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Remote host closed the connection] 20:33 -!- mexen [uid495612@user/mexen] has joined #openbsd 20:34 -!- bsandro [~bsandro@user/bsandro] has quit [Ping timeout: 252 seconds] 20:36 -!- bsandro [~bsandro@user/bsandro] has joined #openbsd 20:42 -!- mexen [uid495612@user/mexen] has quit [] 20:44 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 20:46 -!- vados [~vados@128-124-193-92.mobile.vf-ua.net] has quit [Ping timeout: 264 seconds] 20:49 -!- fro [fro@humpty.dance] has quit [Quit: Cloreen Bacon Skin .gz.] 20:52 -!- yclept [~yclept@user/yclept] has quit [Quit: nyaa~] 20:52 < Posterdati> hi 20:55 < Posterdati> please help, I have a router with OpenBSD on it, I need to redirect the traffic for smtpd... I used the rule: pass in on egress inet proto tcp from any to (egress) port { 25 143 465 587 993 995 } rdr-to $mailserver 20:56 < Posterdati> but lan clients could not connect to the mailserver to send mails... 20:58 -!- absc [~absc@2a04:ee41:8:6055::101] has joined #openbsd 20:58 -!- tvtoon [~The_cUnix@user/tvtoon] has joined #openbsd 20:59 < IcePic> no hairpin nat on pf, give the lan clients info so they connect to the $mailserver directly 21:00 < IcePic> lan clients presumably dont have packets that match "pass in on egress" 21:00 < IcePic> https://www.openbsd.org/faq/pf/rdr.html#reflect 21:02 -!- absc [~absc@2a04:ee41:8:6055::101] has quit [Client Quit] 21:02 -!- absc [~absc@2a04:ee41:8:6055::101] has joined #openbsd 21:03 -!- fro [fro@humpty.dance] has joined #openbsd 21:04 -!- fro [fro@humpty.dance] has quit [Client Quit] 21:05 -!- fro [fro@humpty.dance] has joined #openbsd 21:08 -!- seninha [~seninha@user/seninha] has joined #openbsd 21:18 < asji> About pf rules sequence: in the perspective of prevention, what is the difference between both, if we "block first" and "give access later", or in reverse? 21:20 -!- _wnh_ [~Thunderbi@user/wnh] has joined #openbsd 21:24 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has quit [Quit: Connection closed for inactivity] 21:26 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has joined #openbsd 21:26 < phy1729> "For block and pass, the last matching rule decides what action is taken" Though I usually put quick on everything so I can read it top down. 21:27 -!- hygo [~hygo@189-68-13-186.dsl.telesp.net.br] has quit [Quit: WeeChat 4.7.1] 21:29 -!- terullian [~sonne@ip-095-222-113-247.um34.pools.vodafone-ip.de] has joined #openbsd 21:30 -!- km [~km@c978F5BC1.dhcp.as2116.net] has quit [] 21:31 -!- psydroid2 [~psydroid@user/psydroid] has quit [Quit: KVIrc 5.2.6 Quasar http://www.kvirc.net/] 21:33 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has quit [Quit: leaving] 21:33 -!- ixc [~ixc@user/ixc] has quit [Ping timeout: 252 seconds] 21:36 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has quit [Remote host closed the connection] 21:40 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has joined #openbsd 21:41 -!- vezhlys [~Andrius@cl-78-158-15-148.fastlink.lt] has quit [Remote host closed the connection] 21:42 -!- user71 [~user71@2001:1530:1052:fa52:a3b8:2467:2c78:47b1] has quit [Quit: Do the right thing.] 21:43 -!- sonya [~nightwolf@gateway/tor-sasl/sonya] has quit [Quit: Leaving] 21:45 -!- hygo [~hygo@189-68-13-186.dsl.telesp.net.br] has joined #openbsd 21:50 -!- willyg [~willyg_co@user/willyg-cos/x-4994202] has quit [Quit: willyg] 21:52 -!- finsternis [~X@23.226.237.192] has joined #openbsd 21:54 -!- asji [~bajiu@user/asji] has quit [Ping timeout: 260 seconds] 21:59 -!- znedw454 [~znedw@2400:a846:4040::f61] has quit [Quit: The Lounge - https://thelounge.chat] 22:01 -!- km [~km@c978F5BC1.dhcp.as2116.net] has joined #openbsd 22:02 -!- mover [~hischild@user/mover] has joined #openbsd 22:02 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 265 seconds] 22:04 -!- znedw454 [~znedw@2400:a846:4040::f61] has joined #openbsd 22:11 -!- sonne_ [~vmlinuz@user/sonne] has joined #openbsd 22:12 -!- naoki [~Thunderbi@240f:10b:7440:1:d0bf:3b2d:2203:1] has joined #openbsd 22:13 -!- sonne [~vmlinuz@user/sonne] has quit [Ping timeout: 260 seconds] 22:17 -!- rc [~rc@user/rc] has joined #openbsd 22:19 -!- amnesiac [~amnesiac@95-27-76-172.broadband.corbina.ru] has quit [Quit: Leaving] 22:29 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 22:30 -!- CrashOverride [~strcat@p5485421e.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 22:32 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 260 seconds] 22:34 -!- sjg [~sjg@user/sjg] has joined #openbsd 22:44 -!- johnzlly [~johnzlly@user/johnzlly] has joined #openbsd 22:49 -!- mytec333 [~mytec333@user/mytec333] has quit [Quit: WeeChat 4.1.1] 23:00 -!- jalfresi [~bendavies@224.186.187.81.in-addr.arpa] has joined #openbsd 23:01 -!- aqsd [~aqsd@user/aqsd] has joined #openbsd 23:02 -!- CrimeWave [~Ebox-MTL@user/CrimeWave] has joined #openbsd 23:11 -!- absc [~absc@2a04:ee41:8:6055::101] has quit [Quit: Got to go. irctk 1.1.0-beta] 23:20 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 265 seconds] 23:24 -!- km [~km@c978F5BC1.dhcp.as2116.net] has quit [] 23:28 -!- lavaball [~Melissa@31.204.155.215] has quit [Quit: lavaball] 23:34 -!- librecat [uid714233@id-714233.helmsley.irccloud.com] has quit [Quit: Connection closed for inactivity] 23:45 -!- enrh [~enrh@user/enrh] has quit [Quit: Patching] 23:47 -!- OnASnoopPhone [~OnASnoopP@user/OnASnoopPhone] has quit [Remote host closed the connection] 23:48 -!- grim [~grim@user/grim] has joined #openbsd 23:54 < rnkn> o0x1eef: because it’s cool 23:55 < izder456> https://codeberg.org/Izder456/OpenBSD-Soju wrote up some simple automations for my irc bouncing service 23:56 < rnkn> o0x1eef: OpenBSD’s security is not just pledge and unveil, surely 23:57 -!- padeksist [~padeksist@2001:16e0:207:de00:ee7c:8599:cebf:a8f7] has quit [Quit: WeeChat 4.7.1] 23:59 < ssm_> my rule order from top to bottom is queue match -> pass all (est. state) -> block all -> quick rules for lo0, ipv6, whatever -> match -> pass 23:59 < rnkn> one thing is I’m able to mount /usr and /usr/local as ro 23:59 < ssm_> pass all not actually needed I think --- Log closed Sun Nov 09 00:00:06 2025