[python] urlopen proxy url = 'http://leopardan.kr' proxies = {'http': 'http://111.222.333.444:3128'} a = urllib.urlopen(url,proxies=proxies) # Use http://www.someproxy.com:3128 for http proxying proxies = {'http': 'http://www.someproxy.com:3128'} filehandle = urllib.urlopen(some_url, proxies=proxies) # Don't use any proxies filehandle = urllib.urlopen(some_url, proxies={}) # Use proxies from environment - both version.. 더보기 Wireshark의 Sequence number는 상대적 순서이다! Scapy를 통해서 패킷을 쪼개서 작업을 하고 있는데Sequence number가 0인것을 찾는데.. 없다..!! 두둥!분명 와이어 샤크로 봤을때는 Seq가 0 이였는데...그렇다 우리는?(나는?) 와샥에 낚이고 있었던 거시던 거시였다. "protocol analyzers like Wireshark will typically display relative sequence and acknowledgement number in place of the field's actual value. These values are relative to the initial sequence number of that stream. This is handy, as it is much easier to keep track o.. 더보기 python에서 qrcode 다루기 [1]http://pyqrcode.sourceforge.net/ 에서 파일 다운로드 sudo apt-get install jcc python-imaging python-setuptools python-dev [2] apt-get install qrencodehttp://pypi.python.org/packages/source/q/qrencode/qrencode-1.01.tar.gz#md5=5a1addd4d6e6412116fcfeb9661831a9 #!/usr/bin/env python# -*- coding: utf-8 -*-import qrencodeimport sysimport random def qrcode_gen(text,cnt):# text=raw_input("Su text: ")# imagen .. 더보기 이전 1 ··· 7 8 9 10 11 12 13 ··· 39 다음