Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Constants.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2023 Basis Technology Corp.
5 * Contact: carrier <at> sleuthkit <dot> org
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19package com.basistech.df.cybertriage.autopsy.ctapi;
20
21import java.net.URI;
22
26final class Constants {
27
28 public static final String CYBER_TRIAGE = "CyberTriage";
29
30 public static final String IS_MEMORY_IMAGE = "IS_MEMORY_IMAGE";
31
32
33 public static final String SSLTEST_URL = "https://www2.cybertriage.com/ssl_test.html";
34
35
36
37
38 public static final String CT_CLOUD_DEV_SERVER = "https://cyber-triage-dev.appspot.com";
39
40 public static final String CT_CLOUD_SERVER = "https://rep1.cybertriage.com";
41
46 public static final String DEMO_VIDEO_URL = "https://www.cybertriage.com/video/cyber-triage-demo-video/?utm_source=Cyber+Triage+Tool&utm_campaign=Eval+Demo+Video";
47
52 public static final String REQUEST_QUOTE_URL = "https://www.cybertriage.com/request-quote/?utm_source=Cyber+Triage+Tool&utm_campaign=Eval+Quote";
53
58 public static final URI USER_GUIDE_LATEST_URL = URI.create("https://docs.cybertriage.com/en/latest/?utm_source=Cyber+Triage+Tool&utm_campaign=Help+Docs");
59
64 public static final String VISIT_WEBSITE_URL ="https://www.cybertriage.com/eval_data_202109/?utm_source=Cyber+Triage+Tool&utm_campaign=Eval+Data+Button";
65
66
70 public static final String EVAL_WEBSITE_AUTO_URL = "https://www.cybertriage.com/eval_data_202109_auto/?utm_source=Cyber+Triage+Tool&utm_campaign=Eval+Data+Auto/"; //CT-4045
71
72
73 public static final String SUPPORT_AT_CYBERTRIAGE_DOT_COM = "support@cybertriage.com";
74
75 public static final String SALES_AT_CYBERTRIAGE_DOT_COM = "sales@cybertriage.com";
76
77 public final static String AUTODETECT = "Auto Detect";
78
79 public final static int RESTAPI_PORT = 9443;
80
81 public static final String INVALID_HOSTNAME_REQUEST = "Request rejected. Invalid host name. Hostname contains characters that are not allowed. \n"
82 + "Characters that are not allowed include `~!@#$&^*(){}[]\\\\|;'\",<>/? \n"
83 + "You may input the host IP address if the name is not resolving.";
84 public static final String INVALID_HOSTNAME_UI = "Invalid host name. Hostname contains characters that are not allowed. \n"
85 + "Characters that are not allowed include `~!@#$&^*(){}[]\\\\|;'\",<>/?";
86
87}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.