Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Added -fno-delete-null-pointer-checks | David Sommerseth | 2009-07-21 | 1 | -0/+1 | |
| | | | | | | | This optimisation can be dangerous sometimes, where the C compiler can remove some NULL pointer checks if it believes a pointer is assigned before this check. Sometimes, this is very wrong and can cause an exploit. | |||||
* | Added utils/eurephia_init binary to .gitignore | David Sommerseth | 2009-05-11 | 1 | -0/+1 | |
| | ||||||
* | attempts listing will now use the 'registered' date if 'last_attempt' is empty | David Sommerseth | 2009-05-10 | 1 | -3/+36 | |
| | ||||||
* | Added simple help screen for usercerts --list | David Sommerseth | 2009-05-10 | 1 | -0/+10 | |
| | ||||||
* | Updated TODOv0.9.4_beta | David Sommerseth | 2009-05-09 | 1 | -1/+1 | |
| | ||||||
* | eurephiadm: Implemented the blacklist command for blacklist management | David Sommerseth | 2009-05-09 | 5 | -0/+569 | |
| | ||||||
* | sqlite3 driver: Implemented eDBadminBlacklist(...) function for blacklist ↵ | David Sommerseth | 2009-05-09 | 6 | -0/+229 | |
| | | | | management | |||||
* | Fixed some errors in attempts detailed listing | David Sommerseth | 2009-05-09 | 1 | -3/+3 | |
| | | | | Didn't use the last_accessed node, but used the registered node twice. | |||||
* | Fixed some errors in blacklist field mapping | David Sommerseth | 2009-05-09 | 1 | -1/+1 | |
| | ||||||
* | Corrected some minor details | David Sommerseth | 2009-05-09 | 1 | -4/+3 | |
| | ||||||
* | Completed the attempts command in eurephiadm | David Sommerseth | 2009-05-07 | 3 | -18/+142 | |
| | | | | Added functionality for resetting and deleting attempt records | |||||
* | Fixed wrong database field name mapping for SQLite3 | David Sommerseth | 2009-05-07 | 1 | -1/+1 | |
| | ||||||
* | Added detailed listing of login attempts | David Sommerseth | 2009-05-06 | 1 | -0/+130 | |
| | ||||||
* | Started implementing attempts command in eurephiadm | David Sommerseth | 2009-05-06 | 5 | -0/+373 | |
| | | | | Only simple listing without details is implemented so far. | |||||
* | Corrected the default filter setup and added the 'digest' field | David Sommerseth | 2009-05-06 | 1 | -6/+7 | |
| | ||||||
* | Renamed fieldmapping for 'attempts' to 'attemptslog' | David Sommerseth | 2009-05-06 | 4 | -10/+18 | |
| | | | | | | Also made the result XML from eDBadminAttemptsLog(...) more efficient by not adding the username/certificate/ipaddress group tags if the information is not present. | |||||
* | Rewritten CMake rules to build common/ as static library | David Sommerseth | 2009-04-11 | 8 | -46/+36 | |
| | | | | | | This static library is later on linked in. This is to avoid recompiling the same source files several times during a complete eurephia compilation. | |||||
* | Rewritten common/passwd.c and utils/benchmark.c | David Sommerseth | 2009-04-10 | 2 | -43/+49 | |
| | | | | Make them work without the need of defining BENCHMARK during compilation | |||||
* | sqlite3 driver: Implemented listing of openvpn_attempts table | David Sommerseth | 2009-04-09 | 6 | -6/+186 | |
| | ||||||
* | Updated TODO | David Sommerseth | 2009-04-08 | 1 | -2/+4 | |
| | ||||||
* | Improved lastlog filtering by using less-than and greater-that | David Sommerseth | 2009-04-05 | 1 | -3/+5 | |
| | ||||||
* | Added improved filtering support to SQLite3 driver | David Sommerseth | 2009-04-05 | 1 | -1/+17 | |
| | | | | Follow up of commit ff744b48fdc0665b620339d51424892def8d8071 | |||||
* | Added eDBfieldMapping field for filter types | David Sommerseth | 2009-04-05 | 3 | -114/+140 | |
| | | | | | | | | | | | | | | | | | | | This field will be used to determine what kind of filter logic to add when building SQL queries. The filter type is set in the fieldMapping field nodes as an attribute named 'filter'. Their values and the corresponding SQL conditions are: filter | SQL condition -----------------------+--------------- equals | = not-equals | != / NOT(...) less-than | < less-than-equals | <= greater-than | > greater-than-equals | >= -----------------------+--------------- The default value for each field is set in the eurephiadb_mapping.h | |||||
* | Fixed wrong user access on fwprofiles in eurephia_init | David Sommerseth | 2009-04-05 | 1 | -1/+1 | |
| | | | | Forgot to update eurephia_init after commit 5b6c3ba53f33dfe75ddfbb0cf62996f9b3d8de4c | |||||
* | Updated TODO | David Sommerseth | 2009-04-03 | 1 | -1/+1 | |
| | ||||||
* | Added support for setting firewall profiles in eurephiadm/usercerts | David Sommerseth | 2009-04-03 | 1 | -9/+35 | |
| | ||||||
* | When deleting fwprofiles, delete also records from openvpn_usercerts | David Sommerseth | 2009-04-03 | 1 | -0/+30 | |
| | ||||||
* | Added missing XSLT files for install rules | David Sommerseth | 2009-04-02 | 1 | -0/+4 | |
| | ||||||
* | Renamed fwadmin command to fwprofiles, which is more correct | David Sommerseth | 2009-04-02 | 3 | -32/+31 | |
| | ||||||
* | Completed eurephiadm/fwadmin with add/delete modes | David Sommerseth | 2009-04-02 | 1 | -2/+112 | |
| | ||||||
* | Completed eDBadminFirewallProfiles(...) with add and delete in db driver | David Sommerseth | 2009-04-02 | 1 | -9/+60 | |
| | ||||||
* | Added eDBmappingFieldsPresent(...) which returns used fields in a fieldMap | David Sommerseth | 2009-04-02 | 2 | -0/+15 | |
| | ||||||
* | Make eurephiaXML_getRoot(...) return root element when no nodeset is given | David Sommerseth | 2009-04-02 | 1 | -1/+1 | |
| | ||||||
* | Added simple function for returning results and errors as XML | David Sommerseth | 2009-04-02 | 2 | -0/+44 | |
| | ||||||
* | Security enhancement: Added check in eDBadmin* functions that the context is ↵ | David Sommerseth | 2009-04-01 | 2 | -0/+102 | |
| | | | | correct | |||||
* | Fixed up a small detail in users.xsl | David Sommerseth | 2009-04-01 | 1 | -1/+1 | |
| | ||||||
* | Rewrote eurephiadm/usercerts to use XSLT for listing | David Sommerseth | 2009-04-01 | 2 | -42/+112 | |
| | ||||||
* | Rewrote eurephiadm/adminaccess to use XSLT for listing | David Sommerseth | 2009-03-31 | 2 | -34/+77 | |
| | ||||||
* | Rewrote eurephiadm/users command to user XSLT wherever possible | David Sommerseth | 2009-03-31 | 2 | -89/+222 | |
| | ||||||
* | Renamed XSLT variable $view_fw to $firewall | David Sommerseth | 2009-03-31 | 2 | -4/+4 | |
| | ||||||
* | Added copyright license to XSLT templates | David Sommerseth | 2009-03-31 | 3 | -0/+60 | |
| | ||||||
* | Added a few more files to .gitignore | David Sommerseth | 2009-03-31 | 1 | -0/+2 | |
| | ||||||
* | Rewrote places using xmlPrint_certs(...) to use the XSLT | David Sommerseth | 2009-03-31 | 3 | -102/+104 | |
| | | | | Added XSLT template for displaying certificate info. | |||||
* | Added logging of configure runs | David Sommerseth | 2009-03-30 | 1 | -39/+51 | |
| | ||||||
* | Cleaned up some compiler warnings in edb-sqlite | David Sommerseth | 2009-03-30 | 3 | -0/+20 | |
| | ||||||
* | Using right plug-in path in eurephia_init | David Sommerseth | 2009-03-30 | 2 | -2/+2 | |
| | | | | This is a regression introduced in commit cda490e1fc19904d015d8d5853af731d3cd983ea | |||||
* | Added fwadmin in granted access on db initialisation | David Sommerseth | 2009-03-30 | 1 | -1/+1 | |
| | ||||||
* | Removed debug info in ./configure | David Sommerseth | 2009-03-30 | 1 | -3/+0 | |
| | ||||||
* | Restructured ./configure and improved the path setup | David Sommerseth | 2009-03-30 | 7 | -23/+78 | |
| | | | | Also added install rules to XSLT files | |||||
* | Added missing xmlReplaceChars(...) on common_name and organisation | David Sommerseth | 2009-03-29 | 1 | -4/+20 | |
| |