66 Commits (8d838bfd26416a3217c6c87449236c8825135bf6)
 

Autor SHA1 Nachricht Datum
  Pete McNeil 8d838bfd26 Fixed catch warnings in FilterChain vor 4 Jahren
  Pete McNeil 6ecb537cb4 Fixed warnings in SNFMulti vor 4 Jahren
  Pete McNeil 1c39f8286f fixed Woverflow warning vor 4 Jahren
  Pete McNeil a81ce5f3e8 fixed getTimestamp() to avoid Wformat-overflow warning vor 4 Jahren
  Wombat 694590d05f Removed ifstream NULL comparison vor 6 Jahren
  madscientist 304ab5e19b Bumped tiny revision for buffer allocation bug fix in CodeDweller configuration.cpp vor 8 Jahren
  madscientist 71c098f26a Replaced White-Guard algorithm with Strangers algorightm. vor 8 Jahren
  madscientist a8394a591c Tightened up evaluator code to eliminate un-necessary attempts to match precise tokens. vor 8 Jahren
  madscientist 9081edfe1f git-svn-id: https://svn.microneil.com/svn/SNFMulti/trunk@63 dc71a809-1921-45c4-985c-09c81d0142d9 vor 8 Jahren
  madscientist e3cc59a0f8 Fixed the Black X-header so that it ignores above-band result codes. vor 10 Jahren
  madscientist 1a4398f375 Fixed warning where a Mutex passed to GBUdbRecordLockingShim() by value should have been passed by reference. (reference to stack allocated object) vor 10 Jahren
  madscientist 68b932d2cf Implemented WhiteGuard vor 10 Jahren
  madscientist 2c96f26dd9 Added missing snf_saccades files from previous commit. vor 10 Jahren
  madscientist 48babc91c7 Implemented AI based "saccades" engine to improve scanning efficiency. The Saccades engine borrows from vision systems research and allows SNF to learn important message structures and adapt it's scanning technique in real-time. Using this engine SNF can often avoid scanning large portions of each message without missing important content resulting in potentially 10 fold improvements in scanner efficiency. vor 10 Jahren
  madscientist 3613b43c5d Further optimized deep code in the scanning engine using a jump table to replace a collection of if/else logic. vor 10 Jahren
  madscientist 69e99f6fee Improved time tracking / reporting. vor 10 Jahren
  madscientist 7ae6b026a2 Minor revision tick. vor 10 Jahren
  madscientist 4407e29999 Bug Fix: Corrected Timestamp() formatting. vor 10 Jahren
  madscientist f17433ad6c Bug Fix: Updated Timestamp() to use C++ stringstream and to handle possible null pointer from gmtime() vor 10 Jahren
  adeniz 0e4a12fa3e Remove non-source files from source directories. vor 11 Jahren
  madscientist b606300584 Minor tweak vor 11 Jahren
  madscientist 4d3fbb11df Added stubs for snf_micro. vor 11 Jahren
  madscientist e5fc208746 Fixed a bug in scanMessageFile where the XHDRInjectOn flag was being interpreted before it had been set by the configuration This caused large messages to be rewritten shorter than they needed to be when header injection was turned on because the flag would appear to be off and the MessageFileSize would be recalculated downward. Later, after the flag was set, the headers would be injected into the shortened file. vor 12 Jahren
  madscientist b82c1a35c5 Improved code quality for logic that shrinks the message size when header injection is turned off. vor 12 Jahren
  madscientist f25ac2161c Corrected a bug where match records were not recorded in the ScanData. vor 12 Jahren
  madscientist cd46067c83 Fixed subtle bug where normal XCI responses did not end with \n. vor 12 Jahren
  madscientist 4a85d5843c Changed boolean to bool at 986 and 987 - bool is the correct type specifier for C++ and this was causing errors on one of the labrat compilers. No idea why it worked perfectly on mingw! vor 12 Jahren
  madscientist 4b87545ba7 snf_EngineHandler::scanMessageFile updated to read only up to the scan horizon of large files if possible (when header injection is turned off) vor 12 Jahren
  madscientist 0195b73466 Changed minor revision number to reflect rebuilding the engine with new CodeDweller networking bug fixes. vor 12 Jahren
  adeniz d83754ec68 Not needed; file is generated by the build process. vor 12 Jahren
  adeniz cc4b5f7d17 Added so that software from the repository can be built without vor 13 Jahren
  madscientist 3fe8390e56 Reworked rule voting code to clarify and bring the code closer to current standards. This was part of researching a potential problem involving the voting of panicked rules and this rebuild has verified that there is no problem --- panicked rules are indeed inert as intended. vor 13 Jahren
  madscientist 9c5d58d399 Fixed bug where only one of multiple source header directives with the same source header definition would be recognized. The fix was to improve the comparator function for HeaderFinderPattern so that it included context. Prior to that only one source header definition would be recognized because the ordinal is always 0 for source headers. As a result, only the first context could be registered. vor 13 Jahren
  madscientist 49cdc8380a Fixed bug in FilterChainBase64 where an extra character would be returned if the module ran out of data in SCANNING mode. Now if this occurs a flag is set and "No More Data" is thrown instead of returning the extra byte. vor 14 Jahren
  madscientist f3a6bb0900 Changed engine update number to .14 (now Version 3.0.14). vor 14 Jahren
  madscientist 07b1510386 Fixed bug in scanMessageFile where a very short message file could cause the exception: ERROR_MSG_XHDRi: Begin vector::_M_range_check vor 14 Jahren
  madscientist 6a98f77b8e Fixed bug in GBUdbIgnoreList reader to prevent reading outside of the line buffer. vor 14 Jahren
  madscientist 6ba92b6b81 Fixed bug in snfCFGmgr where OEM provided license ID was not always captured in the configuration data causing SYNC authentication problems. vor 15 Jahren
  adeniz 1c09274646 Modified to build with 64-bit MinGW. vor 15 Jahren
  madscientist 1aba213a91 Fixed memory leak when failing to authenticate a rulebase file. vor 15 Jahren
  madscientist 4e1950efcd Moved persistent state aux store() operations to RecordSyncEvent vor 15 Jahren
  madscientist ae5b6a2b53 Changed engine revision to 3.0.9 after networking SIGPIPE bug fix. vor 15 Jahren
  madscientist 88ac7134a8 SNFMulti engine now at 3.0.8 after several small bug fixes. vor 15 Jahren
  madscientist 6d3a6a8abf Fixed valgrind complaint about using uninitialized data when generating a OneTimePad. The algorithm uses unsigned char x as a register. Each next random byte in the pad is based on encrypting the last-- so a first byte is needed. Original code used an uninitialized x on purpose in order to get a supposedly unpredictable byte out of RAM. To make valgrind happy (and truly to make the algorithm better) x is now initialized by encrypting a 0 with the pad generator. This value is not directly exposed in the generated pad. The first byte in the one time pad is not the result of encrypting 0 but instead the result of encrypting the result of that operation. So, the first byte is based on the state of the pad generator just prior to making the OneTimePad. This is probably harder to predict than the state of the stack (where x would have come from) anyway. vor 15 Jahren
  madscientist b0bc7fdb25 Fixed persistent state data bug. Persistent state data is now saved once per second after updating status logs. vor 15 Jahren
  madscientist 6660ca1f3b Fixed initialization of time trigger (typo) was 846... now 864... Supposed to be "once per day". vor 15 Jahren
  madscientist 475833df1c Changed SNFMulti engine version to 3.0.7 accounting for fixes and upgrades to underlying components. vor 15 Jahren
  madscientist c73adfe320 Fixed a bug where the rulebase path was not determined correctly when license id was provided only through the run-time interface. vor 15 Jahren
  adeniz bc8dfd4aaa Include Makefile and ChangeLog in the distribution. vor 15 Jahren
  adeniz 1f96b7df53 Remove mangler.cpp and mangler.hpp from Makefile.am. Added ChangeLog vor 15 Jahren