본문 바로가기

SpeeDr00t41

간단한 자동명령 수행(ssh version) 간단한 자동명령 수행(ssh version)1.소스 ''' write by SpeeDr00t ''' from pwn import * class CSshConnector : ''' get ssh ''' def __init__(self, _host, _user , _password) : self.handle = '' self.set_host(_host) self.set_user(_user) self.set_password(_password) def set_host( self, _host ) : self.host = _host def get_host(self) : return self.host def set_user(self, _user ) : self.user = _user def get_user(self).. 2016. 11. 8.
간단한 자동명령 수행 간단한 자동명령 수행참조: 스마트폰에 원하는 파일 자동 업로드참조: 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.
pwntools install 및 Getting Started(ftp 접속) pwntools install 및 Getting Started(ftp 접속) ref : https://media.readthedocs.org/pdf/pwntools/2.2/pwntools.pdf 1.설치 apt-get install python2.7 python2.7-dev python pip install --upgrade pwntools 1.1 ndk때문에 binutils이 충돌나거나 안깔린경우 $ sudo apt-get remvoe binutils $ sudo apt-get install libssl-dev $ sudo apt-get install git $ sudo apt-get install libc6-armel-cross libc6-dev-armel-cross $ sudo apt-get ins.. 2016. 11. 2.
glibc - getaddrinfo Stack Based Buffer Overflow glibc - getaddrinfo Stack Based Buffer Overflow add by SpeeDr00t@Blackfalcon (jang kyoung chip) This is a published vulnerability by google in the past.Please refer to the link below. Reference: - https://googleonlinesecurity.blogspot.kr/2016/02/cve-2015-7547-glibc-getaddrinfo-stack.html- https://github.com/fjserna/CVE-2015-7547- CVE-2015-7547: glibc getaddrinfo stack-based buffer overflow When .. 2016. 9. 7.