mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	<!DOCTYPE html>
 | 
						|
	<html>
 | 
						|
 | 
						|
	<head>
 | 
						|
	  <meta charset="utf-8">
 | 
						|
	  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
 | 
						|
	  <title>Analysis Information Leak framework Dashboard</title>
 | 
						|
 | 
						|
	  <!-- Core CSS -->
 | 
						|
	  <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
 | 
						|
	  <link href="{{ url_for('static', filename='font-awesome/css/font-awesome.css') }}" rel="stylesheet">
 | 
						|
	  <link href="{{ url_for('static', filename='css/sb-admin-2.css') }}" rel="stylesheet">
 | 
						|
	  <link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
 | 
						|
	  <!-- JS -->
 | 
						|
	  <script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
 | 
						|
	  <script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
 | 
						|
          <script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
 | 
						|
          <script src="{{ url_for('static', filename='js/jquery.flot.pie.js') }}"></script>
 | 
						|
          <script src="{{ url_for('static', filename='js/jquery.flot.time.js') }}"></script>
 | 
						|
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
 | 
						|
            {% include 'navbar.html' %}
 | 
						|
 | 
						|
        <div id="page-wrapper">
 | 
						|
           </br>
 | 
						|
           {% include 'trending_graphs/Moduletrending.html' %}
 | 
						|
        </div>
 | 
						|
        <!-- /#page-wrapper -->
 | 
						|
 | 
						|
        <script>
 | 
						|
            var chart_1_num_day = 5;
 | 
						|
            var chart_2_num_day = 15;
 | 
						|
            $SCRIPT_ROOT = {{ request.script_root|tojson|safe }};
 | 
						|
        </script>
 | 
						|
 | 
						|
        <script src="{{ url_for('static', filename='js/moduleTrending.js') }}"></script>
 | 
						|
        <script>
 | 
						|
            $(document).ready(function(){
 | 
						|
                activePage = "page-modulestats"
 | 
						|
                $("#"+activePage).addClass("active");
 | 
						|
 | 
						|
                $("[align]").css({padding: "2px", width: 'auto', 'background': "rgba(102, 102, 102, 0.15)" , 'border': "3px solid rgb(102, 102, 102)"})
 | 
						|
 | 
						|
               refreshPlot(true); 
 | 
						|
            });
 | 
						|
 | 
						|
            function refreshPlot(init){
 | 
						|
                refreshAnimation();
 | 
						|
 | 
						|
                plot_top_graph("credential", init);
 | 
						|
                plot_top_graph("mail", init);
 | 
						|
                plot_top_graph("size", init);
 | 
						|
                plot_top_graph("num", init);
 | 
						|
 | 
						|
                setTimeout(function(){ refreshPlot(false); }, 10000);
 | 
						|
            }
 | 
						|
 | 
						|
            function refreshAnimation(){
 | 
						|
                $("[flash]").css('color', '#fece00');
 | 
						|
                setTimeout(function() { $("[flash]").css('color', 'black'); }, 1000);
 | 
						|
            }
 | 
						|
        </script>
 | 
						|
        
 | 
						|
    </div>
 | 
						|
    <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |