View previous topic :: View next topic |
Author |
Message |
k_v_mahesh Beginner
Joined: 03 Dec 2008 Posts: 5 Topics: 5
|
Posted: Fri May 13, 2011 3:55 am Post subject: Masking Sensitive data in mainframe |
|
|
Hi,
We have an requirement where the client wants to mask the sensitive data in mainframe to the team sitting in remote site.
Need input on how to handle CICS screen data masking without major changes to code base.
Are there products available that sits between CICS and database ?
Please advice.
Regards
Mags |
|
Back to top |
|
 |
warp5 Intermediate

Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Fri May 13, 2011 8:26 am Post subject: |
|
|
What EXACTLY do you want to do, what do you mean when you say mask? We can only guess what you mean if you are not explicit. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Fri May 13, 2011 10:58 am Post subject: |
|
|
k_v_mahesh,
The simple way is to code an identical screen masking all the sensitive data and send that screen based on the userid
Kolusu |
|
Back to top |
|
 |
Dibakar Advanced

Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Sat May 14, 2011 1:53 pm Post subject: |
|
|
extending kolusu's suggestion I would prefer masking the fields by changing attributes based on userid rather than creating another set of screens _________________ Regards,
Diba |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Sun May 15, 2011 9:24 pm Post subject: |
|
|
Changing attributes is not really a good idea because depending on the emulator that is being used, the end user might simply have to use cut (of the screen) and paste (to a file) to see the data. Some emulators have that bug.
And most (all?) emulators have a trace facility that lets you capture the data coming over the wire. If all you change is the attribute byte, the data still comes over the wire and is extremely easy (read trivial) to see. _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
 |
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Sun May 15, 2011 11:19 pm Post subject: |
|
|
the db2 setup would not be fun, but you may be better off,
having another db with anonymiziert data for certain users and force them into a different plan
in order to point to a database with different qualifier.
you would not have to change any code. _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
 |
|
|