-
Notifications
You must be signed in to change notification settings - Fork 15
mkondel/orangehrm
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
# If you end us using this code, please give my repo a star! These are additions to the OrangeHRM souce code. The original README is still kept below, but I wanted to first describe what are the new features. I primarily wanted a simple timesheets solution for my new company. OHRM is open source, and it actually works right out of the box! I used a TurnKey Linux OrangeHRM appliance on an EC2 instance to try it out. Features I want to add: * [Done] Secure hashing of passwords stored in mysql * Email alerts when timesheets are rejected * CSV export of timesheet and report data -- Secure hashing of passwords stored in mysql -- Issue: OHRM uses md5() on the password string from user input, then stores that in the mysql. Same password string from different users would result in the same hash string in the DB. Followed this guide and used their posted code: http://crackstation.net/hashing-security.htm. Actual code here lives under 'symfony/lib/vendor/symfony/lib/vendor/goodhash/pbkdf2.php'. Highlights of this solution: * Passwords are concatenated with the username * Random salt is generated on new user creation and password changes * Key stretching is applied * SHA256 cypher is used instead of MD5 --- Original OHRM README --- OrangeHRM is a comprehensive Human Resource Management (HRM) System that captures all the essential functionalities required for any enterprise. Copyright (C) 2006 OrangeHRM Inc., http://www.orangehrm.com/ OrangeHRM is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. OrangeHRM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The source that you have downloaded(ZIP archive) in which this was enclosed, is of the directory structure as follows; ( since release of OrangeHRM version 0.1 we have altered the directory structure, for further details please refer to the changelog.txt | -dbscript | | | -- (database script for MySQL) | -installer (contains the Web-Installer) | -language (contains the Language Packs) | -lib | | | -- common (commonly used objects and methods) | -- confs (Configuration files) | -- controllers (Primary & Secondary Controllers) | CentralController.php (Main Controller) | EmpViewController.php (Secondary Controller for PIM Module) | MTViewController.php (Secondary Controller for Maintenance Module) | RepViewController.php (Secondary Controller for Reports Module) | ViewController.php (Secondary Controller for Admin Module) | | -- dao (Data Access Objects) | -- exception (Exception Handlers for Database Exceptions) | -- extractor (Data Extractors) | | | -- eimadmin (Data Extractors for Admin Module) | -- hrfunct (Data Extractors for PIM Module) | -- maintenance (Data Extractors for Maintenance Module) | -- report (Data Extractors for Report Module) | | -- logs (Log & LogFileWriter) | -- Models (Models) | | | -- eimadmin (Admin Module Objects) | -- hrfunct (PIM Module Objects) | -- maintenance (Application Maintenance Objects) | -- report (Report Module Objects) | -license | | | -- (The GPL license) | -scripts | | | -- (Javascript files, style sheets required by UI) | -templates | | | -- eimadmin (Admin Module UI templates) | -- hrfunct (PIM Module UI templates) | -- maintenance (Maintenance Module UI templates) | -- report (Report Module UI templates) | -themes | -- (pictures + style sheets) For further information on how to use the product please refer the Free User Guide available on http://orangehrm.com/ In case Installation difficulties there is a seperate Installation Guides also available from the same source. For Apache/PHP/MySQL Installation issues please refer to the Environment Setup Guide For OrangeHRM Installation issues please refer to the OrangeHRM Installation Guide
About
Feature additions to the OrangeHRM code
Resources
Stars
Watchers
Forks
Packages 0
No packages published