This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| from random import randint | |
| import sys | |
| import re | |
| data = sys.stdin.readlines() | |
| list = ["!",".","*",".","*","&"] | |
| for row in data: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState } from "react"; | |
| import DOMPurify from 'dompurify'; | |
| function Xss(){ | |
| const [text, setText] = useState(""); | |
| const [script, setScript] =useState(""); | |
| const [imgg, setimgg] = useState(""); |