mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
#!/usr/bin/env python3
 | 
						|
# -*-coding:UTF-8 -*
 | 
						|
 | 
						|
import redis
 | 
						|
import argparse
 | 
						|
import configparser
 | 
						|
import time
 | 
						|
import os
 | 
						|
from pubsublogger import publisher
 | 
						|
import texttable
 | 
						|
 | 
						|
 | 
						|
def main():
 | 
						|
    """Main Function"""
 | 
						|
 | 
						|
    # CONFIG #
 | 
						|
    cfg = configparser.ConfigParser()
 | 
						|
    cfg.read('./packages/config.cfg')
 | 
						|
 | 
						|
    # SCRIPT PARSER #
 | 
						|
    parser = argparse.ArgumentParser(
 | 
						|
        description='''This script is a part of the Assisted Information Leak framework.''',
 | 
						|
        epilog='''''')
 | 
						|
 | 
						|
    parser.add_argument('-db', type=int, default=0,
 | 
						|
                        help='The name of the Redis DB (default 0)',
 | 
						|
                        choices=[0, 1, 2, 3, 4], action='store')
 | 
						|
 | 
						|
    # REDIS #
 | 
						|
    r_serv = redis.StrictRedis(
 | 
						|
        host=cfg.get("Redis_Queues", "host"),
 | 
						|
        port=cfg.getint("Redis_Queues", "port"),
 | 
						|
        db=cfg.getint("Redis_Queues", "db"),
 | 
						|
        decode_responses=True)
 | 
						|
 | 
						|
    # LOGGING #
 | 
						|
    publisher.port = 6380
 | 
						|
    publisher.channel = "Queuing"
 | 
						|
 | 
						|
    while True:
 | 
						|
        table = texttable.Texttable()
 | 
						|
        table.header(["Queue name", "#Items"])
 | 
						|
        row = []
 | 
						|
        for queue in r_serv.smembers("queues"):
 | 
						|
            current = r_serv.llen(queue)
 | 
						|
            current = current - r_serv.llen(queue)
 | 
						|
            row.append((queue, r_serv.llen(queue)))
 | 
						|
 | 
						|
        time.sleep(0.5)
 | 
						|
        row.sort()
 | 
						|
        table.add_rows(row, header=False)
 | 
						|
        os.system('clear')
 | 
						|
        print(table.draw())
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    main()
 |