-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (107 loc) · 5.27 KB
/
Copy pathindex.html
File metadata and controls
115 lines (107 loc) · 5.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Hashdump is the computer security club at Colorado State University. We participate and put on numerous security competitions every year, and attempt to facilitate a better understanding of security as a whole. All majors are welcome to join and participate">
<meta name="author" content="Cale Black">
<link rel="shortcut icon" href="dist/assets/favicon.png">
<title>Hashdump</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Hashdump</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li class="dropdown closed">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Library <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="wiki.html">Wiki</a></li>
<li><a href="library/cheat.html">Cheat Sheets</a></li>
<li><a href="library/books.html">Books</a></li>
<li class="divider"></li>
<li><a href="library/series.html">Series</a></li>
</ul>
</li>
<li><a href="talks.html">Talks</a></li>
<li><a href="https://webchat.freenode.net/?channels=%23hashdump&uio=Mj10cnVlJjQ9dHJ1ZSY5PXRydWUmMTE9MjU2d9">IRC</a></li>
<li><a href="https://github.com/hashdump">Github</a></li>
<li><a href="contact.html">Contact</a></li>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="center-template">
<h1>HASHDUMP</h1>
<img src="dist/assets/Hashdump.png" alt="Hashdump Logo" width="350" height="300">
<p class="lead">Hashdump is the computer security club at Colorado State University. We participate and put on numerous security competitions every year, and attempt to facilitate a better understanding of security as a whole. All majors are welcome to join and participate.</p>
</br>
<p class="lead">We meet every Tuesday at 5:00 PM in the Computer Science Building 315. A current schedule is posted below:</p>
</br>
<div class="bs-example table-responsive">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Date</th>
<th>Talk</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>03-18</td>
<td>MitM</td>
<td>Man in the middle part 2. Learn about wired and wireless Man in the Middle attacks</td>
</tr>
<tr>
<td>03-25</td>
<td>Intro to Cryptography</td>
<td>Guest talk from an ex-hashdump member about the fundamentals of cryptography and the math that makes our world safe</td>
</tr>
<tr class="active">
<td>02-04</td>
<td><a href="talks.html">Wifi Pineapple</a></td>
<td>An introduction to a nasty little device that facilitates wireless man in the middles</td>
</tr>
<tr class="active">
<td>02-18</td>
<td>Malicious Web Code</td>
<td>Take a quick look into why web security is so difficult, including path traversal, code injection, and some very basic XSS</td>
</tr>
<tr class="active">
<td>02-25</td>
<td>Assembly and Exploitation</td>
<td>Our first in depth look at software exploitation and low level assembly.</td>
</tr>
<tr class="active">
<td>03-4</td>
<td>XSS</td>
<td>Learn the ins and outs of basic XSS and some slightly more advanced attacks</td>
</tr>
</tbody>
</table>
</div>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="dist/js/jquery-2.1.0.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
</body>
</html>