This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Standard Master/Slave design in mpi4py, collects results in a list and pickles them to a file. | |
""" | |
import ROOT | |
from mpi4py import MPI | |
import sys | |
import cPickle as pick | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Usage: | |
# Make sure this script is executable (chmod +x) and then use it in place of | |
# 'python' when submitting batch jobs or on 64-bit machines. | |
# | |
# If it is in your path (for example in your ~/bin directory and ~/bin is in your path), you | |
# can simply put: | |
# | |
# #!/usr/bin/env wrap_python.sh | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
""" | |
Author: takeshix <[email protected]> | |
PoC code for CVE-2014-0160. Original PoC by Jared Stafford ([email protected]). | |
Supportes all versions of TLS and has STARTTLS support for SMTP,POP3,IMAP,FTP and XMPP. | |
""" | |
import sys,struct,socket | |
from argparse import ArgumentParser |