I've just been asked how secure is data moving between Windows and Unix. For example, a data step reads a dataset stired on the PC and the destination is a permanent dataset on the Unix box. Would it be possible to intercept the data as it moves between the two platforms?
e.g.
/* my Unix library */
libname myunix '/unixbox/projects/live_data' server=xyzsrv1;
/* Read some pc data and store it in Unixland */
data myunix.cars;
set sashelp.cars;
where make="BMW";
run;
How secure is the data and if the answer is not very, what can we do to make it more so?
It depends on your setup. When using SAS Studio (which is a webapp), you depend on the security of the HTML connection. If you use https, you're secure.
With Enterprise Guide, you depend on the definition of the workspace server connection. The encryption level may be set to none, credentials only, or everything.
For SAS/CONNECT, follow @LinusH's advice.
Thanks for that - it's not quite my setup but it was enough to prompt me to bounce the query to someone locally who ought to know the answer!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.