Advertisement
androxgh0st

nobc.py

Jul 22nd, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #!/bin/python
  2. from subprocess import Popen, PIPE, STDOUT
  3. from sys import argv
  4.  
  5. p = Popen(['/usr/bin/spawn'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)
  6. output = p.communicate(argv[1])[0]
  7. print output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement