-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (52 loc) · 1.4 KB
/
index.html
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
<html>
<head>
<title>SMS bomber</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="Js/app.js"></script>
<script src="Js/shortcut.js"></script>
</head>
<body style="background-color:#ccc">
<h1>Welcome to sms Bomber </h1>
<h1>We Understand Your frustation :D </h1>
<div ng-app="mainApp" ng-controller="BombController">
Current session IP {{userDetails.data.ip}}
</br>
</br>
Enter Phone Number:
<input type="text" ng-model="number">
<br>
<br> Enter Limit:
<input type="text" ng-model="limit">
<br>
<br>
<input type="button" ng-click="bomb()" Value="Bomb">
</br>
</br>
{{time}} of {{limit}} sent
</br>
</br>
Max of 9 messages per click
</div>
<script>
</script>
</body>
</html>
<script>
shortcut.add("Ctrl+U", function () {
alert("hahaha ! come'on Wtf ?");
});
shortcut.add("F12", function () {
alert("Bitch Please code your self");
});
$(document).ready(function () {
//Enable cut copy paste
$('body').bind('cut copy paste', function (e) {
e.preventDefault();
});
//Disable mouse right click
$("body").on("contextmenu", function (e) {
return false;
});
});
</script>