forked from rilian/JS-LOIC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 3.92 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 3.92 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
<?xml version="1.1" encoding="iso-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!--
_____ _ ____ _ _
|__ /__ _ _ __ | |_ / ___|___ _ __ _ __ ___ _ __ __ _| |_(_) ___ _ __
/ // _ | _ \| __| | | / _ \| __| _ \ / _ \| __/ _ | __| |/ _ \| _ \
/ /| (_| | | | | |_ | |__| (_) | | | |_) | (_) | | | (_| | |_| | (_) | | | |
/____\__ _|_| |_|\__| \____\___/|_| | __/ \___/|_| \__ _|\__|_|\___/|_| |_|
|_| ~Right to Copy~
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sp">
<head>
<title>LOWC (Low Orbit Web Cannon)</title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-8859-1" />
<link href="img/favicon.ico" media="all" rel="icon" type="image/x-icon" />
<link href="css/style.css" media="all" rel="stylesheet" type="text/css" />
<link href="css/mb.slider.css" media="all" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mb.slider.js"></script>
<script type="text/javascript" src="js/jquery.metadata.js"></script>
<script type="text/javascript" src="js/engine.js"></script>
<script type="text/javascript">
$(function(){
$("#ex0 .mb_slider").mbSlider({
onSlide:function(o){$("#"+o.id+"_val").find(".val").val($(o).mbgetVal());move_slide();},
});
});
</script>
</head>
<body>
<div id="hiveContainer" class="hidde"></div>
<div id="frameContainer" class="hidde"></div>
<div id="imgContainer" class="hidde"></div>
<div id="typeStyle" class="hidde"></div>
<div id="header">
<h1>LOWC</h1>
<h2>(Low Orbit Web Cannon)</h2>
</div>
<div id="layer1">
<table id="table1">
<tr>
<td>
<fieldset class="layer2">
<legend>1. Select your target</legend>
<input type="text" id="target" value="http://" onfocus="erase('#target');" onblur="reload('#target');httpValue();"/>
</fieldset>
</td>
<td>
<fieldset class="layer2">
<legend>HiveMind (optional)</legend>
<input type="button" id="hivebutton" value="Connect" onclick="hive();"/>
<input type="text" id="hiveURL" value="http://" onfocus="erase('#hiveURL');" onblur="reload('#hiveURL');httpValue();"/>
</fieldset>
</td>
</tr>
<tr>
<td colspan="2">
<fieldset class="layer2">
<legend>2. Attack options (caution!)</legend>
<div class="title">Type:</div>
<div>
<input type="button" id="radio1" value="IMG" onclick="shootType('img');" />
<input type="button" id="radio2" value="IFrame" onclick="shootType('iframe');" />
</div>
<div class="title">Interval (ms):</div>
<div id="interval1">
<div id="ex0">
<div id="sl0" class="mb_slider {maxVal:'5000', rangeColor:'#5696C0',negativeColor:'#183040', startAt:200, grid:10}" style="display:inline-block;*display:inherit;"></div>
</div>
</div>
<div class="title">Append Message:</div>
<input type="text" id="msg" value="This_is_LOWC!" />
</fieldset>
</td>
</tr>
<tr>
<td colspan="1">
<fieldset class="layer2">
<legend>3. Ready?</legend>
<input type="button" id="start" onclick="start_stop();" value="IMMA CHARGING MAH LAZER" />
<span id="sl0_val" class="setVal"><input type="hidden" id="interval_slide" class="val" value="200" /></span>
</fieldset>
</td>
<td>
<fieldset class="layer2">
<legend>Attack status</legend>
<div id="number"><p id="counter_requested">0</p><span id="of">of </span><span id="counter_tail">0</span></div>
</fieldset>
</td>
</tr>
</table>
</div>
<p id="footer">Designed by ~Zant Corporation~ | Source: <a href="https://code.google.com/p/lowc">Google Code</a></p>
</body>
</html>