MCPcopy
hub / github.com/Gallopsled/pwntools / communicate

Method communicate

pwnlib/tubes/process.py:700–706  ·  view source on GitHub ↗

communicate(stdin = None) -> str Calls :meth:`subprocess.Popen.communicate` method on the process.

(self, stdin = None)

Source from the content-addressed store, hash-verified

698 return returncode
699
700 def communicate(self, stdin = None):
701 """communicate(stdin = None) -> str
702
703 Calls :meth:`subprocess.Popen.communicate` method on the process.
704 """
705
706 return self.proc.communicate(stdin)
707
708 # Implementation of the methods required for tube
709 def recv_raw(self, numb):

Callers 2

_runFunction · 0.80
run_in_new_terminalFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected