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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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