-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
845 lines (710 loc) · 36.5 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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
<?php
/*****************************
*
* WebPanel for Manager Alerts Rules for IPS MikroTik Suricata
*
* This file is the webgui for update and manager rules of project:
*
* https://github.com/elmaxid/ips-mikrotik-suricata *
*
* Author: Maximiliano Dobladez [email protected]
*
* http://maxid.com.ar | http://www.mkesolutions.net
*
*
* LICENSE: GPLv2 GNU GENERAL PUBLIC LICENSE
*
*
* v1.0 - 13 April 17 - initial version
******************************/
error_reporting( E_ALL );
error_reporting( 0 );
//include the config DB and API.
include 'functions.php';
include '/opt/ips-mikrotik-suricata/config.php';
$url_update_rules = 'https://www.update.rules.mkesolutions.net/update.php?c=update';
/* Wait for a connection to the database */
$i = 0;
while ( $i < 100 ) {
$db_ = new mysqli( $server, $user_name, $password, $database );
if ( $db_->connect_errno > 0 ) {
print( 'Unable to connect to database [' . $db_->connect_error . ']' );
sleep( 10 );
$i = $i + 10;
} //$db_->connect_errno > 0
else {
$i = 100;
$connect_DB = true;
}
} //$i < 100
if ( isset( $_REQUEST[ 'c' ] ) )
$cmd = trim( $_REQUEST[ 'c' ] ); //command
if ( isset( $_REQUEST[ 's' ] ) )
$search = trim( $_REQUEST[ 's' ] ); //search
if ( isset( $_REQUEST[ 'updates_rules' ] ) )
$updates_rules = $_REQUEST[ 'updates_rules' ]; //updates_rules
if ( isset( $_REQUEST[ 'id' ] ) )
$id = trim( $_REQUEST[ 'id' ] ); //id
if ( isset( $_REQUEST[ 'sid' ] ) )
$sid = trim( $_REQUEST[ 'sid' ] ); //sid
if ( isset( $_REQUEST[ 'cid' ] ) )
$cid = trim( $_REQUEST[ 'cid' ] ); //cid
if ( isset( $_REQUEST[ 'sig_name' ] ) )
$sig_name = trim( $_REQUEST[ 'sig_name' ] ); //sig_name
if ( isset( $_REQUEST[ 'src_or_dst' ] ) )
$src_or_dst = trim( $_REQUEST[ 'src_or_dst' ] ); //src_or_dst
if ( isset( $_REQUEST[ 'timeout' ] ) )
$timeout = trim( $_REQUEST[ 'timeout' ] ); //timeout
$active = trim( $_REQUEST[ 'active' ] ); //active
if ( $cmd == "edit_rule_save" ) {
( $active == "on" ) ? $active_tmp = 1 : $active_tmp = 0;
if ( $id == "new" )
$sql_query = "INSERT INTO sigs_to_block ( active, sig_name, src_or_dst,timeout )
VALUES ( '$active','$sig_name','$src_or_dst','$timeout' )";
else
$sql_query = "UPDATE sigs_to_block SET active='$active_tmp', sig_name='$sig_name', src_or_dst='$src_or_dst', timeout='$timeout' WHERE id=$id ;";
if ( !$result = $db_->query( $sql_query ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $sql_query )
else {
echo '<div class="alert alert-success"> <strong>OK Saved</strong> <i class="fa fa-refresh fa-spin"></i> Reloading... </div>';
}
exit;
} //$cmd == "edit_rule_save"
elseif ( $cmd == "save_rule_db" ) { // Save the update rules to DB
// echo "SAVE";
// var_dump($updates_rules);
foreach ( $updates_rules as $value ) {
$row_tmp = explode( '##', $value );
// echo $value;
$sql_query = "INSERT INTO sigs_to_block ( sig_name, src_or_dst,timeout )
VALUES ( '$row_tmp[0]','$row_tmp[1]','$row_tmp[2]' )";
echo $sql_query;
if ( !$result = $db_->query( $sql_query ) ) {
// die( 'There was an error running the query [' . $db_->error . ']' );
echo $db_->error;
} //!$result = $db_->query( $sql_query )
} //$updates_rules as $value
// echo show_rules_db();
exit;
} //$cmd == "save_rule_db"
elseif ( $cmd == "list_rule" ) {
// echo "HOLA";
echo show_active_rules_db();
exit;
} //$cmd == "list_rule"
elseif ( $cmd == "delete" ) {
if ( !$id )
return false;
$SQL = "DELETE FROM sigs_to_block WHERE id='$id' ;";
if ( !$result = $db_->query( $SQL ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $SQL )
mysqli_free_result( $result );
echo show_active_rules_db(); //show again the list rules
exit;
} //$cmd == "delete"
elseif ( $cmd == "add" ) {
echo show_form_edit_rule();
exit;
} //$cmd == "add"
elseif ( $cmd == "import_rule" ) { //import rule
echo show_form_edit_rule( NULL, $sid );
exit;
} //$cmd == "import_rule"
elseif ( $cmd == "edit" ) {
echo show_form_edit_rule( $id );
exit;
} //$cmd == "edit"
elseif ( $cmd == "update" ) {
echo get_update_rules();
exit;
} //$cmd == "update"
elseif ( $cmd == "dashboard" ) {
echo show_server_status();
echo show_dashboard();
exit;
} //$cmd == "dashboard"
elseif ( $cmd == "check_connect_router_API" ) {
echo check_connect_router_API();
exit;
} //$cmd == "check_connect_router_API"
elseif ( $cmd == "alerts_popular" ) {
if ( $search == "ALL" )
echo show_popular_alerts();
if ( $search )
echo show_popular_alerts( $search );
else
echo show_table_popular_alerts();
exit;
} //$cmd == "alerts_popular"
elseif ( $cmd == "view_event" ) {
echo show_table_ip_header( NULL, $cid );
exit;
} //$cmd == "view_event"
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rules Administrator For IPS MikroTik Suricata</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link href="a.css" rel="stylesheet" media="screen">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- jQuery -->
<script src="//code.jquery.com/jquery.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<nav class="navbar navbar-default navbar-fixed-top topbar">
<div class="container-fluid">
<div class="navbar-header">
<a href="#" class="navbar-brand">
<span class="visible-xs">RM</span>
<span class="hidden-xs">Rules Manager</span>
</a>
<p class="navbar-text">
<a href="#" class="sidebar-toggle">
<i class="fa fa-bars"></i>
</a>
</p>
</div>
</div>
</nav>
<article class="wrapper">
<aside class="sidebar">
<ul class="sidebar-nav">
<li><a onclick=" get_data('?c=dashboard','central');" href="#"><i class="fa fa-dashboard"></i> <span>Active Blocked Rules</span></a></li>
<!-- <li><a href="#" ><i class="fa fa-search"></i> <span>Events Viewer</span></a></li> -->
<li><a href="#" onclick="get_data('?c=alerts_popular','central');"><i class="fa fa-server"></i> <span>Popular Alerts</span></a></li>
<li><a href="#" onclick=" get_data('?c=list_rule','central'); "><i class="fa fa-exchange"></i> <span>Rules Editor & Update</span></a></li>
</ul>
</aside>
<section class="main">
<section class="tab-content">
<section class="tab-pane active fade in content">
<div id="central">
<?php
echo show_server_status();
echo show_dashboard();
?>
</div>
</section>
</section>
</section>
</article>
<script type="text/javascript">
function get_data(a,b){if(null==b)var c="central";else var c=b;$.get(a,function(a){""!=a&&$("#"+c).html(a)})}$(document).on("click",".sidebar-toggle",function(){$(".wrapper").toggleClass("toggled")}); $(function () { $("[rel='tooltip']").tooltip({html:true}); });
</script>
</body>
</html>
<?php
function show_tooltip( ) {
return ' <script type="text/javascript"> $(function () { $("[rel=\'tooltip\']").tooltip({html:true}); }); </script>';
}
function show_active_rules_db( ) {
global $db_;
$SQL = "SELECT * FROM sigs_to_block ORDER by sig_name LIMIT 200;";
if ( !$result = $db_->query( $SQL ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $SQL )
$count = $result->num_rows;
$str .= ' <div class="row">
<div class="col-xs-12 col-sm-9">
<div class="panel panel-default">
<div class="panel-heading">
Active Alerts Rules (' . $count . ') <a title="Add new rule" onclick="get_data(\'?c=add\',\'central\');" href="#" ><i class="fa fa-plus-circle"></i></a>
</div>
<div class="panel-body">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th></th> <th>Rule</th> <th>IP Block</th><th>Timeout</th><th></th>
</tr>
</thead>
<tbody> ';
while ( $row = $result->fetch_assoc() ) {
( $row[ 'active' ] ) ? $color_str = 'success' : $color_str = 'info';
$str .= '<tr><td><span class="label label-' . $color_str . '"><i class="fa fa-check"></i></span></td><td onclick="get_data(\'?c=edit&id=' . $row[ 'id' ] . '\',\'central\');" >' . $row[ 'sig_name' ] . '</td><td>' . $row[ 'src_or_dst' ] . '</td><td>' . $row[ 'timeout' ] . '</td><td> <a onclick="get_data(\'?c=edit&id=' . $row[ 'id' ] . '\',\'central\');" href=# > <i class="fa fa-edit"></i> </a> <a onclick="get_data(\'?c=delete&id=' . $row[ 'id' ] . '\',\'central\');" href=# > <i class="fa fa-trash"></i></a></td></tr>';
} //$row = $result->fetch_assoc()
$str .= '
</tbody>
</table>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3">
<div class="panel panel-default">
<div class="panel-heading">
Update Channel
</div>
<div class="panel-body">
<a href=# onclick="get_data(\'?c=update\',\'central\');" ><i class="fa fa-refresh"></i> Update Rules</a>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
MKE Solutions
</div>
<div class="panel-body">
Designed by <a href="http://maxid.com.ar" target="_blank">Maximiliano Dobladez</a></a>
</div>
</div>
</div>
</div>';
return $str;
}
function show_form_edit_rule( $id = NULL, $sid = NULL ) { //SID para importar regla
global $db_;
if ( !$id ) {
$new = true;
$str_input = '<input type=hidden name="id" value="new">';
} //!$id
else {
$SQL = "SELECT * FROM sigs_to_block WHERE id=$id LIMIT 1;";
if ( !$result = $db_->query( $SQL ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $SQL )
$row = $result->fetch_assoc();
$str_input = '<input type=hidden name="id" value="' . $id . '">';
$str_sig_name = 'value="' . $row[ sig_name ] . '"';
$str_src_or_dst = '<option value="' . $row[ src_or_dst ] . '" >' . $row[ src_or_dst ] . '</option>';
$str_timeout = 'value="' . $row[ timeout ] . '"';
( $row[ 'active' ] == 1 ) ? $str_active = "checked" : $str_active = '';
}
if ( $sid ) {
//get the info of signature
$info_signature = get_signature_info_db( $sid );
// //
// echo var_dump($info_signature);
// echo var_dump($info_header);
// $str.=show_table_ip_header($info_signature[cid]);
$str_input = '<input type=hidden name="id" value="new">';
$str_active = "checked"; //to active the option
$str .= '<script>
$(\'#name\').val(\'' . $info_signature[ sig_name ] . '\');
$("#helpBlock").html(\' <span class="help-block">Check the correct IP SOURCE o DESTINATION to block.</span>\');
</script>';
$str_sidebar = ' <div class="col-xs-12 col-sm-4">
' . show_table_ip_header( $sid ) . '
</div>';
} //$sid
$str .= '
<div class="col-xs-12 col-sm-8">
<div class="panel panel-default">
<div class="panel-heading">
</div>
<div class="panel-body">
<span id="show_result"></span>
<form class="form-horizontal" role="form" autocomplete=off method="post" id="edit" >
' . $str_input . '
<fieldset>
<legend>Add New Alert Rule</legend>
<div class="form-group">
<label class="col-sm-3 control-label" for="name">Name Alert</label>
<div class="col-sm-9">
<input type="text" class="form-control" required ' . $str_sig_name . ' name="sig_name" autofocus id="name" placeholder="Name Alert">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label" for="src_or_dst">Target IP to Block</label>
<div class="col-sm-6">
<select name="src_or_dst" id="src_or_dst" class="form-control">
' . $str_src_or_dst . '
<option value="src">src</option>
<option value="dst">dst</option>
</select>
<span id="helpBlock"></span>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label" for="timeout">Timeout </label>
<div class="col-sm-3">
<input type="text" class="form-control" ' . $str_timeout . ' name="timeout" value="01:00:00">
</div>
<div class="col-sm-2 ">
<label for="active">Active
<input type="checkbox" name="active" ' . $str_active . ' value=on id="active">
</label>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<a onclick="get_data(\'?c=list_rule\',\'central\');" class="btn btn-default btn-lg"><i class="fa fa-backward"></i> Back</a>
<button type="submit" id=save_btn class="btn btn-success btn-lg"><i class="fa fa-save"></i> Save</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
' . $str_sidebar . '
<script type="text/javascript">
$(document).ready(function() {
$(\'#save_btn\').click(function(e) {
var dataS = $(\'form#edit\').serialize();
e.preventDefault();
$.ajax({
type: "POST",
url: \'index.php?c=edit_rule_save\',
data: dataS,
success: function(data) {
$(\'#show_result\').html(data) ;
setTimeout("get_data(\'?c=list_rule\',\'central\')", 1000);
}
})
return false;
});
});
</script>
';
return $str;
}
/**
* [get_update_rules Get the last update rule from cloud]
* @return [type] [description]
*/
function get_update_rules( ) {
global $url_update_rules;
$update = file_get_contents( $url_update_rules );
$update_array = json_decode( $update, true );
$db_rules = get_rules_db();
// echo var_dump($db_rules);
// echo var_dump($update_array);
$str .= '<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Rules Update</h3>
</div>
<div class="panel-body">
<div class="col-md-10">
<form class="form-horizontal" role="form" autocomplete=off method="post" id="update_rules" >
';
foreach ( $update_array as $value ) {
// if ( array_search( $value[ sig_name ], array_column( $db_rules, 'sig_name' ) ) ) {
// if ( array_search_partial(array_column( $db_rules, 'sig_name' ), $value[ sig_name ] ) ) {
if ( partial_search_array_special( array_column( $db_rules, 'sig_name' ), $value[ sig_name ] ) ) {
$value_tmp = '';
} //partial_search_array_special( array_column( $db_rules, 'sig_name' ), $value[ sig_name ] )
else {
$value_tmp = "$value[sig_name]##$value[src_or_dst]##$value[timeout]";
$str .= "
<div class='form-group'> <label for='$value[sig_name]' >
<input type=checkbox checked name='updates_rules[]' value='$value_tmp'> $value[sig_name]
</label>
</div>";
//$str.="NUEVO ".$value[sig_name]."<br>";
}
} //$update_array as $value
$str .= ' <div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<a onclick="get_data(\'?c=list_rule\',\'central\');" class="btn btn-default btn-lg"><i class="fa fa-backward"></i> Back</a>
<button type="submit" id=save_btn class="btn btn-success btn-lg"><i class="fa fa-save"></i> Save</button>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(\'#save_btn\').click(function(e) {
var dataS = $(\'form#update_rules\').serialize();
e.preventDefault();
$.ajax({
type: "POST",
url: \'index.php?c=save_rule_db\',
data: dataS,
success: function(data) {
$(\'#show_result\').html(data) ;
setTimeout("get_data(\'?c=list_rule\',\'central\')", 1000);
}
})
return false;
});
});
</script>
';
$str .= '
</form>
<div>
</div>
</div>';
return $str;
}
/**
* [show_dashboard show welcome panel for stats]
* @return [type] [description]
*/
function show_dashboard( ) {
global $db_;
$SQL = "SELECT *,inet_ntoa(que_ip_adr) as ip FROM block_queue group by que_ip_adr order by que_event_timestamp desc LIMIT 50;";
if ( !$result = $db_->query( $SQL ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $SQL )
// $count = $result->num_rows;
$count = get_total_rules_active();
$str .= ' <div class="row">
<div class="col-xs-12 col-sm-7">
<div class="panel panel-default">
<div class="panel-heading">
Active Alert Blocked (' . $count . ') - Time: ' . date( "H:i:s", time() ) . '
</div>
<div class="panel-body" style=" max-height: 800px;
overflow:auto;">
<table class="table table-condensed table-hover" >
<thead>
<tr>
<th> <i class="fa fa-clock-o"></i> Time</th><th>IP Block</th> <th>Rule</th><th class="hidden-xs">SID</th><th class="hidden-xs">Action</th>
</tr>
</thead>
<tbody> ';
while ( $row = $result->fetch_assoc() ) {
$str .= '<tr><td> ' . format_fecha( $row[ 'que_event_timestamp' ] ) . '</td> <td>' . $row[ 'ip' ] . '</td><td >' . $row[ 'que_sig_name' ] . '</td><td class="hidden-xs"><a target=_blank rel=tooltip title="View Rule Alert" href=http://doc.emergingthreats.net/' . $row[ 'que_sig_sid' ] . '>' . $row[ 'que_sig_sid' ] . '</a></small></td><td class="hidden-xs">
<a id="view_event" target=_blank href=# data-cid="index.php?c=view_event&cid=' . $row[ 'que_event_cid' ] . '" title="View Event" rel="tooltip" ><i class="fa fa-eye"></i></a>
</small></td> </tr>';
} //$row = $result->fetch_assoc()
$str .= '
</tbody>
</table>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-5">
<div class="panel panel-default">
<div class="panel-heading">
Active Top Ten IP Attack
</div>
<div class="panel-body">
';
$str .= show_table_top_ten( 1 );
$str .= '
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
Active Top Ten Alert Rules
</div>
<div class="panel-body">
';
$str .= show_table_top_ten( 2 );
$str .= '
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
MKE Solutions
</div>
<div class="panel-body">
Designed by <a href="http://maxid.com.ar" target="_blank">Maximiliano Dobladez</a></a>
</div>
</div>
</div>
</div>
<div class="modal fade in slacker-modal" tabindex="-1" role="dialog" id="preview_event" aria-hidden="false">
<div class="modal-dialog modal-slacker">
<div class="modal-content">
<div class="modal-header">
<br><br> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" >Event Viewer </h4>
</div>
<div class="modal-body">
<div id="show_event"> </div>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
';
$str .= "<script>$('a#view_event').click(function(e){
var anchor = this;
$('#preview_event').modal({show:true});
$('#show_event').load($(anchor).attr('data-cid'));
return false;
});</script>";
return $str . show_tooltip();
}
/**
* [show_table_top_ten show tables with TOP TEN]
* @param string $type [description]
* @return [type] [description]
*/
function show_table_top_ten( $type = '1' ) {
global $db_;
if ( $type == "1" ) {
$sql_query = "SELECT inet_ntoa(que_ip_adr) as ip , count(*) as total FROM block_queue GROUP BY que_ip_adr
ORDER BY count(*) DESC LIMIT 10;";
$str_th = ' <th>Count</th> <th>IP Block</th> <th>Country</th>';
} //$type == "1"
else {
$sql_query = "SELECT que_sig_name,que_sig_sid ,count(*) as total FROM block_queue GROUP BY que_sig_name
ORDER BY count(*) DESC LIMIT 10;";
$str_th = ' <th>Count</th> <th>Alert</th> <th>Sid</th>';
}
if ( !$result = $db_->query( $sql_query ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $sql_query )
$count = $result->num_rows;
$str .= ' <table class="table table-condensed table-hover">
<thead>
<tr>
' . $str_th . '
</tr>
</thead>
<tbody> ';
while ( $row = $result->fetch_assoc() ) {
if ( $type == "1" ) {
$str .= '<tr><td><small class="label label-default">' . $row[ 'total' ] . '</small></td> <td ><small>' . $row[ 'ip' ] . '</small></td> <td ><small>' . geoip_country_name_by_name( $row[ 'ip' ] ) . '</small></td> </tr>';
} //$type == "1"
else {
$str .= '<tr><td><small class="label label-default">' . $row[ 'total' ] . '</small></td> <td ><small>' . $row[ 'que_sig_name' ] . '</small></td> <td ><small><a target=_blank rel=tooltip title="View Rule Alert" href=http://doc.emergingthreats.net/' . $row[ 'que_sig_sid' ] . '>' . $row[ 'que_sig_sid' ] . '</a></small></td> </tr>';
}
} //$row = $result->fetch_assoc()
$str .= '
</tbody>
</table>';
return $str . show_tooltip();
}
function show_server_status( ) {
$data = obtiene_server_status();
// echo var_dump($data);
$str .= ' <div class="row">
<div class="col-xs-12 col-sm-6">
<div class="panel panel-primary">
<div class="panel-body">
<i class="fa fa-square"></i> Uptime <strong class="lead">' . $data[ server_uptime ] . '</strong>
<i class="fa fa-square"></i> Load Avr: <strong class="lead">' . $data[ loadAvg ] . '</strong>
<i class="fa fa-square"></i> MEM Free: <strong class="lead">' . $data[ memPercent ] . '%</strong>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="panel panel-primary">
<div class="panel-body">
<strong> Suricata IDS: </strong><span class="lead">' . check_service_running( 'ids' ) . ' </span>
<strong> DB Daemon: </strong> <span class="lead">' . check_service_running( 'db' ) . ' </span>
<strong> IPS Daemon: </strong> <span class="lead">' . check_service_running( 'ips' ) . ' </span>
<strong> Snorby: </strong> <span class="lead">' . check_service_running( 'snorby' ) . ' </span>
<strong> API: </strong> <span class="lead" id="check_connect_router_API"> <i class="fa fa-refresh fa-spin"></i> </span>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){return $.ajax({type:"POST",url:"index.php?c=check_connect_router_API",success:function(a){$("#check_connect_router_API").html(a)}}),!1});
</script>
</div>';
return $str;
}
/**
* [show_popular_alerts Get popular alerts of today]
* @return [type] [description]
*/
function show_popular_alerts( $s = NULL ) {
global $db_;
if ( isset( $s ) )
$str_sql = "and s.sig_name like '%ET $s%' ";
$SQL = "select sig_sid,sig_id, sig_name as sig_name,count(*) as total from signature as s, event as e where s.sig_id=e.signature and date(e.timestamp)=date(now()) $str_sql group by sig_name order by total desc limit 300;";
if ( !$result = $db_->query( $SQL ) ) {
die( 'There was an error running the query [' . $db_->error . ']' );
} //!$result = $db_->query( $SQL )
$count = $result->num_rows;
//get the actual alert to block
$alert_to_block = get_rules_db();
$str .= ' <div class="panel-body">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th>SID / ID</th> <th>Rule</th> <th>Total Alerts</th><th></th>
</tr>
</thead>
<tbody> ';
while ( $row = $result->fetch_assoc() ) {
if ( partial_search_array_special( array_column( $alert_to_block, 'sig_name' ), $row[ sig_name ] ) ) {
$str_tr_color = "class='' ";
$str_action_tmp = "";
} //partial_search_array_special( array_column( $alert_to_block, 'sig_name' ), $row[ sig_name ] )
else {
$str_tr_color = "class='warning' title='No Match with actual rules' rel=tooltip ";
$str_action_tmp = ' <a onclick="get_data(\'?c=import_rule&sid=' . $row[ 'sig_sid' ] . '\',\'central\');" href=# > <i class="fa fa-plus"></i> </a> ';
}
$str .= '<tr ' . $str_tr_color . '> <td><a target=_blank href=http://doc.emergingthreats.net/' . $row[ 'sig_sid' ] . '>' . $row[ 'sig_sid' ] . '</a> / ' . $row[ 'sig_id' ] . ' ' . '</td> <td>' . $row[ 'sig_name' ] . '</td> <td>' . $row[ 'total' ] . '</td><td>' . $str_action_tmp . '</td></tr>';
} //$row = $result->fetch_assoc()
$str .= '
</tbody>
</table>
</div>';
return $str;
}
function show_table_popular_alerts( $s = NULL ) {
$str .= ' <div class="row">
<div class="col-xs-12 col-sm-9">
<div class="panel panel-default">
<div class="panel-heading">
Today Total Alerts - Most Active
<select onchange="get_data(\'?c=alerts_popular&s=\'+this.value,\'table_alerts\')">
<option value="ALL">ALL</option>
<option value="DOS">DOS</option>
<option value="VOIP">VOIP</option>
<option value="SCAN">SCAN</option>
<option value="TROJAN">TROJAN</option>
<option value="MALWARE">MALWARE</option>
<option value="DROP">DROP</option>
<option value="CINS">CINS</option>
<option value="COMPROMISED">COMPROMISED</option>
<option value="POLICY">POLICY</option>
<option value="COMPROMISED">COMPROMISED</option>
</select>
</div>
<span id="table_alerts"> ' . show_popular_alerts( $s ) . '</span>
</div>
</div>
<div class="col-xs-12 col-sm-3">
</div>
</div>';
return $str;
}
function show_table_ip_header( $sid = NULL, $cid = NULL ) {
if ( !$sid ) {
$cid_tmp = $cid;
} //!$sid
else {
$info_signature = get_signature_info_db( $sid );
$cid_tmp = $info_signature[ 'cid' ];
$str_th_name = ' <tr><th colspan="5">Name: <span class="text-center lead"> ' . $info_signature[ 'sig_name' ] . '</span></th></tr>';
}
$row = get_header_info_db( $cid_tmp );
// echo var_dump($info_signature);
// echo var_dump($row);
if ( $row[ 'port' ][ 'udp_sport' ] ) {
$protocol = "UDP";
$port_src = $row[ 'port' ][ 'udp_sport' ];
$port_dst = $row[ 'port' ][ 'udp_dport' ];
} //$row[ 'port' ][ 'udp_sport' ]
else {
$protocol = "TCP";
$port_src = $row[ 'port' ][ 'tcp_sport' ];
$port_dst = $row[ 'port' ][ 'tcp_dport' ];
}
$str .= '<div class="well table-responsive">
<table class="table table-hover table-condensed">
<thead>
' . $str_th_name . '
<tr>
<th>Protocol</th> <th>IP Source</th> <th>Port Src</th> <th>IP Destination</th> <th>Port Dst</th>
</tr>
</thead>
<tbody>
<tr>
<td>' . $protocol . '</td> <td>' . $row[ 'packet' ][ 'ip_src' ] . '</td> <td>' . $port_src . '</td> <td>' . $row[ 'packet' ][ 'ip_dst' ] . '</td> <td>' . $port_dst . '</td>
</tr>
</tbody>
</table>
</div>';
return $str;
}
?>