BookmarkSubscribeRSS Feed
wilburii
Calcite | Level 5

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?

 

 

3 REPLIES 3
LinusH
Tourmaline | Level 20
Read the security doc applicable to SAS/CONNECT or SAS/SHARE.
Data never sleeps
Kurt_Bremser
Super User

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.

wilburii
Calcite | Level 5

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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 633 views
  • 2 likes
  • 3 in conversation