19
Fri, Apr
5 New Articles

Application-only Access: Implementing the Strategy

IBM i (OS/400, i5/OS)
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

A PC attached to your AS/400 sits on a desk, seemingly inert, looking innocent. However, when you stop to think about what someone using that PC could be capable of, you might start to see the PC as a wolf in sheep's clothing. You may see that PC as the representation of a gaping and ragged hole in the security of the data on your AS/400.

In a previous article, I described that the commonly used methods of securing data are no longer robust enough to protect the data on your AS/400 in a network environment. Tools like ODBC, FTP, and Client Access (also known as PC Support) provide many ways to get at your data. It is difficult, if not impossible, to control access from PCs by limiting options on a menu. A new methodology is needed, and that's where this article comes in.

While working with clients to strengthen their systems' security, I recognized the problem and developed a new strategy called application-only access. Application-only uses the AS/400 security features of security level 30 and above to restrict access to production data outside of an application. This article will give the details of application-only access and tell you about some of the problems you may encounter along the way.

Application-only access is a security strategy that does not give users access to production data except when they use production applications. The application users should not have a group profile that would give them access to the production data.

This prevents modification and disclosure of the data outside of the production applications, but the users do need to access the data within the production applications. Users are given an initial program that adopts the needed access for the production libraries. The adopted authority of the entry program allows users access from within the application where the operations a user can perform are controlled. However, the users have no access outside of the application, such as with PC file transfer, remote commands, or FTP.

Applications sometimes give the interactive users menu options that cause the submission of batch jobs. The submitted batch programs also need to adopt authority. Only the entry programs for batch processes need to adopt authority. However, finding the starting point for all batch jobs may not be a simple task.

When it is not possible to determine all of the entry programs for batch processes, the solution is to change all of the production system's programs to adopt authority. Changing all programs to adopt authority allows the submitted jobs to adopt the needed access to production data. However, when possible, I recommend that only the batch entry programs adopt authority.

A security officer can use the Change Program (CHGPGM) command to change programs that are observable to adopt authority without recompilation of the programs. Programs with their observability removed must be recompiled. If you use vendor-supplied programs that have observability removed, you won't be able to implement this strategy without your software supplier's cooperation.

My first attempt to implement application-only access was to use library security. The data files and programs in the library had *PUBLIC access, but the production libraries in which the data and programs resided had a public access of *EXCLUDE. To access the data, the programs would adopt the library owner's authority to the production libraries. Library security strategy is easy to implement, which is why I chose this alternative first.

Library security works well for interactive users. When interactive users enter the application, an entry program adopts the access of the production data library owner and adds the production libraries to the library list. This allows the users to access the production data libraries.

However, when an interactive user selects a menu option that submits a batch job, the submitted batch jobs do not inherit the adopted authority from the interactive job. The submitted batch job fails to start because the batch job is not authorized to the production libraries.

The production libraries are on the library list for the submitted job because the default for the Submit Job (SBMJOB) command is to use the library list from the interactive job to start the batch job. However, the batch job has no mechanism to adopt the authority to these production libraries. Because the batch jobs fail, some strategy other than library security is required to protect production data.

If interactive users of applications do not submit jobs, and all batch jobs are started by the system operators, the problem with batch jobs not starting can be eliminated. Library security alone would be sufficient. The initial library list for the batch jobs submitted by the operators would not have the production libraries. Then, an entry program could adopt the needed access to add production libraries to the library list. Even in this scenario, there is a possibility that future applications will allow users to submit production batch jobs, so I recommend a more flexible strategy than library security.

The problem with limiting access to production libraries was that the batch jobs failed before they were allowed to adopt access. If the *PUBLIC access to the production libraries is *USE, the batch jobs will start. After the batch jobs start, entry programs in the batch job can adopt the needed authority for the files.

Since *PUBLIC has *USE access to the libraries, there needs to be some way to prevent the user from accessing the production data files. Preventing disclosure and modification of production data requires that the *PUBLIC access to all production data files be *EXCLUDE.

You will also want to restrict which users can run the application programs so the programs will also have *PUBLIC authority of *EXCLUDE. So that users are allowed to run the programs, the group profile GRPAPP01 is granted *USE access to the programs. (Only the entry program needs to be authorized to GRPAPP01, as the other programs can be accessed through adopted authority.)

Changing the authority of all production objects sounds like a major project, but it is not difficult. The Grant Object Authority (GRTOBJAUT) command has a generic option that can be used to change the authority of all objects in a library in one operation.

I recommend using authorization lists to protect the production data files (for more information on authorization lists, see "Authorization Lists to the Rescue," MC, May 1993). Authorization lists have the advantage of allowing changes to security even while the files are open. The only challenge will be finding a time when the files in the library are not in use to first add the authorization lists.

The implementation of application-only access is shown in 1. The user profile PRDOWN01 has no password and is the owner of all production programs, files, and libraries. The entry programs will adopt the access of PRDOWN01 to allow users access to production objects.

The implementation of application-only access is shown in Figure 1. The user profile PRDOWN01 has no password and is the owner of all production programs, files, and libraries. The entry programs will adopt the access of PRDOWN01 to allow users access to production objects.

When a user in GRPAPP01 selects menu option 1, an entry program from the PGMLIB is called. This program adopts the ownership of PRDOWN01, which gives the user access to the production data. The entry program is a shell program that calls the actual application function. In the case of purchased software, you may not be able to control the program that is submitted, so every program in the application is changed to adopt the ownership of the production owner (PRDOWN01).

Frequently, installations supplement the reports available from production applications by using Query, ODBC, or some report generation tools. Since users have no access to the data, there needs to be some way for them to produce these reports. One alternative is to give the users *USE access to the data. This would allow the users to copy production data, though. If the copying of production data must be controlled, the users cannot be given *USE access to the data.

The users still need to be able to run queries to produce reports. This is accomplished by adopting the query user profile (QRYUSR01) while the users are running Query.

QRYUSR01 has no password and is the owner of the entry program and query definitions. When the user selects menu option 2, as shown in 1, the entry program in QRYLIB is called. This adopts the access of QRYUSR01. The access of QRYUSR01 to production files is *USE, which allows read-only access. This prevents the Query user from modifying production data.

QRYUSR01 has no password and is the owner of the entry program and query definitions. When the user selects menu option 2, as shown in Figure 1, the entry program in QRYLIB is called. This adopts the access of QRYUSR01. The access of QRYUSR01 to production files is *USE, which allows read-only access. This prevents the Query user from modifying production data.

The libraries PGMLIB and DATALIB are given *PUBLIC access of *USE so submitted jobs will start. Unless the users are running menu option 1 or 2, they have no access to the data files or programs.

The authorities granted to QRYUSR01 can be either private authorities or access granted using an authorization list. I recommend using V3R1's new support for Primary Group Profile (PGP) authority. Use of PGP authority for QRYUSR01 will improve performance over the private authorities or authorization lists. If you have not installed V3R1, use private authorities. ("V3R1 Security Enhancements," MC, January 1995 described the details of PGP authority. This article also had a sample program that converts the private authorities for a user such as QRYUSR01 into PGP authority.)

The application-only access strategy uses the following techniques:

o Objects are owned by a production owner user profile.

o The production owner user profile is not a group profile for users.

o The "entry" programs into production applications will adopt the production owner user profile. This gives application users the access needed to perform their daily tasks only while running the production application.

o Users are limited to menus and prevented from command line access. The user profile specifies LMTCPB(*YES) so users cannot enter commands. Application-only access does not allow users to access data outside the application. Users are prevented from using the command line as extra protection in case the user gets to a display that might allow users to access the command line. It also prevents the user from entering a command that isn't dependent on adopted authority, such as PWRDWNSYS. (Note that PWRDWNSYS does require *JOBCTL authority.)

o Users are assigned a group profile that will authorize them to use the production application programs.

o Reports using production data can be produced by Query by giving a QRYUSR user profile *USE access to production data files.

Using this technique, you'll be able to protect your AS/400's data and keep your site more secure from PCs and other systems in your network. So you don't need to think of the humble little PC as the big bad wolf anymore. I highly recommend you use this technique at your site.

Wayne O. Evans is an AS/400 security consultant and a frequent speaker on security topics. During his 27 years with IBM Corporation, he was involved with AS/400 security design issues. The application-only access method was developed after he recognized that the implementation of security at several of his clients' installations allowed users excessive access to production data. He can be reached by E-mail at This email address is being protected from spambots. You need JavaScript enabled to view it..

Application-only Access: Implementing the Strategy

Figure 1: Application-only Access Overview


BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: