send_mail(configuration) def send_mail(configuration): msg = MIMEText(configuration['body']) msg["From"] = configuration['from'] msg["To"] = configuration['to'] msg["Subject"] = configuration['subject'] p = Popen(["/usr/sbin/sendmail", "-t", "-oi"], stdin=PIPE) p.communicate(msg.as_string()) if __name__ == "__main__": main()
for subprocess import Popen sets = {"on", "sideband",'set1','set2','set3','set4','set5'} for process in sets: command = ['python', 'gpvm_datamc_{}.py'.format(process)] log = open('./output/nue/datamc/{}.txt'.format(process), 'w') result = Popen(command, stdout=log, stderr=log)
def __init__(self): Popen.send_signal(signal.SIGINT)
while(1): #wait a minute time.sleep(60) currentCount = collection.find({'to_download': 1}).count() print "Time : %s" % time.ctime() if firstCount < currentCount: print 'Tweets Collector working correctly' auxTweets = 0 else: if auxTweets > 5: print '----------------Failed Tweets Collector---------------------' #run de script to both TweetsCollector try: #subprocess.call(['./start_sophiacollectorTweets.sh']) os.system('pkill -f SophiaCollector/SophiaCollectorTweets_v27012017.jar') p = Popen(['./start_sophiacollectorTweets.sh']) except Exception as e: print e else: auxTweets += 1 if firstCount > currentCount: print 'Articles Collector working correctly' auxArticles = 0 else: if auxArticles > 4: print '----------------Failed Articles Collector-------------------' ##run de script to both ArticlesCollector try: #subprocess.call(['./start_sophiacollector.sh']) os.system('pkill -f SophiaCollector/SophiaCollectorArticles_v27012017.jar') p = Popen(['./start_sophiacollector.sh'])
# textproc/html5-tidy doesn't provide a 'tidy' binary # and BINARY_ALIAS doesn't work at test: time # TODO: Ask upstream to support a TIDY_BIN variable --- tests/utils.py.orig 2019-09-06 11:18:46 UTC +++ tests/utils.py @@ -5,7 +5,7 @@ from subprocess import Popen, PIPE, STDOUT def clean_html(dirty_html): input_html = dirty_html.encode('utf-8') - p = Popen(['tidy', '--show-body-only', '1', '--quiet', '1', '--show-warnings', '0', '-utf8'], + p = Popen(['tidy5', '--show-body-only', '1', '--quiet', '1', '--show-warnings', '0', '-utf8'], stdout=PIPE, stdin=PIPE, stderr=STDOUT) stdout, stderr = p.communicate(input=input_html)
#!/usr/bin/python import logginglogging.getLogger("scapy.runtime").setLevel(logging.ERROR)from scapy.all import *conf.verb = 0import argparseimport sysimport signalimport threadingimport datetimefrom subprocess import Popen, PIPEDN = open(os.devnull, 'w') parser = argparse.ArgumentParser()parser.add_argument("-j", "--join", help="Show all devices that join the network and when they did it (goes by DHCP packets)", action="store_true")args = parser.parse_args() #Console colorsW = '\033[0m' # white (normal)R = '\033[31m' # redG = '\033[32m' # greenO = '\033[33m' # orangeB = '\033[34m' # blueP = '\033[35m' # purpleC = '\033[36m' # cyanGR = '\033[37m' # grayT = '\033[93m' # tan ipr = Popen(['ip', 'route'], stdout=PIPE, stderr=DN)ipr = ipr.communicate()[0]routerRE = re.search('default via ((\d{2,3}\.\d{1,3}\.\d{1,4}\.)\d{1,3}) \w+ (\w+)', ipr)routerIP = routerRE.group(1)IPprefix = routerRE.group(2)interface = routerRE.group(3)localIP = [x[4] for x in scapy.all.conf.route.routes if x[2] != '0.0.0.0'][0]localMAC = get_if_hwaddr(interface)IPandMAC = []wired = 0new_clients = []start_time = time.time()current_time = 0 print '[+] Running arp scan'ans,unans = arping(IPprefix+'*', timeout=5)for s,r in ans: hw = r[ARP].hwsrc ip = r[ARP].psrc IPandMAC.append([hw, ip, 0, 0, 0, 0]) # data, req2send, clear2send, ack or block ack t = 0for x in IPandMAC: if routerIP in x[1]: routerMAC = x[0] t = 1 breakif t == 0: sys.exit('Router MAC not found') #Do nbtscan for windows netbios namesprint '[+] Running nbtscan'try: nbt = Popen(['nbtscan', IPprefix+'0/24'], stdout=PIPE, stderr=DN) nbt = nbt.communicate()[0] nbt = nbt.splitlines()except: print '[-] nbtscan error, are you sure it is installed?'if len(nbt) < 5: print '[-] nbtscan failed'for l in nbt: if l.startswith(IPprefix): ip_name = re.search('(\d{2,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s+(\w+)', l) try: nbtip = ip_name.group(1) except: continue try: netbios = ip_name.group(2) except: continue for a in IPandMAC: if nbtip and netbios: if 'Sendto' not in netbios: if nbtip in a: a.append(netbios) #Start monitor modeprint '\n[+] Enabling monitor mode'try: promisc = Popen(['airmon-ng', 'start', '%s' % interface], stdout=PIPE, stderr=DN) promisc = promisc.communicate()[0] monmode = re.search('monitor mode enabled on (.+)\)', promisc) monmode = monmode.group(1)except OSError, e: sys.exit('[-] Enabling monitor mode failed, do you have aircrack-ng installed?') def newclients(pkt): global IPandMAC newIP = '' newMAC = '' if pkt.haslayer(DHCP): #Check for message-type == 3 which is the second request the client makes if pkt[DHCP].options[0][1] == 3: opt = pkt[DHCP].options for x in opt: if "requested_addr" in repr(x): newIP = x[1] newMAC = pkt[Ether].src if newIP != '' and newMAC != '': tstamp = datetime.datetime.fromtimestamp(time.time()).strftime('%Y-%m-%d %H:%M:%S') new_clients.append('[%s] %s at %s joined the network' % (tstamp, newMAC, newIP)) for y in IPandMAC: if newIP == y[1]: return IPandMAC.append([newMAC, newIP, 0, 0, 0, 0, 0]) if pkt.haslayer(ARP): if pkt[ARP].op == 2: for x in IPandMAC: if pkt[ARP].hwsrc == x[0]: return newIP = pkt[ARP].psrc newMAC = pkt[ARP].hwsrc IPandMAC.append([newMAC, newIP, 0, 0, 0, 0, 0]) new_clients.append("Added %s to list due to arp is-at, may've not been caught by initial arp scan" % newIP) class newDevices(threading.Thread): def run(self): sniff(store=0, filter='port 67 or 68', prn=newclients, iface=interface) nd = newDevices()nd.daemon = Truend.start() def main(pkt): global start_time, current_time #type 2 is Data, type 0 is Management which is auth/deauth stuff, type 1 is control which is ACKs, request to sent, clear to send stuff if pkt.haslayer(Dot11): pkt = pkt[Dot11] if pkt.type in [1,2]: dstMAC = pkt.addr1 srcMAC = pkt.addr2 # usually the router srcMAC2 = pkt.addr3 # if it's comp1 > router > comp2 then this is comp1 if localMAC in [dstMAC, srcMAC, srcMAC2]: return ptype = pkt.type subtype = pkt.subtype for x in IPandMAC: if srcMAC == x[0] or dstMAC == x[0] or srcMAC2 == x[0]: if ptype == 1: # control if subtype == 9 or subtype == 13: # block acknowledgement or acknowledgement x[5] = x[5]+1 elif subtype == 11: # request to send x[3] = x[3]+1 elif subtype == 12: # clear to send x[4] = x[4]+1 elif ptype == 2: # data x[2] = x[2]+1 current_time = time.time() if current_time > start_time+1: IPandMAC.sort(key=lambda x: float(x[2]), reverse=True) # sort by data packets os.system('clear') print ' '+GR+'%d'%len(IPandMAC)+W+' clients '+R+'Data '+G+'Control Frame'+W print ' MAC IP '+G+' Req Clear Acks '+W for x in IPandMAC: if x[2] != 0 or x[3] != 0 or x[4] != 0 or x[5] != 0: if routerIP in x: print '[+] %s %-15s'%(x[0],x[1])+R+' %7d'%x[2]+G+' %7d %7d %7d' % (x[3], x[4], x[5])+GR+' (router)'+W elif len(x) == 7: print '[+] %s %-15s'%(x[0],x[1])+R+' %7d'%x[2]+G+' %7d %7d %7d' % (x[3], x[4], x[5])+W+' %s' % x[6] else: print '[+] %s %-15s'%(x[0],x[1])+R+' %7d'%x[2]+G+' %7d %7d %7d' % (x[3], x[4], x[5])+ W print '' if args.join: for x in new_clients: print x start_time = time.time() def signal_handler(signal, frame): print 'leaning up...' Popen(['airmon-ng', 'stop', '%s' % monmode], stdout=PIPE, stderr=DN) #arp tables seem to get messed up when starting and stopping monitor mode so this heals the arp tables print 'Restoring arp table...' Popen(['arp', '-s', routerIP, routerMAC], stdout=PIPE, stderr=DN) sys.exit(0) signal.signal(signal.SIGINT, signal_handler) try: sniff(iface=monmode, prn=main, store=0)except socket.error, (value, message): print messageexcept: raise
- 'third_party/rapidyaml/rapidyaml/ext/c4core/src/c4/error.o', - 'third_party/rapidyaml/rapidyaml/src/c4/yml/parse.o', - 'third_party/rapidyaml/rapidyaml/src/c4/yml/preprocess.o', - 'third_party/rapidyaml/rapidyaml/src/c4/yml/common.o', - 'third_party/rapidyaml/rapidyaml/src/c4/yml/tree.o', -] MODULE_SOURCES = ['python/_jsonnet.c'] @@ -60,19 +36,10 @@ def get_version(): v_code = v_code[1:] return v_code -class BuildJsonnetExt(BuildExt): - def run(self): - p = Popen(['make'] + LIB_OBJECTS, cwd=DIR) - p.wait() - if p.returncode != 0: - raise Exception('Could not build %s' % (', '.join(LIB_OBJECTS))) - BuildExt.run(self) - jsonnet_ext = Extension( '_jsonnet', sources=MODULE_SOURCES, - extra_objects=LIB_OBJECTS, - include_dirs = ['include'], + libraries = ['jsonnet'], language='c++' ) @@ -83,9 +50,6 @@ setup(name='jsonnet',
#!/usr/bin/env python### multi-connection tcp server# stripped from Intersect Framework## import os, sysimport socketimport timefrom subprocess import Popen,PIPE,STDOUT,call def reaper(): while activePID: pid,stat = os.waitpid(0, os.WNOHANG) if not pid: break activePID.remove(pid) def handler(connection): while True: cmd = connection.recv(socksize) proc = Popen(cmd, shell=True, stdout=PIPE, stderr=PIPE, stdin=PIPE, ) stdout, stderr = proc.communicate() if cmd.startswith('cd'): try: destination = cmd[3:].replace('\n','') if os.path.isdir(destination): os.chdir(destination) current = os.getcwd() connection.send("[*] %s" % current) else: connection.send("[!] Directory does not exist") except IndexError: pass elif cmd == (":quit"): connection.close() os._exit(0) sys.exit(0) elif proc: connection.send( stdout ) connection.send("[shell] => ") connection.close() os._exit(0) def accept(): while 1: global connection connection, address = conn.accept() connection.send("[shell] => ") reaper() childPid = os.fork() if childPid == 0: handler(connection) else: activePID.append(childPid) socksize = 4096activePID = []try: host, port = sys.argv[1], int(sys.argv[2]) conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM) conn.bind((host, port)) conn.listen(5) accept()except: print("usage: ./multi.py <host> <port>") sys.exit(1)
def get_cpu_temperature(): process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE) output, _error = process.communicate() return float(output[output.index('=') + 1:output.rindex("'")])