Commit Graph
13005 Commits
Author SHA1 Message Date
esaunders 0aa5d0f63b Changed set of boundary characters into a character class expression which eliminates the need for the 'or' (|) character. 2017-01-10 11:04:50 -05:00
esaunders acf05a45e8 Modified message that is displayed in content viewer when we are unable to find the text associated with a keyword hit. 2017-01-10 10:26:11 -05:00
esaunders d20e70b58b Reverting previous modification of IP address regex as it does not help reduce false positives. 2017-01-10 10:24:57 -05:00
esaunders ff85d494ed Tightened up IP address regex to not match hits that have more than 4 elements separated by dots. Removed trailing slash from URL regex as it is not needed...the trailing slash is being handled as one of the boundary characters in RegexQuery 2017-01-09 16:39:53 -05:00
esaunders acae764760 Modified the phone number regex to pick up number that have spaces in them...perhaps this will produce more false positives but in our test data it produces over 1,000 extra numbers that are not found in Autopsy 4.2. Also updated the email regex to find email addresses surrounded in {} sometimes seen in academic publications. 2017-01-04 17:14:06 -05:00
esaunders ba7f8ab9b3 Consolidated boundary characters into a single list. 2017-01-04 15:19:21 -05:00
esaunders c172e0f16e Fix for missing characters in snippets and reduce length of snippets in an attempt to more closely match previous version of Autopsy. 2017-01-04 12:23:42 -05:00
esaunders 8432fec205 Updated email and url regexes to be case insensitive. 2017-01-04 12:22:17 -05:00
esaunders 6304300f62 Merge branch 'develop' of github.com:sleuthkit/autopsy into 2121_regex_query 2017-01-03 12:56:04 -05:00
esaunders 45c2b0c065 Set results max page size to 512. 2017-01-03 12:48:39 -05:00
esaunders c1f326775a Added result paging support. 2017-01-03 12:47:16 -05:00
Richard Cordovano 46369eff44 Update NBM versioning for 4.3.0 2017-01-02 18:45:21 -05:00
Richard Cordovano 62abe62a6c Update Autopsy version numbers 2017-01-02 18:44:54 -05:00
Richard Cordovano 91f4993456 Update NEWS.txt for 4.3.0 release 2017-01-02 18:08:10 -05:00
Richard Cordovano 6ad40d4949 Merge pull request #2452 from rcordovano/develop
4.3.0 preps: DSPs, public API restore, const name
2017-01-02 17:57:25 -05:00
Richard Cordovano 13411450aa 4.3.0 preps: DSPs, public API restore, const name 2017-01-02 17:36:59 -05:00
Richard Cordovano fbb37c619b Merge pull request #2450 from APriestman/docUpdate
Update link to online documentation
2016-12-29 09:09:19 -05:00
Ann Priestman a7a5dcb2ef Update link to online documentation 2016-12-29 08:08:47 -05:00
Richard Cordovano 518635f491 Merge branch 'develop' of https://github.com/sleuthkit/autopsy into develop 2016-12-28 15:01:22 -05:00
Richard Cordovano 4631c71502 Tentative NEWS file update for Autopsy 4.3.0 2016-12-28 14:59:46 -05:00
esaunders 681699467d Needed to tweak the CC regex and our boundary characters to successfully match CC numbers in our test data set. 2016-12-28 14:37:51 -05:00
Richard Cordovano 392bbb16bb Merge pull request #2449 from APriestman/docUpdate
Updates to documentation
2016-12-28 14:23:15 -05:00
Ann Priestman c5e49b7b54 Fixing typos/wording 2016-12-28 14:22:13 -05:00
Ann Priestman a67593bc99 Finishing doc updates 2016-12-28 13:50:47 -05:00
Richard Cordovano a751f3b6f7 Update image gallery help URL 2016-12-28 13:44:59 -05:00
Ann Priestman e41f141a9c Merge remote-tracking branch 'upstream/develop' into docUpdate 2016-12-28 13:36:47 -05:00
Richard Cordovano 85bd18a7f2 Update image DSP type string 2016-12-28 13:16:23 -05:00
Ann Priestman 331f6e0c0a Updating documentation 2016-12-28 12:35:03 -05:00
esaunders bdfe6e2c14 More comment clarification for CCN_REGEX 2016-12-28 10:24:44 -05:00
esaunders 3c585b1321 Fixed comment for CCN_REGEX 2016-12-28 10:08:26 -05:00
Richard Cordovano 5b04e8483c Merge pull request #2446 from wschaeferB/2147-TimelineLamdaBug
2147 Eleminating issue with timeline exception
2016-12-28 08:45:34 -05:00
esaunders 259a4ec1c9 Restructured HighlightedText.attemptManualHighlighting() 2016-12-27 17:13:08 -05:00
esaunders 8d82672f2f Merge branch 'develop' of github.com:sleuthkit/autopsy into 2121_regex_query 2016-12-27 17:10:39 -05:00
esaunders 0e925e6823 Modified creation of regex keyword hits to break on a whitespace or punctuation boundary to support consistent highlighting. Also added HighlightedText.attemptManualHighlighting() for those situations where the Lucene highlighter doesn't give us useful results. 2016-12-27 17:00:00 -05:00
esaunders 4b80395b9d Replaced credit card regular expression with one that does not attempt to limit the first digit to 3-6. The old regular expression resulted in an error from Solr stating: Determinizing .*[3-6]([ -]?[0-9]){11,18}.* would result in more than 10000 states. 2016-12-27 16:46:41 -05:00
William Schaefer 2f5dd79d48 2147 Eleminating issue with timeline exception by changing lambdas to anon inner classes 2016-12-27 16:41:18 -05:00
Richard Cordovano db20de2df4 Merge pull request #2445 from wschaeferB/2142-CaseClosing2
2142 case closing2
2016-12-27 16:25:56 -05:00
William Schaefer 806191e79f 2142 minor changes to make netbeans happier, mainly using diamond type inference 2016-12-27 15:53:14 -05:00
William Schaefer 76c33ad857 2142 - null checked all uses of db in GroupManager.java 2016-12-27 15:37:31 -05:00
William Schaefer 37069402de 2142 - minor formatting corrections 2016-12-27 13:43:12 -05:00
William Schaefer 19e4331221 Merge branch 'develop' of https://github.com/sleuthkit/autopsy into 2142-CaseClosing2 2016-12-27 13:38:10 -05:00
Richard Cordovano 0333d46943 Merge pull request #2443 from wschaeferB/2142-CaseClosing
2142 case closing
2016-12-27 13:05:41 -05:00
Richard Cordovano 85f173b0ec Merge pull request #2444 from zhhl/2166-invalidPathMessage
2166: show the invalid path message in autoingest panel
2016-12-27 12:59:05 -05:00
William Schaefer d671227f50 2142-added null check on DB to eleminate null pointers when case closed while recatagorizing 2016-12-27 12:56:39 -05:00
U-BASIS\zhaohui 403021dd8a 2166: show the invalid path message in autoingest panel 2016-12-22 18:13:32 -05:00
William Schaefer 9c6486d39b 2142 added breaks to catch statement in loops which try to modify tags after case closed 2016-12-22 13:55:23 -05:00
William Schaefer f6b4df71a7 2142 wrapped IllegalStateExeption errors in TagsManager, added break on error to loops 2016-12-22 12:24:58 -05:00
Richard Cordovano 40ae4c90e1 Merge pull request #2442 from APriestman/disableExpInInstaller
Disable the experimental module by default in the installer.
2016-12-22 10:15:33 -05:00
Ann Priestman 04fa39cbe2 Disable the experimental module by default in the installer. 2016-12-22 09:23:43 -05:00
Richard Cordovano 9f5ac10197 Merge pull request #2439 from zhhl/2153-restartRequiredMessageNeeded
2153: Restart message is needed while Auto Ingest options changes and…
2016-12-21 22:09:42 -05:00