Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

    In other languages I've always had to write my own security routines. It would take longer but I would have a thorough understanding of what was happening "behind the scenes".

    I've written a couple of apps with A5 but have not used the Security Framework.

    - Is it robust enough to use on a commercial quality app?
    - Does it use DBF or SQL or a combination of both?
    - Is the login data encrypted?
    - How hackproof is it?
    - I've found some videos on security, but can't seem to locate one that starts you out at DAY ONE?

    Would like to have some "learned" opinions on this important subject. Thanks!

    #2
    Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

    Many of us had to roll our own before Alpha came out with its Security Framework. Using the Framework is definitely the way to go.

    Originally posted by Fulltimer View Post
    - Is it robust enough to use on a commercial quality app? Yes
    - Does it use DBF or SQL or a combination of both? Defaults to DBF, but you'll find documentation on using SQL.
    - Is the login data encrypted? Yes.
    - How hackproof is it? Very.
    - I've found some videos on security, but can't seem to locate one that starts you out at DAY ONE? The Total Training videos cover this if you have 'em.
    -Steve
    sigpic

    Comment


      #3
      Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

      Some facts about the security system to add the what Steve said
      • If the security framework is on, every request goes through the security system, even css files, JavaScript files, html pages, Ajax callbacks, images, etc.
      • The security is applied in the server architecture and can not be bypassed.
      • The framework is based on deny unless specifically allowed.
      • There is no measurable speed impact from the security check
      • The security authorization data set after login can not be accessed or edited by anyone other than the internal system.
      • If the security login expiration is set to "session" (the suggested configuration) there are no cookies or other data stored or passed to the client computer.
      • Password encryption is on by default and uses a proprietary process.
      • There are a number of cross checks in security code to prevent a user from modifying data to circumvent the security.
      • The data can be stored in dbf (default) or any SQL database supported. If your main data in in SQL, we strongly recommend moving the security to SQL
      • Security using SQL data uses active Link tables. However, all data access is a direct connection to the SQL database and the Active link tables are just used to define the linkage.
      • The framework has been around for a long time, and to our knowledge no one has ever been able to "hack" a properly configured system.
      • The security has been used on systems that are required to meet very strict legal requirements, such as systems that must meet HIPAA regulations. Independent consultants have accepted the system as meeting the requirements.

      The only problems we have seen center around incorrect configurations. By default, security is applied at the component level. By placing security on individual components as well as pages, security is enforced on any callback as well as original requests. While this can be challenging to configure in a large complex application, it is very secure.

      Here are a couple links in the Wiki that explain the system

      http://wiki.alphasoftware.com/Web+Se...+Framework+V10
      http://wiki.alphasoftware.com/a5/Usi...20Security.pdf
      http://wiki.alphasoftware.com/How+V1...Security+Works

      Comment


        #4
        Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

        The security has been used on systems that are required to meet very strict legal requirements, such as systems that must meet HIPAA regulations
        Jerry, against knowing better of course, this is a tricky statement. Many might think, that if they have an app with the AS Security Framework enabled, this app is HIPAA compliant just because of that.
        Can you elaborate a bit more on this.

        What is the practical difference for the Alpha Developer with regards to application security between "being fully HIPAA compliant", "meeting HIPAA regulations", or "consultants having accepted the system as meeting the requirements"?

        Comment


          #5
          Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

          Originally posted by mronck View Post
          Jerry, against knowing better of course, this is a tricky statement. Many might think, that if they have an app with the AS Security Framework enabled, this app is HIPAA compliant just because of that.
          Can you elaborate a bit more on this.

          What is the practical difference for the Alpha Developer with regards to application security between "being fully HIPAA compliant", "meeting HIPAA regulations", or "consultants having accepted the system as meeting the requirements"?
          I too would like a more definitive statement regarding HIPAA and was my concern when starting this thread in the first place.

          Tom W.

          Comment


            #6
            Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

            With a bit of help from your favorite search engine, you can find a slew of definitions, requirements, specifications etc. about what make this stuff HIPAA compliant. It also becomes immediately clear that the definition of compliance is a bit fuzzy, open to interpretation, and ultimately subject to the review of the compliance reviewer. There are also a few standard basics that can be found in almost any set of specs.

            My advice has long been that if you're going to build an app with this requirement, see if you can find or consult with whoever is going to be doing the reviewing. A hospital, for instance, will probably have someone in charge of compliance, and I'd have a sit-down with them before going very far.

            Now, all that said, you're right. Simply applying the Security Framework doesn't make an A5 web/database secure in the same way that sitting in a garage doesn't mean you're a car. But, Alpha's Security Framework is far and away better than rolling your own to create the security we need (which was the original question here; there was no mention of HIPAA in the original question) -- whether it's for HIPAA or something else.
            -Steve
            sigpic

            Comment


              #7
              Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

              Yes Steve, your points are valid. BUT. The term "far and away better" is very subjective and most certification programs are about objective specifications. Many applications nowadays need to comply to HIPAA or SAS70 requirements hence it is not a strange question to shed some more light on how the standard Alpha tooling is doing in that light. I doubt that they have ever had their security systems built in with Alpha certified by an audit board. In many situations, the reviewer would simply demand the manufacturer to be certified as well, he really is not going to do extensive research to the products that your system is build in/with. If Alpha would do so and made the certification open for the developers that would make things much easier.

              Comment


                #8
                Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

                Originally posted by mronck View Post
                Jerry, against knowing better of course, this is a tricky statement. Many might think, that if they have an app with the AS Security Framework enabled, this app is HIPAA compliant just because of that.
                Can you elaborate a bit more on this.

                What is the practical difference for the Alpha Developer with regards to application security between "being fully HIPAA compliant", "meeting HIPAA regulations", or "consultants having accepted the system as meeting the requirements"?
                Good questions. If you are working in any system that falls under the HIPAA regulations, consult a HIPAA expert, perhaps more than one. The regulations are open to interpretation and often different consultants will give different answers. The regulations are much more complex that just access control and include areas such as data encryption and access tracking.

                Comment


                  #9
                  Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

                  Use Alpha's security for what it was meant for - controlling access to specific parts / features of an application. It will take you very far, with just minimal effort. Just plan a good naming convention for your Group names. Alpha lets you apply security to everything imaginable:
                  - opening components, pages, etc.
                  - Insert, change, delete record operations from components
                  - Visability of controls
                  - Enabling of controls

                  If you need security access at the database row level then I would just plan to implement that through your application. But if the requirements is that the backend must handle it then things are probably going to be complicated.

                  -Rich Fulham

                  Comment


                    #10
                    Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

                    A warning though about encryption: Alpha specifically states in its documentation that the encryption is ONLY suited for testing, and that applying A5 encrypting in a production environment is strongly discouraged. You might need to look for a commercial grade encryption tool to do that.

                    Comment


                      #11
                      Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

                      Originally posted by mronck View Post
                      A warning though about encryption: Alpha specifically states in its documentation that the encryption is ONLY suited for testing, and that applying A5 encrypting in a production environment is strongly discouraged. You might need to look for a commercial grade encryption tool to do that.
                      I believe you are referring to encryption using dbf tables. Dbf would not be recommended for any secure system and most production grade systems should be using some type of SQL database. There are many commercial products to encrypt various SQL systems, from basic and cheap to very secure and expensive.

                      The systems I have worked on that fall under HIPPA regulations all use MS SQL Server Enterprise with TDE. A very expensive, but very secure system that is easy to implement and has virtually no speed impact.

                      Comment


                        #12
                        Re: Would like opinions on A5's "Security Framework"! Use it, or "Role Your Own"!

                        Originally posted by JerryBrightbill View Post
                        I believe you are referring to encryption using dbf tables. Dbf would not be recommended for any secure system and most production grade systems should be using some type of SQL database. There are many commercial products to encrypt various SQL systems, from basic and cheap to very secure and expensive.

                        The systems I have worked on that fall under HIPPA regulations all use MS SQL Server Enterprise with TDE. A very expensive, but very secure system that is easy to implement and has virtually no speed impact.
                        Not quite Jerry....
                        I am talking about the text in the WikiPedia under the section "Encryption Algorithms (Ciphers)" that you can find here.

                        I quote:
                        ....Alpha Five and the Alpha Application Server use OpenSSL and its redistributable DLLs in order to provide SSL and other encryption functionality. While Alpha Software distributes a set of DLLs with a limited set of encryption algorithms, Alpha Software makes no claims regarding their usability and takes no responsibility and accepts no liability for their use in customer applications. These algorithms are made available for development and testing purposes only.....

                        Comment

                        Working...
                        X