7 projects tagged "BSD"
allowHTML is a PHP class that can be used to filter insecure HTML by following OWASP AntiSamy rules. It can parse HTML documents using DOM document objects and then remove unsafe tags, attributes, and CSS parameters. It uses a configurable whitelist to determine which tags, attributes, and CSS style parameters are allowed. The class may also apply filtering rules defined in a separate AntiSamy XML rules file.
EMEXIS WEBMAIL is a Webmail application based on SquirrelMail. SquirrelMail client is a complete Webmail system, but due to the concern of making it compatible with many browsers and systems, its interface has become a little impaired. EMEXIS WEBMAIL was developed with the intention of solving this deficiency. It comes with all functionality of the original Squirelmail, but with an interface that is much more friendly for the user. It mostly uses the mechanisms for handling messages from Squirrelmail.
Contao is a content management system (CMS) for people who want a professional Internet presence that is easy to maintain. The state-of-the-art structure of the system offers a high security standard and allows you to develop search engine friendly Websites that are also accessible for people with disabilities. Furthermore, the system can be expanded flexibly and inexpensively. It features easy management of user rights, a Live Update Service, a modern CSS framework, and many integrated modules (news, calendar, forms, etc.).
RayHttp is a PHP class that provides an HTTP client for sending requests to Web servers. It can configure and send HTTP GET and POST requests using the Curl extension or PHP file access functions. When using the Curl extension, all Curl options may be set changing a class array variable.
Simple Login Class is a PHP class that can be used to prevent unauthorized access of Web pages. A simple user management system can be implemented with this class very quickly. It does not use databases or database queries to store the user details. Instead of a database, it uses a text file to store the details. An access encoding technique (Base64), two hashing techniques (SHA1 and MD5), an a built-in PHP function (StrRev) are used here to store passwords more securely in the text file. Simple Login Class can be used in any PHP page just by embedding a snippet at the top of a the page to be protected. Any number of user logins can be stored more securely in a single file. The sessions are handled more safely in this system than some other login systems. The user registration system applied here is simplified. In certain cases, no configuration is needed to use this class.