Regalamiunsorriso/www/admin/menu/blacklist.jsp
2026-04-07 18:02:17 +02:00

159 lines
5.4 KiB
Text

<!DOCTYPE html>
<!-- blacklist.jsp V.jsp 05-10-2021 -->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Acxent - You've been Blacklisted! 4.0.0</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.5 -->
<link rel="stylesheet" href="https://tr.acxent.it/admin/_V4/_lte/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="https://tr.acxent.it/admin/_V4/_lte/dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="https://tr.acxent.it/admin/_V4/_lte/dist/css/skins/_all-skins.min.css">
<!-- acxent -->
<link rel="stylesheet" href="https://tr.acxent.it/admin/_V4/_lte/_css/acxentLte.css">
<!-- 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/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<jsp:useBean id="msg" class="java.lang.String" type="java.lang.String" scope="request" >
</jsp:useBean>
<jsp:useBean id="bean" scope="request" class="it.acxent.common.Blacklist" type="it.acxent.common.Blacklist">
</jsp:useBean>
</head>
<!-- ADD THE CLASS layout-top-nav TO REMOVE THE SIDEBAR. -->
<body class="hold-transition skin-blue layout-top-nav">
<div class="wrapper">
<header class="main-header">
<nav class="navbar navbar-static-top">
<div class="container">
<div class="navbar-header"> <a href="www.acxent.it" class="navbar-brand"><b>Acxent S.r.l.</b></a> </div>
<span class="titolo-applicazione hidden-xs pull-right"> Blacklist 4.0.0</span> </div>
<!-- /.container-fluid -->
</nav>
</header>
<!-- Full Width Column -->
<div class="content-wrapper">
<div class="container">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1> Your ip is blacklisted</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-lg-12">
<div class="box box-dettaglio table-responsive">
<div class="box-body">
<table class="table table-bordered table-hover table-striped dataTable">
<tr>
<td ><b>Your ip:</b></td>
<td colspan="2"><%= bean.getIpAddress() %></td>
</tr>
<tr>
<td><b>Create Timestamp</b></td>
<td colspan="2"><%= bean.getCreateTmst() %></td>
</tr>
<tr>
<td><b>Reason</b></td>
<td colspan="2"><%= bean.getDescrizione() %></td>
</tr>
<tr>
<td><strong>Long description</strong><b>:</b></td>
<td colspan="2"><%= bean.getNotaBlacklist() %></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<!-- /.box -->
</section>
<!-- /.content -->
</div>
<!-- /.container -->
</div>
<!-- /.content-wrapper -->
<footer class="main-footer">
<div class="container">
<div class="pull-right hidden-xs"> <b>Version</b> 4.0.0 </div>
<strong>Copyright &copy; 2025 <a href="http://www.acxent.it">Acxent S.r.l.</a></strong></div>
<!-- /.container -->
</footer>
</div>
<script language="JavaScript" type="text/javascript">
function refresh()
{
var f= document.menu;
f.act.value="";
f.wa.value="";
f.waName.value="";
f.submit();
}
function gc()
{
var f= document.menu;
f.act.value="gc";
f.wa.value="";
f.waName.value="";
f.submit();
}
function rh()
{
if(confirm("Le Hash table verranno resettate. Sei sicuro?"))
{
var f= document.menu;
f.act.value="rh";
f.wa.value="";
f.waName.value="";
f.submit();
}
}
function ru()
{
if(confirm("Le connessioni usate verranno resettate. Sei sicuro?"))
{
var f= document.menu;
f.act.value="ru";
f.wa.value="";
f.waName.value="";
f.submit();
}
}
function rhO(key,name)
{
var f= document.menu;
f.act.value="ro";
f.wa.value=key;
f.waName.value=name;
f.submit();
}
</script>
<!-- jQuery 2.1.4 -->
<script src="https://www.acxent.it/admin/_V4/_lte/plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- Bootstrap 3.3.5 -->
<script src="https://www.acxent.it/admin/_V4/_lte/bootstrap/js/bootstrap.min.js"></script>
<!-- SlimScroll -->
<script src="https://www.acxent.it/admin/_V4/_lte/plugins/slimScroll/jquery.slimscroll.min.js"></script>
<!-- FastClick -->
<script src="https://www.acxent.it/admin/_V4/_lte/plugins/fastclick/fastclick.min.js"></script>
<!-- AdminLTE App -->
<script src="https://www.acxent.it/admin/_V4/_lte/dist/js/app.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="https://www.acxent.it/admin/_V4/_lte/dist/js/demo.js"></script>
</body>
</html>