Skip to content

Commit

Permalink
Upload files
Browse files Browse the repository at this point in the history
  • Loading branch information
vineetjc committed Oct 15, 2018
1 parent 39bf771 commit de8dcc8
Show file tree
Hide file tree
Showing 397 changed files with 28,721 additions and 1 deletion.
41 changes: 41 additions & 0 deletions Extra/1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
<!-- whATMiGHTthIsRanDOmTxtBe -->
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 18</div>
<div class="question">Integrity Is The key To The Triad!!</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

//sha256() in base 16

function clicked() {
var answer = $('#password').val();
check(answer);
}

</script>
</body>
</html>
40 changes: 40 additions & 0 deletions Extra/10.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body bg="included.jpg">

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 10</div>
<div class="question">Sometimes You Have To Do Things Again To Be Sure You Have Done It Once</div>
<center>
<div class="input_holder">
<input type="text" name="username" placeholder="Key 1" id="username" style="margin-bottom: 20px;"/>
<input type="text" name="password" placeholder="Key 2" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#username').val() + $('#password').val();
check(answer);
}

</script>
</body>
</html>
41 changes: 41 additions & 0 deletions Extra/11.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body bg="included.jpg">

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 11</div>
<div class="question">Do You Have A Strange Feeling Of Deja Vu? Sometimes You Feel As Though You Have Seen Something Before
But Realize Its Not Quite The Same Thing</div>
<center>
<div class="input_holder">
<input type="text" name="username" placeholder="Key 1" id="username" style="margin-bottom: 20px;"/>
<input type="text" name="password" placeholder="Key 2" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#username').val() + $('#password').val();
check(answer);
}

</script>
</body>
</html>
39 changes: 39 additions & 0 deletions Extra/12.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body bg="try2.jpg" >

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 13</div>
<div class="question">One who braves any situation, is a...</br>One who accepts all challenges and emerges victorious, is a...</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#password').val();
check(answer);
}

</script>
</body>
</html>
55 changes: 55 additions & 0 deletions Extra/13.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style1.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 14</div>
<div class="question1">My teacher always told me that whenever I must present an answer, I put my answer within a few points.
It's easy to go through all points than a huge paragraph.
<IMG SRC="1.jpg" onclick="ohmy()">

</div>
</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#password').val();
check(answer);
}

function ohmy() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
alert(this.responseText);
}
};
xmlhttp.open("GET", "ohmy.php", true);
xmlhttp.send();
}

</script>
</body>
</html>
38 changes: 38 additions & 0 deletions Extra/14.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 17</div>
<div class="question"><b>Tathva</b>masi</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#password').val();
check(answer);
}

</script>
</body>
</html>
41 changes: 41 additions & 0 deletions Extra/15.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style1.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 15</div>
<div class = "question">
Find all the secret codes in the maze. There's 9 of them hidden deep somewhere. Good luck finding them :p <br>
Secret Code: A8ROIU0VPATOEMB
<br>
<br>

<a href="koko.html">koko</a>
<br>
<br>
<a href="avrnd.html">avrnd</a>
<br>
<br>
<a href="zqsa.html">zqsa</a>
</div>

</div>
<br>
<a href="mazesubmit.html">Link to submit codes (all codes together only)</a>
</body>
</html>
38 changes: 38 additions & 0 deletions Extra/2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 2</div>
<div class="question">Nope you are wrong, it's not the same <!--So you are smart. Here's the password : LevL2SuCSS-->question as before. Obviously typing the same password wont work. Try finding the password for this one.</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked()">Submit</button>
</div>
</center>
</div>
<script>

function clicked() {
var answer = $('#password').val();
check(answer);
}

</script>
</body>
</html>
46 changes: 46 additions & 0 deletions Extra/3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<html>
<head>
<title>Hackaholic</title>

<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
<script src="common.js" type="text/javascript"></script>
</head>
<body>

<div class="header">
<center>
<h1>HACKAHOLIC</h1>
</center>
</div>

<div class="container">
<div class="heading">QUEST 3</div>
<div class="question">Let's do this one more time. This is somewhat similar to last 2 questions. Just need a different angle to look at it.</div>
<center>
<div class="input_holder">
<input type="text" name="password" placeholder="Password" id="password"/>
<button id="submit" onclick="clicked();checking();">Submit</button>
</div>
</center>
</div>
<script>

function checking() {
if ($('#password').val() == "ThatsMuchAmaZE") {
console.log('You are smart. you got it right.');
} else {
console.log('Still kinda smart');
}
}

function clicked() {
var answer = $('#password').val();
check(answer);
}

</script>
</body>
</html>
Loading

0 comments on commit de8dcc8

Please sign in to comment.