@dcc yeah it stopped you from dereferencing null, and told you where it was doing it from, quite helpful actually. in C it would've just told you "Segmentation Fault" and left you to eat shit
@nyanide@dcc It leaks memory, something _some_ Rust programmers refuse to acknowledge that Rust can do.
To be more precise it takes ownership of the argument and forgets it without running it's destructor.
By it self it's basically harmless as you have to call it manually, but it could possibly be leveraged to force a specific heap order that you can then exploit if you find a way to break out of the Rust bounds checking. The chance of this getting exploited in the future is near zero.
@mr64bit@dcc@nyanide It's been a long time since I saw someone like this. They seemingly mostly went away after the rewrite in Rust meme died out. Recently it's mostly people that actually write Rust trying to force Rust onto other projects, because muh memory safety and other stuff.
The last time I had any kind of discussion with someone that could be described as a Rust evangelist was during the Lina Linux drm threads. It was about why Rust shouldn't be used in Linux due to its non-existent ABI and other related stuff. They deleted their replies a few days after for whatever reason.
But I still like to shitpost about Rust every once in a while, because somehow barely funny posts make them react every time. That includes today's posts.
In the end, I don't have a problem when a project is written in it, but I still stand by my opinion that it shouldn't be used for low-level programming. It's just not a language for it. There's no stable ABI, interacting with Rust code outside of Rust is painful, static-linking everything is stupid and cargo is borderline garbage.
@phnt@dcc@nyanide I'm convinced there's basically no overlap between the rust evangelists everyone complains about and people who actually write rust. Then again, I never see the evangelists either, seems be a strawman for the most part.
@ins0mniak@dcc@nyanide@mr64bit You probably don't use Arch, or know about it's "drama", but literally the only reason why paru, the AUR helper, was created, is because the creator of yay, written in Golang, and a co-maintainer of it had a dispute over why it should be rewritten in Rust.
To this day they are mostly the same minus the language used.
@ins0mniak@dcc@phnt@nyanide@mr64bit I have no fucking clue, I think it's for street cred "look at my flashy h4cker tool!". Like a few years ago I was looking into stuff like GSM and SMS spoofing and found a bunch of github repos belonging to kids all showing off their "SMS spoofing" scripts, but all of them were just the same bash script that used a free texting API but with different names/colour schemes.
I haven't used this one much but it is pretty speedy. Although that's not always a good thing. You don't want to be just sling packets at a server like that if you want to be on the sly
@ins0mniak@dcc@nyanide@sysrq@mr64bit I had some fun with a Samsung smart fridge open WiFi AP in December. Got bored around the third time it showed up presumably after the real owners factory reset it in some way. I guess it prevented them from registering it with the app and it started beeping after I connected to it.
@ins0mniak@dcc@phnt@nyanide@sysrq I've got a bunch of wifi cameras from a coworker that I want to use by gutting the chinese crapware they come with and writing my own. getting into them initially was hilariously trivial, root ftp with no creds, then I RE'd a binary to find command injection to get a shell.
I got that no starch book a while ago so I've been playing around with it a lot. The best are those shitty Chinese security cameras. wow! those things.
I keep a kit in my bag. just a pi, with some dongles and my flipper.
@ins0mniak@dcc@nyanide@sysrq@mr64bit IoT is a goldmine of security vulns. It almost seems impossible to someone that hasn't dabbled in it. Like UART root shells, hard-coded passwords across multiple products, weak custom encryption and raw HTTP traffic are basically the norm to this day. Especially on products from Asia.
To this day basically no sysadmin updates firmware for most of the embedded devices on network. The Hollywood camera stuff presented at Blackhat a decade ago still mostly holds true. It's ridiculous.
Resturants do that crap all the time. You know like, they offer free wifi, which is on the same network as their pos systems, and of course the cameras.
Hell they love using super old micros systems because oracle charged upwards of 10k for them. I've seen them running on windows CE.
ill just walk around and use my phone to shell into my pi and just poke around the whole town.
@mr64bit@dcc@nyanide By low-level I mean things like kernels, bootloaders, base system libraries and such. Systems programming is probably a better word for that.
It's fine for writing userspace applications, not so much for libraries that other non-Rust programs would like to use (the equivalent of glibc and similar). That makes it essentially almost useless everywhere but at the end of the whole software chain. Nothing but Rust code can interact with it without breaking easily.
@phnt@dcc@nyanide ah, guess I'd forgotten about the 'rewrite it in rust' crazyness. I've never had problems doing low-level stuff with it, but maybe it helps that a lot of my use cases are pretty unorthodox. I agree about cargo, definitely my biggest complaint. rust may be a systems programming language, but cargo is by no means systems programming build system.
@dcc@nyanide@sysrq@ins0mniak@mr64bit Yeah, that's very likely a bug. It threw it's hands up before dereferencing NULL. That it compiled doesn't mean it's _correct_.
Just by looking at the code very quickly, I think it improperly handles the case where it failed to get the resolve the sigs. It initializes it to None, tries to match some sig with a regex in a for loop and when every single one fails, it still is None. Which would later cause the crash when it tries to unwrap NULL.