mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
1379ef705a
AIL is a modular framework to analyse potential information leak from unstructured data source like pastes from Past ebin or similar services. AIL framework is flexible and can be extended to support other functionalities to mine sen sitive information
43 lines
1 KiB
Python
Executable file
43 lines
1 KiB
Python
Executable file
#!/usr/bin/env python2
|
|
# -*-coding:UTF-8 -*
|
|
|
|
import redis, zmq, ConfigParser
|
|
from packages import Paste as P
|
|
from packages import ZMQ_PubSub
|
|
from pubsublogger import publisher
|
|
|
|
configfile = './packages/config.cfg'
|
|
|
|
def main():
|
|
"""Main Function"""
|
|
|
|
# CONFIG #
|
|
cfg = ConfigParser.ConfigParser()
|
|
cfg.read(configfile)
|
|
|
|
# REDIS #
|
|
r_serv = redis.StrictRedis(
|
|
host = cfg.get("Redis_default", "host"),
|
|
port = cfg.getint("Redis_default", "port"),
|
|
db = args.db)
|
|
|
|
p_serv = r_serv.pipeline(False)
|
|
|
|
# LOGGING #
|
|
publisher.channel = "Script"
|
|
|
|
# ZMQ #
|
|
channel = cfg.get("PubSub_Longlines", "channel_0")
|
|
Sub = ZMQ_PubSub.ZMQSub(configfile, "PubSub_Longlines", channel)
|
|
|
|
# FUNCTIONS #
|
|
publisher.info("Longlines ubscribed to channel {0}".format(cfg.get("PubSub_Longlines", "channel_0")))
|
|
|
|
while True:
|
|
PST = P.Paste(Sub.get_message().split(" ", -1)[-1])
|
|
r_serv.sadd("Longlines", PST.p_mime)
|
|
PST.save_in_redis(r_serv, PST.p_mime)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|