remove a duplicate test

This commit is contained in:
amammad
2023-12-14 17:08:18 +01:00
parent d84333dad8
commit 4d9aad92a1

View File

@@ -187,7 +187,6 @@ func fasthttpServer() {
fmt.Fprintf(rspWriter, "%s", userInputByte) // $ XssSink=userInputByte
io.WriteString(rspWriter, userInput) // $ XssSink=userInput
io.TeeReader(userInputReader, rspWriter) // $ XssSink=userInputReader
io.TeeReader(userInputReader, rspWriter) // $ XssSink=userInputReader
bufioReader := bufio.NewReader(dstReader)
bufioReader.WriteTo(rspWriter) // $ XssSink=bufioReader
bytesUserInput := bytes.NewBuffer(userInputByte)