Python/0x19-android1 간단한 자동명령 수행 간단한 자동명령 수행참조: 스마트폰에 원하는 파일 자동 업로드참조: pwntools install 및 Getting Started(ftp 접속) 1.소스 ''' write by SpeeDr00t ''' from pwn import * class cshell : ''' get shell ''' def __init__(self) : self.handle = '' def get_shell(self) : self.handle = process('/bin/sh') self.handle.sendline('pwd') print self.handle.recvline() + "\n" return self.handle def send_cmd(self,cmd,until_str='$' ) : self.handle.sendli.. 2016. 11. 3. 이전 1 다음