mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Extract BinMap from Accounts.java
This commit is contained in:
parent
01bc9a41d7
commit
58a90500b9
15
Core/src/org/sleuthkit/autopsy/datamodel/AccountType.java
Normal file
15
Core/src/org/sleuthkit/autopsy/datamodel/AccountType.java
Normal file
@ -0,0 +1,15 @@
|
||||
package org.sleuthkit.autopsy.datamodel;
|
||||
|
||||
public enum AccountType {
|
||||
CREDIT_CARD("Credit Card"), OTHER("Other");
|
||||
|
||||
public String getDisplayName() {
|
||||
return displayName;
|
||||
}
|
||||
|
||||
private final String displayName;
|
||||
|
||||
private AccountType(String displayName) {
|
||||
this.displayName = displayName;
|
||||
}
|
||||
}
|
@ -24,8 +24,6 @@ import com.google.common.collect.TreeRangeMap;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.beans.PropertyChangeEvent;
|
||||
import java.beans.PropertyChangeListener;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
@ -44,13 +42,9 @@ import java.util.logging.Logger;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.concurrent.GuardedBy;
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
import javax.swing.AbstractAction;
|
||||
import javax.swing.Action;
|
||||
import org.apache.commons.csv.CSVFormat;
|
||||
import org.apache.commons.csv.CSVParser;
|
||||
import org.apache.commons.csv.CSVRecord;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.openide.nodes.AbstractNode;
|
||||
import org.openide.nodes.ChildFactory;
|
||||
@ -61,7 +55,6 @@ import org.openide.util.Exceptions;
|
||||
import org.openide.util.NbBundle;
|
||||
import org.openide.util.lookup.Lookups;
|
||||
import org.sleuthkit.autopsy.casemodule.Case;
|
||||
import org.sleuthkit.autopsy.coreutils.MessageNotifyUtil;
|
||||
import org.sleuthkit.autopsy.ingest.IngestManager;
|
||||
import org.sleuthkit.autopsy.ingest.ModuleDataEvent;
|
||||
import org.sleuthkit.datamodel.AbstractFile;
|
||||
@ -86,19 +79,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
* This is a secret handshake with
|
||||
* org.sleuthkit.autopsy.keywordsearch.TermComponentQuery
|
||||
*/
|
||||
private static final String CREDIT_CARD_NUMBER_ACCOUNT_TYPE = "Credit Card Number";
|
||||
/**
|
||||
* Range Map from a (ranges of) B/IINs to data model object with details of
|
||||
* the B/IIN, ie, bank name, phone, url, visa/amex/mastercard/...,
|
||||
*/
|
||||
@GuardedBy("Accounts.class")
|
||||
private final static RangeMap<Integer, IINRange> iinRanges = TreeRangeMap.create();
|
||||
|
||||
/**
|
||||
* Flag for if we have loaded the IINs from the file already.
|
||||
*/
|
||||
@GuardedBy("Accounts.class")
|
||||
private static boolean iinsLoaded = false;
|
||||
private static final String CREDIT_CARD_ACCOUNT_TYPE = "Credit Card";
|
||||
|
||||
private SleuthkitCase skCase;
|
||||
|
||||
@ -107,59 +88,6 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
*/
|
||||
private boolean showRejected = false;
|
||||
|
||||
/**
|
||||
* Load the IIN range information from disk. If the map has already been
|
||||
* initialized, don't load again.
|
||||
*/
|
||||
synchronized private static void loadIINRanges() {
|
||||
if (iinsLoaded == false) {
|
||||
try {
|
||||
InputStreamReader in = new InputStreamReader(Accounts.class.getResourceAsStream("ranges.csv")); //NON-NLS
|
||||
CSVParser rangesParser = CSVFormat.RFC4180.withFirstRecordAsHeader().parse(in);
|
||||
|
||||
//parse each row and add to range map
|
||||
for (CSVRecord record : rangesParser) {
|
||||
|
||||
/**
|
||||
* Because ranges.csv allows both 6 and (the newer) 8 digit
|
||||
* IINs, but we need a consistent length for the range map,
|
||||
* we pad all the numbers out to 8 digits
|
||||
*/
|
||||
String start = StringUtils.rightPad(record.get("iin_start"), 8, "0"); //pad start with 0's //NON-NLS
|
||||
|
||||
//if there is no end listed, use start, since ranges will be closed.
|
||||
String end = StringUtils.defaultIfBlank(record.get("iin_end"), start); //NON-NLS
|
||||
end = StringUtils.rightPad(end, 8, "99"); //pad end with 9's //NON-NLS
|
||||
|
||||
final String numberLength = record.get("number_length"); //NON-NLS
|
||||
|
||||
try {
|
||||
IINRange iinRange = new IINRange(Integer.parseInt(start),
|
||||
Integer.parseInt(end),
|
||||
StringUtils.isBlank(numberLength) ? null : Integer.valueOf(numberLength),
|
||||
record.get("scheme"), //NON-NLS
|
||||
record.get("brand"), //NON-NLS
|
||||
record.get("type"), //NON-NLS
|
||||
record.get("country"), //NON-NLS
|
||||
record.get("bank_name"), //NON-NLS
|
||||
record.get("bank_url"), //NON-NLS
|
||||
record.get("bank_phone"), //NON-NLS
|
||||
record.get("bank_city")); //NON-NLS
|
||||
|
||||
iinRanges.put(Range.closed(iinRange.getIINstart(), iinRange.getIINend()), iinRange);
|
||||
|
||||
} catch (NumberFormatException numberFormatException) {
|
||||
LOGGER.log(Level.WARNING, "Failed to parse IIN range: " + record.toString(), numberFormatException); //NON-NLS
|
||||
}
|
||||
iinsLoaded = true;
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
LOGGER.log(Level.WARNING, "Failed to load IIN ranges form ranges.csv", ex); //NON-NLS
|
||||
MessageNotifyUtil.Notify.warn("Credit Card Number Discovery", "There was an error loading Bank Identification Number information. Accounts will not have their BINs identified.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
@ -169,6 +97,11 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
this.skCase = skCase;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T accept(AutopsyItemVisitor<T> v) {
|
||||
return v.visit(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the clause that should be used in order to (not) filter out rejected
|
||||
* results from db queries.
|
||||
@ -189,23 +122,6 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
notifyObservers();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an IINInfo object with details about the given IIN
|
||||
*
|
||||
* @param iin the IIN to get details of.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
synchronized static public IINInfo getIINInfo(int iin) {
|
||||
loadIINRanges();
|
||||
return iinRanges.get(iin);
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T accept(AutopsyItemVisitor<T> v) {
|
||||
return v.visit(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a new Action that when invoked toggles showing rejected artifacts on
|
||||
* or off.
|
||||
@ -294,7 +210,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
* by a bank.
|
||||
*/
|
||||
@Immutable
|
||||
static private class IINRange implements IINInfo {
|
||||
static class IINRange implements IINInfo {
|
||||
|
||||
private final int IINStart; //start of IIN range, 8 digits
|
||||
private final int IINEnd; // end (incluse ) of IIN rnage, 8 digits
|
||||
@ -333,7 +249,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
* @param bank_phone the phone number of the issuer
|
||||
* @param bank_city the city of the issuer
|
||||
*/
|
||||
private IINRange(int IIN_start, int IIN_end, Integer number_length, String scheme, String brand, String type, String country, String bank_name, String bank_url, String bank_phone, String bank_city) {
|
||||
IINRange(int IIN_start, int IIN_end, Integer number_length, String scheme, String brand, String type, String country, String bank_name, String bank_url, String bank_phone, String bank_city) {
|
||||
this.IINStart = IIN_start;
|
||||
this.IINEnd = IIN_end;
|
||||
|
||||
@ -543,7 +459,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
|
||||
@Override
|
||||
protected Node createNodeForKey(String key) {
|
||||
if (key.equals(CREDIT_CARD_NUMBER_ACCOUNT_TYPE)) {
|
||||
if (key.equals(CREDIT_CARD_ACCOUNT_TYPE)) {
|
||||
return new CreditCardNumberAccountTypeNode(key);
|
||||
} else {
|
||||
//Flesh out what happens with other account types here.
|
||||
@ -795,7 +711,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
+ " AND solr_attribute.attribute_type_id = " + BlackboardAttribute.ATTRIBUTE_TYPE.TSK_SOLR_DOCUMENT_ID.getTypeID() //NON-NLS
|
||||
+ " LEFT JOIN blackboard_attributes as account_type ON blackboard_artifacts.artifact_id = account_type.artifact_id " //NON-NLS
|
||||
+ " AND account_type.attribute_type_id = " + BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE.getTypeID() //NON-NLS
|
||||
+ " AND account_type.value_text = '" + CREDIT_CARD_NUMBER_ACCOUNT_TYPE + "'" //NON-NLS
|
||||
+ " AND account_type.value_text = '" + CREDIT_CARD_ACCOUNT_TYPE + "'" //NON-NLS
|
||||
+ " WHERE blackboard_artifacts.artifact_type_id = " + BlackboardArtifact.ARTIFACT_TYPE.TSK_ACCOUNT.getTypeID() //NON-NLS
|
||||
+ getRejectedArtifactFilterClause()
|
||||
+ " GROUP BY blackboard_artifacts.obj_id, solr_document_id " //NON-NLS
|
||||
@ -1066,7 +982,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
||||
final Integer bin = Integer.valueOf(resultSet.getString("BIN"));
|
||||
long count = resultSet.getLong("count");
|
||||
|
||||
IINRange iinRange = (IINRange) getIINInfo(bin);
|
||||
IINRange iinRange = (IINRange) BINMap.getIINInfo(bin);
|
||||
BinResult previousResult = ranges.get(bin);
|
||||
|
||||
if (previousResult != null) {
|
||||
|
98
Core/src/org/sleuthkit/autopsy/datamodel/BINMap.java
Normal file
98
Core/src/org/sleuthkit/autopsy/datamodel/BINMap.java
Normal file
@ -0,0 +1,98 @@
|
||||
package org.sleuthkit.autopsy.datamodel;
|
||||
|
||||
import com.google.common.collect.Range;
|
||||
import com.google.common.collect.RangeMap;
|
||||
import com.google.common.collect.TreeRangeMap;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import javax.annotation.concurrent.GuardedBy;
|
||||
import org.apache.commons.csv.CSVFormat;
|
||||
import org.apache.commons.csv.CSVParser;
|
||||
import org.apache.commons.csv.CSVRecord;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.sleuthkit.autopsy.coreutils.MessageNotifyUtil;
|
||||
|
||||
public class BINMap {
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(BINMap.class.getName());
|
||||
/**
|
||||
* Range Map from a (ranges of) B/IINs to data model object with details of
|
||||
* the B/IIN, ie, bank name, phone, url, visa/amex/mastercard/...,
|
||||
*/
|
||||
@GuardedBy("Accounts.class")
|
||||
private final static RangeMap<Integer, Accounts.IINRange> iinRanges = TreeRangeMap.create();
|
||||
|
||||
/**
|
||||
* Flag for if we have loaded the IINs from the file already.
|
||||
*/
|
||||
@GuardedBy("Accounts.class")
|
||||
private static boolean iinsLoaded = false;
|
||||
|
||||
/**
|
||||
* Load the IIN range information from disk. If the map has already been
|
||||
* initialized, don't load again.
|
||||
*/
|
||||
synchronized private static void loadIINRanges() {
|
||||
if (iinsLoaded == false) {
|
||||
try {
|
||||
InputStreamReader in = new InputStreamReader(Accounts.class.getResourceAsStream("ranges.csv")); //NON-NLS
|
||||
CSVParser rangesParser = CSVFormat.RFC4180.withFirstRecordAsHeader().parse(in);
|
||||
|
||||
//parse each row and add to range map
|
||||
for (CSVRecord record : rangesParser) {
|
||||
|
||||
/**
|
||||
* Because ranges.csv allows both 6 and (the newer) 8 digit
|
||||
* IINs, but we need a consistent length for the range map,
|
||||
* we pad all the numbers out to 8 digits
|
||||
*/
|
||||
String start = StringUtils.rightPad(record.get("iin_start"), 8, "0"); //pad start with 0's //NON-NLS
|
||||
|
||||
//if there is no end listed, use start, since ranges will be closed.
|
||||
String end = StringUtils.defaultIfBlank(record.get("iin_end"), start); //NON-NLS
|
||||
end = StringUtils.rightPad(end, 8, "99"); //pad end with 9's //NON-NLS
|
||||
|
||||
final String numberLength = record.get("number_length"); //NON-NLS
|
||||
|
||||
try {
|
||||
Accounts.IINRange iinRange = new Accounts.IINRange(Integer.parseInt(start),
|
||||
Integer.parseInt(end),
|
||||
StringUtils.isBlank(numberLength) ? null : Integer.valueOf(numberLength),
|
||||
record.get("scheme"), //NON-NLS
|
||||
record.get("brand"), //NON-NLS
|
||||
record.get("type"), //NON-NLS
|
||||
record.get("country"), //NON-NLS
|
||||
record.get("bank_name"), //NON-NLS
|
||||
record.get("bank_url"), //NON-NLS
|
||||
record.get("bank_phone"), //NON-NLS
|
||||
record.get("bank_city")); //NON-NLS
|
||||
|
||||
iinRanges.put(Range.closed(iinRange.getIINstart(), iinRange.getIINend()), iinRange);
|
||||
|
||||
} catch (NumberFormatException numberFormatException) {
|
||||
LOGGER.log(Level.WARNING, "Failed to parse IIN range: " + record.toString(), numberFormatException); //NON-NLS
|
||||
}
|
||||
iinsLoaded = true;
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
LOGGER.log(Level.WARNING, "Failed to load IIN ranges form ranges.csv", ex); //NON-NLS
|
||||
MessageNotifyUtil.Notify.warn("Credit Card Number Discovery", "There was an error loading Bank Identification Number information. Accounts will not have their BINs identified.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an IINInfo object with details about the given IIN
|
||||
*
|
||||
* @param iin the IIN to get details of.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
synchronized static public Accounts.IINInfo getIINInfo(int iin) {
|
||||
loadIINRanges();
|
||||
return iinRanges.get(iin);
|
||||
}
|
||||
|
||||
}
|
@ -34,7 +34,9 @@ import org.apache.solr.client.solrj.SolrQuery;
|
||||
import org.apache.solr.client.solrj.response.TermsResponse.Term;
|
||||
import org.sleuthkit.autopsy.coreutils.Logger;
|
||||
import org.sleuthkit.autopsy.coreutils.Version;
|
||||
import org.sleuthkit.autopsy.datamodel.AccountType;
|
||||
import org.sleuthkit.autopsy.datamodel.Accounts;
|
||||
import org.sleuthkit.autopsy.datamodel.BINMap;
|
||||
import org.sleuthkit.datamodel.AbstractFile;
|
||||
import org.sleuthkit.datamodel.BlackboardArtifact;
|
||||
import org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE;
|
||||
@ -56,10 +58,6 @@ final class TermComponentQuery implements KeywordSearchQuery {
|
||||
private static final BlackboardAttribute.Type ACCOUNT_NUMBER_TYPE = new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_CREDIT_CARD_NUMBER);
|
||||
private static final BlackboardAttribute.Type ACOUNT_TYPE_TYPE = new BlackboardAttribute.Type(ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE);
|
||||
|
||||
/**
|
||||
* This is a secret handshake with org.sleuthkit.autopsy.datamodel.Accounts
|
||||
*/
|
||||
private static final String CREDIT_CARD_NUMBER_ACCOUNT_TYPE = "Credit Card Number";
|
||||
|
||||
//TODO: move these regex and the luhn check to a new class, something like: CreditCardNumberValidator
|
||||
/*
|
||||
@ -194,7 +192,7 @@ final class TermComponentQuery implements KeywordSearchQuery {
|
||||
//if the keyword hit matched the credit card number keyword/regex...
|
||||
if (keyword.getType() == ATTRIBUTE_TYPE.TSK_CREDIT_CARD_NUMBER) {
|
||||
newArtifact = hit.getContent().newArtifact(ARTIFACT_TYPE.TSK_ACCOUNT);
|
||||
newArtifact.addAttribute(new BlackboardAttribute(ACOUNT_TYPE_TYPE, MODULE_NAME, CREDIT_CARD_NUMBER_ACCOUNT_TYPE));
|
||||
newArtifact.addAttribute(new BlackboardAttribute(ACOUNT_TYPE_TYPE, MODULE_NAME, AccountType.CREDIT_CARD.name()));
|
||||
|
||||
// make account artifact
|
||||
//try to match it against the track 1 regex
|
||||
@ -219,7 +217,7 @@ final class TermComponentQuery implements KeywordSearchQuery {
|
||||
String ccn = newArtifact.getAttribute(ACCOUNT_NUMBER_TYPE).getValueString();
|
||||
final int iin = Integer.parseInt(ccn.substring(0, 8));
|
||||
|
||||
Accounts.IINInfo iinInfo = Accounts.getIINInfo(iin);
|
||||
Accounts.IINInfo iinInfo = BINMap.getIINInfo(iin);
|
||||
|
||||
if (iinInfo != null) {
|
||||
iinInfo.getScheme().ifPresent(scheme
|
||||
|
Loading…
x
Reference in New Issue
Block a user