From f4facdf6d5bff6de4aa096f2f91c8c6d8ac1e96b Mon Sep 17 00:00:00 2001 From: sandeep Date: Mon, 5 Sep 2022 06:04:27 +0530 Subject: [PATCH] interact domain update --- README.md | 2 +- public/index.html | 2 +- src/components/customHost/index.tsx | 12 ++++++------ src/lib/localStorage/index.ts | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0c7d54b..1189b10 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A hosted instance of **interactsh-web** client is available at https://app.inter ## Configuring Self-Hosted Interactsh Server - Navigate to hosted interactsh-web client at https://app.interactsh.com -- Click on `interact.sh` link at top bar +- Click on `oast.fun` link at top bar - Submit domain name running self-hosted interactsh server, optionally token (for protected server) Here is an example configuring self-hosted interactsh server with web-client: diff --git a/public/index.html b/public/index.html index a273fc4..743904c 100644 --- a/public/index.html +++ b/public/index.html @@ -5,7 +5,7 @@ - Interact.sh | Web Client + Interactsh | Web Client { notes: [], view: "up_and_down", increment: 1, - host: "interact.sh", + host: "oast.fun", tabs: [], token: "", telegram: { @@ -59,7 +59,7 @@ const CustomHost = ({ handleCloseDialog }: CustomHostP) => { const [isDeleteConfirmationVisible, setIsDeleteConfirmationVisible] = useState(false); const [isLoading, setIsLoading] = useState(false); const [errorText, setErrorText] = useState(""); - const [inputValue, setInputValue] = useState(host === "interact.sh" ? "" : host); + const [inputValue, setInputValue] = useState(host === "oast.fun" ? "" : host); const [tokenInputValue, setTokenInputValue] = useState(token === "" ? "" : token); const handleDeleteConfirmationVisibility = () => { @@ -76,8 +76,8 @@ const CustomHost = ({ handleCloseDialog }: CustomHostP) => { const handleConfirm = () => { if ( - (inputValue !== "" && inputValue !== "interact.sh" && host !== inputValue) || - (inputValue !== "" && inputValue !== "interact.sh" && tokenInputValue !== token) + (inputValue !== "" && inputValue !== "oast.fun" && host !== inputValue) || + (inputValue !== "" && inputValue !== "oast.fun" && tokenInputValue !== token) ) { setIsLoading(true); setTimeout(() => { @@ -164,7 +164,7 @@ const CustomHost = ({ handleCloseDialog }: CustomHostP) => { - You can point your self hosted interact.sh server below to connect with this web client. + You can point your self hosted oast.fun server below to connect with this web client. { /> {errorText !== "" &&
{errorText}
}
- {host !== "interact.sh" && ( + {host !== "oast.fun" && (