-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·769 lines (671 loc) · 39.9 KB
/
index.php
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
<?php
// Begin PHP
// Include Password File
include 'password.php';
// Feedback Form
if(isset($_POST['contactsubmit'])) {
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$to = '[email protected]';
$body = "From: $name\nEmail: $email\nMessage:\n\n$message";
$err = False;
if (!$_POST["name"]) {
$errName = 'Please enter your name.';
$err = True;
}
if (!$_POST["email"] || !filter_var($_POST["email"], FILTER_VALIDATE_EMAIL)) {
$errEmail = 'Please enter a valid email.';
$err = True;
}
if (!$_POST["subject"]) {
$errSubject = 'Please enter a subject.';
$err = True;
}
if (!$_POST["message"]) {
$errMessage = 'Please enter a message.';
$err = True;
}
if (!$err) {
if (mail('[email protected]', $subject, $body)) {
$result = '<div class="alert alert-success">Thank you! We will be in touch.</div>';
} else {
$result = '<div class="alert alert-danger">Sorry, there was an error. Try again.</div>';
}
}
}
/*
// Newsletter Subscription
if(isset($_POST['newslettersubmit'])) {
// Local Variables
// Escape user input
$email = $_POST['email'];
$escapedemail = mysqli_real_escape_string($email);
$subject = 'SST CTF Subscription Verification';
$servername = "localhost";
$username = "www";
//$password = "NULL";
$dbname = "website";
$err = False;
// Filter emails
if (!$_POST["email"] || !filter_var($_POST["email"], FILTER_VALIDATE_EMAIL)) {
$err = True;
$newsresult = '<div class="alert alert-success">This is not a valid email.</div>';
} else {
// Create Connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check Connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
$err = True;
}
*/
/*
// Check for previous information
$sql = "SELECT email FROM newsletter WHERE email='".$email."'";
$match = mysql_num_rows($search);
if ($match > 1) {
$err = True;
}
*/
/* Insert user email into 'newsletter' table
$sql = "INSERT INTO newsletter (email) VALUES ('$email')";
// Check is we actually did something
if ($conn->query($sql) === FALSE) {
echo "Error: " . $sql . "<br>" . $conn->error;
$err = True;
}
*/
/*
// Finish up based on if we ran into any problems
if (!$err) {
$hash = bin2hex(mcrypt_create_iv(22, MCRYPT_DEV_URANDOM));
$sql = "INSERT INTO verification (email, hash) VALUES('$escapedemail', '$hash')";
if ($conn->query($sql) === FALSE) {
$err = True;
}
$body = '
Thanks for signing up to SST CTF newsletter!
Please click this link to activate your account.
If this is not you, please ignore this message.
http://sstctf.org/?email='.$email.'&hash='.$hash.'#footer';
if (mail($email, $subject, $body) || !$err) {
$newsresult = '<div class="alert alert-success">Thank you! You will recieve an email from us shortly.</div>';
} else {
$newsresult = '<div class="alert alert-success">Sorry, there was an error. Try again.</div>';
}
}
// Close the Connection
$conn->close();
}
}
*/
/*
if(isset($_GET['email']) && !empty($_GET['email']) AND isset($_GET['hash']) && !empty($_GET['hash']) {
$email = mysql_escape_string($_GET['email']);
$hash = mysql_escape_string($_GET['hash']);
$search = mysql_query("SELECT email, hash FROM verification WHERE email='".$email."' AND hash='".$hash."'");
$match = mysql_num_rows($search);
}*/
// End PHP
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <!--> <html lang="en" class="no-js"> <!-- <![endif]-->
<head>
<!-- Meta Character Set -->
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>SST CTF Official Website</title>
<!-- Meta Description -->
<meta name="google-site-verification" content="TggGO3ub1rTXm1bJYBoLVanfAvQOZ0BW5FZz0YVwIQE" />
<meta name="description" content="SST CTF - We are the school of science and technology's hacking and programming team.">
<meta name="keywords" content="SST, School, Science, Technology, CTF, Capture the Flag, Security, Exploitation, Reverse, Engineering, SSTCTF">
<meta name="author" content="Tamir Enkhjargal, Andrew Quach, Otakar Andrysek, Stan Lyakhov">
<!-- Google Verification -->
<meta name="google-site-verification" content="UBs4jASomwF_YMWLyNnFunTjHGTsLOFmdpRVU1j3KOs" />
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Testing something -->
<!-- CSS -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<!-- Fontawesome Icon font -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="fonts/favicon.ico">
<!-- bootstrap.min -->
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/slit-slider.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/main.css">
<!-- Modernizer Script for Old Browsers -->
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body id="body">
<!-- <?php include_once("analyticstracking.php") ?> -->
<!-- Preloader -->
<div id="preloader">
<div class="loader-box">
<div class="battery">
</div>
</div>
</div>
<!-- End Preloader -->
<!-- Fixed Navigation -->
<header id="navigation" class="navbar-inverse navbar-fixed-top animated-header">
<div class="container">
<div class="navbar-header">
<!-- Responsive Navigation Button -->
<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>
<!-- End Responsive Navigation Button -->
<!-- Logo -->
<h1 class="navbar-brand">
<a href="#body" style="color: #f2f2f2; text-decoration: none;">SST CTF</a>
</h1>
<!-- End Logo -->
</div>
<!-- Main Navigation -->
<nav class="collapse navbar-collapse navbar-right" role="navigation">
<ul id="nav" class="nav navbar-nav">
<li><a href="#body">Home</a></li>
<li><a href="#about">Details</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#testimonials">Members</a></li>
<li><a href="#price">Schedule</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
<!-- End Main Navigation -->
</div>
</header>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<main class="site-content" role="main">
<!-- Home Slider -->
<section id="home-slider">
<!-- sl-slider -->
<div id="slider" class="sl-slider-wrapper">
<div class="sl-slider">
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="-25" data-slice2-rotation="-25" data-slice1-scale="2" data-slice2-scale="2">
<div class="bg-img bg-img-1"></div>
<div class="slide-caption">
<div class="caption-content">
<h2 class="animated fadeInDown">SST CTF</h2>
<span class="animated fadeInDown">'A' days | Novitt's Room | After School</span>
<a href="#about" class="btn btn-blue btn-effect">Learn More</a>
</div>
</div>
</div>
<div class="sl-slide" data-orientation="vertical" data-slice1-rotation="10" data-slice2-rotation="-15" data-slice1-scale="1.5" data-slice2-scale="1.5">
<div class="bg-img bg-img-2"></div>
<div class="slide-caption">
<div class="caption-content">
<h2>SST CTF</h2>
<span>New Members Welcome!</span>
<a href="#about" class="btn btn-blue btn-effect">Learn More</a>
</div>
</div>
</div>
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="3" data-slice2-rotation="3" data-slice1-scale="2" data-slice2-scale="1">
<div class="bg-img bg-img-3"></div>
<div class="slide-caption">
<div class="caption-content">
<h2>SST CTF</h2>
<span>Active and Future Projects</span>
<a href="#about" class="btn btn-blue btn-effect">Learn More</a>
</div>
</div>
</div>
<!-- End sl-slider -->
<!--
<nav id="nav-arrows" class="nav-arrows">
<span class="nav-arrow-prev">Previous</span>
<span class="nav-arrow-next">Next</span>
</nav>
-->
<nav id="nav-arrows" class="nav-arrows hidden-xs hidden-sm visible-md visible-lg">
<a href="javascript:;" class="sl-prev">
<i class="fa fa-angle-left fa-3x"></i>
</a>
<a href="javascript:;" class="sl-next">
<i class="fa fa-angle-right fa-3x"></i>
</a>
</nav>
<nav id="nav-dots" class="nav-dots visible-xs visible-sm hidden-md hidden-lg">
<span class="nav-dot-current"></span>
<span></span>
<span></span>
</nav>
</div>
</section>
<!-- End Home Slider -->
<!-- About Section -->
<section id="about" >
<div class="container">
<div class="row">
<div class="col-md-4 wow animated fadeInLeft">
<div class="recent-works">
<h3>CTF Topics</h3>
<div id="works">
<div class="work-item">
<p><u>REVERSE ENGINEERING</u><br><br>Reverse engineering is simply the process of going backwards. In CTFs, you typically reverse binary programs using debuggers and diassemblers like GNU Debugger or IDA PRO. Reversing cryptographic systems and obfuscated programs are also common problems.</p>
</div>
<div class="work-item">
<p><u>BINARY EXPLOITATION</u><br><br>Binary exploitation is the idea of abusing a weakness in a compiled application in such a way that is advantageous. A basic binary exploitation concept is memory corruption. An attacking armed with arbitrary write into memory can rewrite crucial state information. The most basic binary exploitation concept is the buffer overflow. </p>
</div>
<div class="work-item">
<p><u>PROGRAMMING</u><br><br>Programming is a crucial skill in CTF. All other skills revolve around programming in some way. Python is a great language to know due to its extensive libraries. It is also helpful to know how to read Java and C as well.</p>
</div>
<div class="work-item">
<p><u>WEB SECURITY</u><br><br>Next to Programming, web security is one of the most rewarding skills to learn. Understanding, exploiting, and fixing vulnerabilities is useful both in CTF competitions and in the real world. Security will always be in high demand. A good vulnerability to start with is SQL injection.</p>
</div>
<div class="work-item">
<p><u>CRYPTOGRAPHY</u><br><br>Cryptography is about constructing and analyzing protocols that prevent third parties from reading private messages. In short, cryptography is a method of securing message transactions. The common modern cryptographic protocols are RSA and ECC. In CTF competitions, you break into insecure protocols and in turn learn how not to do cryptography.<p>
</div>
<div class="work-item">
<p><u>FORENSICS</u><br><br>Forensics revolves around the idea of hiding a message in one way or another. A common forensics problem is hiding messages in images, or steganography. Another would be messing with hex headers. Doing forensics problems requires the person to think outside of the box. <p>
</div>
</div>
</div>
</div>
<div class="col-md-7 col-md-offset-1 wow animated fadeInRight">
<div class="welcome-block">
<h3>Welcome To SST CTF</h3>
<div class="message-body">
<img src="img/logo.jpg" class="pull-left" alt="member">
<p>We work as a team through the main idea of programming and cybersecurity. We compete in competitions called CTF, or Capture The Flag, where you search for a "flag", or a specific word, either hidden in plain sight, or encrypted. Most competitions occur online, but we also attend some Oregon CTF events.
</p>
</div>
<a href="#" class="btn btn-border btn-effect pull-right">Read More</a>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- Service section -->
<section id="service">
<div class="container">
<div class="row">
<div class="sec-title text-center">
<h2 class="wow animated bounceInLeft">SKILLS</h2>
<p class="wow animated bounceInRight">Everything You Need to Know in CTF</p>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow animated zoomIn">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-home fa-3x"></i>
</div>
<h3>Programming</h3>
<p>Probably the most important skill you need in CTF is Programming. You should feel confortable with Python and Java.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow animated zoomIn" data-wow-delay="0.3s">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-tasks fa-3x"></i>
</div>
<h3>Documentation</h3>
<p>After every problem we solve, we document how we solved it in a writeup. This is to help future CTF members and get in the feeling of recording what problems we solved.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow animated zoomIn" data-wow-delay="0.6s">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-clock-o fa-3x"></i>
</div>
<h3>Resources</h3>
<p>Time is key in competitions, and knowing your programs and services will severely reduce the time you spend on a given problem.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow animated zoomIn" data-wow-delay="0.9s">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-heart fa-3x"></i>
</div>
<h3>Interest in Computer Science</h3>
<p>Most importantly, you need to like the topics in CTF. We're not looking for dedication immediately, and CTF is not for everyone. You need to love what you're doing.</p>
</div>
</div>
</div>
</div>
</section>
<!-- end Service section -->
<!-- portfolio section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="sec-title text-center wow animated fadeInDown">
<h2>PROJECTS</h2>
<p>Here are some projects that we will be working on. We are hoping to complete them by the end of the year.</p>
</div>
<ul class="project-wrapper wow animated fadeInUp">
<li class="portfolio-item">
<img src="img/portfolio/python.jpg" class="img-responsive" alt=" Any work in CTF requires a good baseline in coding. We hope to become fluent in Python and Java by the end of the year.">
<figcaption class="mask">
<h3>Fluency in Programming</h3>
<p>Any work in CTF requires a good baseline in coding.</p>
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Fluency in programming" data-fancybox-group="works" href="img/portfolio/python.jpg"><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
<li class="portfolio-item">
<img src="img/portfolio/linux.jpg" class="img-responsive" alt="Linux is a major tool in CTF. You will easily be able to find a specific file in a terminal and solve terminal based problems.">
<figcaption class="mask">
<h3>Linux Expertise</h3>
<p>Linux is a major tool in CTF.</p>
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Linux master" href="img/portfolio/linux.jpg" data-fancybox-group="works" ><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
<li class="portfolio-item">
<img src="img/portfolio/clock.jpg" class="img-responsive" alt="very often, time is an issue in competitions. We will become faster in skills and shortcuts so we can solve more questions in a shoter time frame. ">
<figcaption class="mask">
<h3>Resourcefulness</h3>
<p>Very often, time is an issue in competitions. </p>
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Efficiency" data-fancybox-group="works" href="img/portfolio/clock.jpg"><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
<li class="portfolio-item">
<img src="img/portfolio/competitions.jpg" class="img-responsive" alt="This is where all our hard work pays off, we will copmete in a multitude of CTF competions and try to win as much as possible.">
<figcaption class="mask">
<h3>Competitions</h3>
Click <a href="https://ctftime.org/event/list/upcoming"><u>here</u></a> to view upcoming events.
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Competitions" data-fancybox-group="works" href="img/portfolio/competitions.jpg"><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
<li class="portfolio-item">
<img src="img/portfolio/server.jpg" class="img-responsive" alt="We will be using our private server for many essential CTF-related operations, including file transfer and communication. ">
<figcaption class="mask">
<h3>Dedicated Server</h3>
<p>Owning a private server is very important to any CTF team. </p>
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Dedicated Server" data-fancybox-group="works" href="img/portfolio/server.jpg"><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
<li class="portfolio-item">
<img src="img/portfolio/personal.jpg" class="img-responsive" alt="On our spare time be creating our own, customized, Linux destribution. This project will teach is alot about Linux and the terminal. ">
<figcaption class="mask">
<h3>Linux Destribution</h3>
<p>We will be working on our own Linux destribution. </p>
</figcaption>
<ul class="external">
<li><a class="fancybox" title="Linux destribution" data-fancybox-group="works" href="img/portfolio/personal.jpg"><i class="fa fa-search"></i></a></li>
<li><a href=""><i class="fa fa-link"></i></a></li>
</ul>
</li>
</ul>
</div>
</div>
</section>
<!-- end portfolio section -->
<!-- Testimonial section -->
<section id="testimonials" class="parallax">
<div class="overlay">
<div class="container">
<div class="row">
<div class="sec-title text-center white wow animated fadeInDown">
<h2>SST CTF Members</h2>
</div>
<div id="testimonial" class=" wow animated fadeInUp">
<div class="testimonial-item text-center">
<img src="img/members/otakar.jpg" alt="Picture of Otakar">
<div class="clearfix">
<span>Otakar Andrysek</span>
<p>My interest in CTF started at OregonCTF where Andrew, Tamir, and I got destroyed. We started the club later that year and have been learning every since. I am fairly knowledgable in Programmming but prefer to work on Digital Forensics. I am a huge fan of Linux but use a Mac at home, I swear I'm not an apple fanboy.</p>
</div>
</div>
<div class="testimonial-item text-center">
<img src="img/members/tamir.jpg" alt="Picture of Tamir">
<div class="clearfix">
<span>Tamir Enkhjargal</span>
<p>I started my interest in CTF at a small local competition called OregonCTF, and oh man it was brutal. While other students got around 2,000 or more points we got only 20. This unforgettable experience led me to strive harder in CTF topics such as Cryptography and Programming to not get as destroyed. Always keep on progressing!</p>
</div>
</div>
<div class="testimonial-item text-center">
<img src="img/members/andrew.jpg" alt="Picture of Andrew">
<div class="clearfix">
<span>Andrew Quach</span>
<p>I have no idea what I'm doing.</p>
</div>
</div>
<div class="testimonial-item text-center">
<img src="img/members/dane.jpg" alt="Picture of Dane">
<div class="clearfix">
<span>Dane Miller</span>
<p>I was drawn to CTF due primarily to my interest in software, but quickly found an appreciation for cryptography. I have been mentored and encouraged by the senior members of the club and I have learned a ton since I joined the club. I have limited experience with software and inadequate skill for most competitions, but I always enjoy the challenge. I gravitate towards the logic based puzzles, and encourage anyone who loves a puzzle to consider joining SST CTF.</p>
</div>
</div>
<div class="testimonial-item text-center">
<img src="img/members/stan.jpg" alt="Picture of Stan">
<div class="clearfix">
<span>Stanislav Lyakhov</span>
<p>After stumbling upon an article about modern cryptography and meeting a security programmer I became very interested in the field of cyber security, after moving from Germany I discovered SSTCTF and joined the team where I was taught by my teammates. Aside from participating in CTF competitions I also act as the media person of the team.</p>
</div>
</div>
<div class="testimonial-item text-center">
<img src="img/members/stephen.jpg" alt="Picture of Stephen">
<div class="clearfix">
<span>Stephen Brimhall</span>
<p>I have been fascinated by computers all my life. When I saw a flyer for the SST CTF club, I joined immediately. I was exposed to cybersecurity after my freshman year in the CyberDiscovery camp in Portland, and have been interested since. I have also written several of the utilities running on our server.</p>
</div>
<div class="testimonial-item text-center">
<img src="img/members/jakob.jpg" alt="Picture of Jakob">
<div class="clearfix">
<span>Jakob Fox</span>
<p>placeholder text lol</p>
</div>
</div>
</div>
</div>
</section>
<!-- end Testimonial section -->
<!-- Price section -->
<!-- Do not remove XXBegin and XXEnd comments -->
<section id="price">
<div class="container">
<div class="row">
<div class="sec-title text-center wow animated fadeInDown">
<h2>Schedule</h2>
<p>Our meeting schedule.</p>
</div>
<div class="col-md-4 wow animated fadeInUp">
<div class="price-table featured text-center">
<span>Previous Meeting</span>
<div class="value">
<span></span>
<span><!--PreviousDateBegin-->05/16/17<!--PreviousDateEnd--></span><br>
<span><!--PreviousDateLongBegin-->Tuesday May 16 (2:15-3:30)<!--PreviousDateLongEnd--></span>
</div>
<ul>
<li><!--PreviousTopicBegin-->Topic: Leviatan<!--PreviousTopicEnd--></li>
<li><!--PreviousLeaderBegin-->Leader: Stan Lyakhov<!--PreviousLeaderEnd--></li>
<li><!--PreviousDescriptionBegin-->Description: Work on perfecting linux skills and improving basic web systems. Learn ltrace.<!--PreviousDescriptionEnd--></li>
<li><!--PreviousHomeworkBegin-->Homework: Prepare for Saturday<!--PreviousHomeworkEnd--></li>
<li><!--PreviousDownloadBegin--><a href="downloads/04-27-17"><!--PreviousDownloadEnd-->Downloads</a></li>
</ul>
</div>
</div>
<div class="col-md-4 wow animated fadeInUp" data-wow-delay="0.4s">
<div class="price-table featured text-center">
<span>Next Meeting</span>
<div class="value">
<span></span>
<span><!--NextDateBegin-->05/18/17<!--NextDateEnd--></span><br>
<span><!--NextDateLongBegin-->Thursday May 18 (2:15-3:30)<!--NextDateLongEnd--></span>
</div>
<ul>
<li><!--NextTopicBegin-->Topic: Binary Exploitation<!--NextTopicEnd--></li>
<li><!--NextLeaderBegin-->Leader: Andrew Quach<!--NextLeaderEnd--></li>
<li><!--NextDescriptionBegin-->Description: Brush up on binary exploatation skills using past CTF problems.<!--NextDescriptionEnd--></li>
<li><!--NextHomeworkBegin-->Homework: None<!--NextHomeworkEnd--></li>
<li><!--NextDownloadBegin--><a href="downloads/05-15-17"><!--NextDownloadEnd-->Downloads</a></li>
</ul>
</div>
</div>
<div class="col-md-4 wow animated fadeInUp" data-wow-delay="0.8s">
<div class="price-table featured text-center">
<span>Future Meeting</span>
<div class="value">
<span></span>
<span><!--FutureDateBegin-->05/22/17<!--FutureDateEnd--></span><br>
<span><!--FutureDateLongBegin-->Monday May 22 (2:15-3:30)<!--FutureDateLongEnd--></span>
</div>
<ul>
<li><!--FutureTopicBegin-->Topic: Web Exploitation<!--FutureTopicEnd--></li>
<li><!--FutureLeaderBegin-->Leader: Otakar Andrysek<!--FutureLeaderEnd--></li>
<li><!--FutureDescriptionBegin-->Description: Learn how to use wireshark and other network ctf problems.<!--FutureDescriptionEnd--></li>
<li><!--FutureHomeworkBegin-->Homework: None<!--FutureHomeworkEnd--></li>
<li><!--FutureDownloadBegin--><a href="downloads/05-17-17"><!--FutureDownloadEnd-->Downloads</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Price section -->
<!-- Social section -->
<section id="social" class="parallax">
<div class="overlay">
<div class="container">
<div class="row">
<div class="sec-title text-center white wow animated fadeInDown">
<h2>FOLLOW US</h2>
<p>Find our code and news on the following websites</p>
</div>
<ul class="social-button">
<li class="wow animated zoomIn"><a href="https://www.facebook.com/SST-CTF-1113073442103189/"><i class="fa fa-thumbs-up fa-2x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="0.3s"><a href="https://twitter.com/sstctf"><i class="fa fa-twitter fa-2x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="0.6s"><a href="https://github.com/SST-CTF"><i class="fa fa-github fa-2x"></i></a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- end Social section -->
<!-- Contact section -->
<section id="contact" >
<div class="container">
<div class="row">
<div class="sec-title text-center wow animated fadeInDown">
<h2>CONTACT</h2>
<p>Leave a Question or Comment</p>
</div>
<div class="col-md-7 contact-form wow animated fadeInLeft">
<form action="#contact" method="post">
<?php echo $result;?>
<div class="input-field">
<input type="text" name="name" class="form-control" placeholder="Your Name...">
<?php echo "<p class='text-danger'>$errName</p>";?>
</div>
<div class="input-field">
<input type="email" name="email" class="form-control" placeholder="Your Email...">
<?php echo "<p class='text-danger'>$errEmail</p>";?>
</div>
<div class="input-field">
<input type="text" name="subject" class="form-control" placeholder="Subject...">
<?php echo "<p class='text-danger'>$errSubject</p>";?>
</div>
<div class="input-field">
<textarea name="message" class="form-control" placeholder="Message..."></textarea>
<?php echo "<p class='text-danger'>$errMessage</p>";?>
</div>
<button type="submit" id="submit" name="contactsubmit" class="btn btn-blue btn-effect">Send</button>
</form>
</div>
<div class="col-md-5 wow animated fadeInRight">
<address class="contact-details">
<h3>Contact Us</h3>
<p><i class="fa fa-pencil"></i>SST CTF<span>18640 NW Walker Rd</span> <span>Beaverton, Oregon </span><span>United States</span></p><br>
<p><i class="fa fa-phone"></i>Phone: (503) 560-3958 </p>
<p><i class="fa fa-envelope"></i>[email protected]</p>
</address>
</div>
</div>
</div>
</section>
<!-- end Contact section -->
</main>
<!-- Footer Stuff -->
<!-- Bored? CLEAN THIS UP. PLEASE. -->
<footer id="footer">
<div class="container">
<div class="row text-center">
<div class="footer-content">
<div class="wow animated fadeInDown">
<p>newsletter signup</p>
<p>Get notified about our progress and outlook!</p>
</div>
<!-- Newsletter Section -->
<form action="#footer" method="post" class="subscribe-form wow animated fadeInUp">
<div class="input-field">
<input type="email" class="subscribe form-control" name="email" placeholder="Enter Your Email...">
<button type="submit" id="submit" name="newslettersubmit" class="submit-icon">
<i class="fa fa-paper-plane fa-lg"></i>
</button>
</div>
</form>
<?php echo $newsresult;?>
<?php echo "<p class='text-danger'>$errName</p>";?>
<!-- END Newsletter Section -->
<!-- TODO -->
<div class="footer-social">
<ul>
<li class="wow animated zoomIn"><a href="https://www.facebook.com/SST-CTF-1113073442103189/"><i class="fa fa-thumbs-up fa-3x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="0.3s"><a href="https://twitter.com/sstctf"><i class="fa fa-twitter fa-3x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="0.6s"><a href="/downloads"><i class="fa fa-download fa-3x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="0.9s"><a href="https://nodequery.com/servers/view/30348"><i class="fa fa-tasks fa-3x"></i></a></li>
<li class="wow animated zoomIn" data-wow-delay="1.2s"><a href="https://github.com/SST-CTF"><i class="fa fa-github fa-3x"></i></a></li>
</ul>
</div>
<p>Copyright © 2014-2015 Design and Developed By <a href="http://www.themefisher.com">Themefisher</a> </p>
<p>Copyright © 2016 SST CTF </p
</div>
</div>
</div>
</footer>
<!-- Essential jQuery Plugins
================================================== -->
<!-- Main jQuery -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- Twitter Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Single Page Nav -->
<script src="js/jquery.singlePageNav.min.js"></script>
<!-- jquery.fancybox.pack -->
<script src="js/jquery.fancybox.pack.js"></script>
<!-- Owl Carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- jquery easing -->
<script src="js/jquery.easing.min.js"></script>
<!-- Fullscreen slider -->
<script src="js/jquery.slitslider.js"></script>
<script src="js/jquery.ba-cond.min.js"></script>
<!-- onscroll animation -->
<script src="js/wow.min.js"></script>
<!-- Custom Functions -->
<script src="js/main.js"></script>
</body>
</html>