Skip to content

Commit

Permalink
Merge pull request #6 from kaiwalyakoparkar/development
Browse files Browse the repository at this point in the history
Question and answers added for card
  • Loading branch information
kaiwalyakoparkar committed Apr 10, 2021
2 parents ccad61d + aced30a commit fbba228
Show file tree
Hide file tree
Showing 2 changed files with 172 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sense-hack/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
<title>SENSE HACKER</title>
<link rel="stylesheet" href="./styles/style.css" type="text/css" />
<link rel="stylesheet" href="./styles/customize.css">
<!-- <script src="./scripts/cards.js"></script> -->
</head>
<body>
<div class="game-board">
<div class="hacker-area">
<h1>
<strong>HACKER CARDS</strong> <br />
<strong>Hacker's Attack Cards</strong> <br />
Choose the best card to stop the hackers' attack
</h1>

Expand Down
170 changes: 170 additions & 0 deletions sense-hack/scripts/cards.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
var scenarios = [
{
//One
hackerCard : {
description : "I set up a fake Wi-Fi station to steal people鈥檚 email and track them online.",
power : 4,
},
playerCards : [
{
description : "I never use public wifi networks.",
power : 5,
},
{
description : "I browse the web, but I never do any personal business on a public wifi network.",
power : 3,
},
{
description : "I connect to any wifi network I can use in public.",
power : 1,
}
]
},
//two
{
hackerCard : {
description : "I sent a fake email from your bank asking for your account details.",
power : 3,
},
playerCards : [
{
description : "I checked the email address - the message didn鈥檛 come from my bank.",
power : 5,
},
{
description : "I never give out personal information in response to an email.",
power : 4,
},
{
description : "I sent the details you asked for so you could check on my account.",
power : 1,
}
]
},
//three
{
hackerCard : {
description : "I figured out where you live from all the personal information you share on social media.",
power : 3,
},
playerCards : [
{
description : "I never share personal information on my social media accounts.",
power : 5,
},
{
description : "I keep my accounts private so only my friends can see them.",
power : 4,
},
{
description : "I tag everything so my friends always know what I鈥檓 doing.",
power : 1,
}
]
},
//four
{
hackerCard : {
description : "I watched you type your password and hacked your account.",
power : 2,
},
playerCards : [
{
description : "I use different passwords for all of my other accounts.",
power : 4,
},
{
description : "I changed my password on all of my accounts because they are the same.",
power : 2,
},
{
description : "I deleted that account and started a new one. ",
power : 1,
}
]
},
//five
{
hackerCard : {
description : "I looked at your browsing history on your phone to see what you do online.",
power : 2,
},
playerCards : [
{
description : "I always use a private browser that never keeps my history.",
power : 4,
},
{
description : "I set my browser to delete my history every time I quit. ",
power : 3,
},
{
description : "I never clear my browser history because I don鈥檛 like typing in big web addresses.",
power : 1,
}
]
},
//six
{
hackerCard : {
description : "I hacked your system and all your data is deleted now.",
power : 2,
},
playerCards : [
{
description : "I follow the 3-2-1 backup rule. I have on-site as well as off-site location (cloud storage) backup.",
power : 4,
},
{
description : "I have my data backed up in local and external hard drive.",
power : 3,
},
{
description : "I never backed up my data in any way.",
power : 1,
}
]
},
//seven
{
hackerCard : {
description : "I provided you my USB for content transfer.",
power : 2,
},
playerCards : [
{
description : "I use Anti-Virus Protection & Firewall to protect my system.",
power : 4,
},
{
description : "I refused to use your USB as my system was not having Anti-Virus Protection & Firewall.",
power : 3,
},
{
description : "I used your USB as I am not afraid of my system getting corrupted.",
power : 1,
}
]
},
//eight
{
hackerCard : {
description : "I will crash your vulnerable system using ransomware attacks, malware and data breaches.",
power : 2,
},
playerCards : [
{
description : "You can't because I have turnned on Automatic Updates for my operating system.",
power : 4,
},
{
description : "I use web browsers such as Chrome or Firefox that receive frequent, automatic security updates.",
power : 3,
},
{
description : "I don't update my softwares nor do I download security updates.",
power : 1,
}
]
}
]

0 comments on commit fbba228

Please sign in to comment.