[09:32:22] <catphish> quick question - i just accidentally ran a mondodb instance with no firewall or authentication for a couple of days, people have logged into it, is there any possibility of them having performed any remote code execution meaning i need to wipe the server, or will it be sufficient to delete the database data?
[16:59:49] <catphish> i reinstalled the OS just in case :)
[17:58:24] <dreamreal> how do I match an underscore in a field with $regex?
[17:59:19] <dreamreal> I need to match "u_" at the beginning of a field, but it's matching "u_1" and "user_reader" which is... no
[17:59:49] <dreamreal> db.things.find({ name: { $regex: /^u_*/, $options: 'm' } }) <-- is the query
[18:02:24] <dreamreal> Ah! Got it - that * was throwing things