-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathc5.html
More file actions
136 lines (122 loc) · 6.41 KB
/
c5.html
File metadata and controls
136 lines (122 loc) · 6.41 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>RapidSec</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/lightbox.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/main.css?v=0.002" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
</head><!--/head-->
<body>
<header id="header">
<div class="container">
<div class="row">
<div class="col-sm-12 overflow">
<div class="social-icons pull-right">
<ul class="nav nav-pills">
<li><a href=""><i class="fa fa-facebook"></i></a></li>
<li><a href=""><i class="fa fa-twitter"></i></a></li>
<li><a href=""><i class="fa fa-google-plus"></i></a></li>
<li><a href=""><i class="fa fa-dribbble"></i></a></li>
<li><a href=""><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="navbar navbar-inverse" role="banner">
<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">
<h1><img src="images/logo.png" alt="logo"></h1>
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li class="dropdown"><a href=#>Courses<i class="fa fa-angle-down"></i></a>
<ul role="menu" class="sub-menu">
<li><a href="c1.html"><b>Learning Penetration Testing</b></a></li>
<li><a href="c2.html"><b>Learning Malware Analysis</b></a></li>
<li><a href="c3.html"><b>Learning Network Penetration Testing</b></a></li>
<li><a href="c4.html"><b>Learning Incident Response</b></a></li>
<li><a href="c5.html"><b>Reverse Engineering</b></a></li>
</ul>
</div>
<div class="search">
<form role="form">
<i class="fa fa-search"></i>
<div class="field-toggle">
<input type="text" class="search-form" autocomplete="off" placeholder="Search">
</div>
</form>
</div>
</div>
</div>
</header>
<section id="portfolio">
<div class="container">
<div class="row">
<ul class="portfolio-filter text-center">
<li><a class="btn btn-default" data-filter=".branded"><h1>Reverse Engineering<h1></a></li>
</ul>
<section id="portfolio-information">
<div class="container">
<div class="row">
<div class="col-sm-6">
<img src="images/portfolio-details/rev.jpg" class="img-responsive" alt="">
</div>
<div class="col-sm-6">
<div class="project-name overflow">
<h2 class="bold">Course overview </h2>
</div>
<div class="project-info overflow">
<h3>Course Objective</h3>
<p>This course will teach you basics of penetration testing and will take you to the very advance level of pentesting. You will learn many topics that are bases on web hacking, system hacking, privilage escalation and many more. After this course students will be able to prepare for most popular cybersecurity certificates globally.</p>
<ul class="elements">
<li><i class="fa fa-angle-right"></i> Boot to root machines solving.</li>
<li><i class="fa fa-angle-right"></i> Privilage escalation.</li>
<li><i class="fa fa-angle-right"></i> Web vulnerablities hacking.</li>
</ul>
</div>
<div class="live-preview">
<a href="#" class="btn btn-common uppercase">Comming Soon</a>
</div>
</div>
</div>
</div>
</section>
<br><br>
</div>
</div>
</section>
<!--/#portfolio-->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="js/lightbox.min.js"></script>
<script type="text/javascript" src="js/wow.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>