edit: I guess I assumed something I shouldn't have
Oxy – A Security Focused Remote Access Tool
11–20 of 88 posts
Re: Oxy – A Security Focused Remote Access Tool
#12This is interesting, but shows some of the problems with the word "secure" The app. promises to be more secure than OpenSSH and provides a number of reasons why it thinks it will be. However the site is entirely anonymous, so you have no idea who wrote this tool and what their affiliations or background are. So either you audit the code to get some assurance, or you trust the author(s) without any evidence. Also the…
Re: Oxy – A Security Focused Remote Access Tool
#13>Memory Safe + Fast $ grep 'unsafe {' -R ~/oxy --include=*.rs | wc -l 13 Not bad.
It's a good start, but the problems with SSH lately have largely been things like timing attacks that even the smartest compiler won't catch. In fact a smart optimizing compiler can make that even harder to avoid since it is more difficult to know exactly what machine code it will produce.
They will definitely lower the performance, but likely a bit slower and more secure connection process is preferable to a less secure one.
Re: Oxy – A Security Focused Remote Access Tool
#14>Memory Safe + Fast $ grep 'unsafe {' -R ~/oxy --include=*.rs | wc -l 13 Not bad.
It's a good start, but the problems with SSH lately have largely been things like timing attacks that even the smartest compiler won't catch. In fact a smart optimizing compiler can make that even harder to avoid since it is more difficult to know exactly what machine code it will produce.
Re: Oxy – A Security Focused Remote Access Tool
#15Re: Oxy – A Security Focused Remote Access Tool
#16Earlier quoted context omitted.
It's a good start, but the problems with SSH lately have largely been things like timing attacks that even the smartest compiler won't catch. In fact a smart optimizing compiler can make that even harder to avoid since it is more difficult to know exactly what machine code it will produce.
I wonder how efficient a counter-measure would be adding small random delays in every part of code, possibly injected at MIR or LLVM level. It might drown any timing information in random noise. They will definitely lower the performance, but likely a bit slower and more secure connection process is preferable to a less secure one.
Re: Oxy – A Security Focused Remote Access Tool
#17>Memory Safe + Fast $ grep 'unsafe {' -R ~/oxy --include=*.rs | wc -l 13 Not bad.
https://github.com/oxy-secure/oxy/blob/571ef12199f8b0f3eca55...
Re: Oxy – A Security Focused Remote Access Tool
#18Re: Oxy – A Security Focused Remote Access Tool
#19Man if this guy copied Mosh's feature-set it would be really awesome. edit: I guess I assumed something I shouldn't have
Re: Oxy – A Security Focused Remote Access Tool
#20And that's a bad idea why?