2014-09-19 14:03:05 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# This file is part of AIL framework - Analysis Information Leak framework
|
|
|
|
#
|
|
|
|
# This a simple feeder script feeding data from pystemon to AIL.
|
|
|
|
#
|
|
|
|
# Don't forget to set your pystemonpath and ensure that the
|
|
|
|
# configuration matches this script. Default is Redis DB 10.
|
|
|
|
#
|
|
|
|
# https://github.com/cvandeplas/pystemon/blob/master/pystemon.yaml#L16
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014 Alexandre Dulaunoy - a@foo.be
|
|
|
|
|
|
|
|
|
|
|
|
import zmq
|
|
|
|
import random
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import redis
|
|
|
|
import base64
|
2017-01-10 18:18:55 +01:00
|
|
|
import os
|
|
|
|
import ConfigParser
|
2014-09-19 14:03:05 +02:00
|
|
|
|
2017-01-10 18:18:55 +01:00
|
|
|
configfile = os.path.join(os.environ['AIL_BIN'], 'packages/config.cfg')
|
|
|
|
if not os.path.exists(configfile):
|
|
|
|
raise Exception('Unable to find the configuration file. \
|
|
|
|
Did you set environment variables? \
|
|
|
|
Or activate the virtualenv.')
|
|
|
|
|
|
|
|
cfg = ConfigParser.ConfigParser()
|
|
|
|
cfg.read(configfile)
|
|
|
|
|
2017-01-13 14:54:43 +01:00
|
|
|
if cfg.has_option("ZMQ_Global", "bind"):
|
|
|
|
zmq_url = cfg.get("ZMQ_Global", "bind")
|
|
|
|
else:
|
|
|
|
zmq_url = "tcp://127.0.0.1:5556"
|
|
|
|
|
2017-01-10 18:18:55 +01:00
|
|
|
pystemonpath = cfg.get("Directories", "pystemonpath")
|
2018-01-15 17:45:13 +01:00
|
|
|
base_sleeptime = 0.01
|
|
|
|
sleep_inc = 0
|
2014-09-19 14:03:05 +02:00
|
|
|
|
|
|
|
context = zmq.Context()
|
|
|
|
socket = context.socket(zmq.PUB)
|
2017-01-10 18:18:55 +01:00
|
|
|
socket.bind(zmq_url)
|
2014-09-19 14:03:05 +02:00
|
|
|
|
|
|
|
# check https://github.com/cvandeplas/pystemon/blob/master/pystemon.yaml#L16
|
|
|
|
r = redis.StrictRedis(host='localhost', db=10)
|
|
|
|
|
|
|
|
# 101 pastes processed feed
|
|
|
|
# 102 raw pastes feed
|
|
|
|
|
|
|
|
while True:
|
2018-01-15 17:45:13 +01:00
|
|
|
time.sleep(base_sleeptime + sleep_inc)
|
2014-09-19 14:03:05 +02:00
|
|
|
topic = 101
|
|
|
|
paste = r.lpop("pastes")
|
|
|
|
if paste is None:
|
|
|
|
continue
|
|
|
|
socket.send("%d %s" % (topic, paste))
|
|
|
|
topic = 102
|
2018-01-15 17:10:03 +01:00
|
|
|
try:
|
|
|
|
messagedata = open(pystemonpath+paste).read()
|
|
|
|
socket.send("%d %s %s" % (topic, paste, base64.b64encode(messagedata)))
|
2018-01-15 17:45:13 +01:00
|
|
|
sleep_inc = sleep_inc-0.01 if sleep_inc-0.01 > 0 else 0
|
2018-01-15 17:10:03 +01:00
|
|
|
except IOError as e:
|
2018-01-15 17:45:13 +01:00
|
|
|
# file not found, could be a buffering issue -> increase sleeping time
|
|
|
|
print('IOError: Increasing sleep time')
|
|
|
|
sleep_inc += 0.5
|
2018-01-15 17:10:03 +01:00
|
|
|
continue
|