diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/BurpSource.jsx b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/BurpSource.jsx index ce2db21de9..23fba2d9a5 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/BurpSource.jsx +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/BurpSource.jsx @@ -1,8 +1,9 @@ -import { Box, Button, ButtonGroup, HorizontalStack, Text, VerticalStack } from '@shopify/polaris' +import { Box, Button, ButtonGroup, HorizontalStack, Link, Text, VerticalStack } from '@shopify/polaris' import React, { useEffect, useState, useRef } from 'react' import {useNavigate} from "react-router-dom" import api from '../api' import func from "@/util/func" +import InformationBannerComponent from './shared/InformationBannerComponent' function BurpSource() { const navigate = useNavigate() @@ -60,8 +61,12 @@ function BurpSource() { const steps = [ { - text: "Download akto's burp extension", - component: , + textComponent: ( +
+ 1. Download akto's burp extension + +
+ ), }, { text: "Open Burp and add the downloaded jar file in extension tab." @@ -116,20 +121,32 @@ function BurpSource() { getCredentials() },[]) + const content = ( + + Akto Burp plugin will work post + v2024.1.1.1 + + ) + return (
Use burp plugin to send traffic to Akto and realize quick value. If you like what you see, we highly recommend using AWS or GCP traffic mirroring to get real user data for a smooth, automated and minimum false positive experience. + + {steps.map((element,index) => ( - {index + 1}. - {element?.text} + {element?.text ?{index + 1}. : null} + {element?.text ?{element?.text} : null} + {element?.textComponent} - {element?.component} + + {element?.component} + ))}