This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import sys | |
import json | |
import urllib | |
import urllib2 | |
import oauth2 as oauth | |
from multiprocessing import Process | |
import datetime | |
import base64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import smtplib | |
import email | |
import wx | |
HOST = "hogehoge.jp" | |
def click_post(event): | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import telnetlib | |
import wx | |
HOST = "127.0.0.1" # hoge.jp | |
PORT = 25 # smtp | |
def click_post(event): | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import wave | |
INFILE = "beatefll.dll" | |
OUTFILE = "beatefll.wav" | |
f = open(INFILE, "rb") | |
wv = wave.open(OUTFILE, "wb") | |
data = f.read() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lxml.html | |
res_html = lxml.html.parse("http://seccon2015.connpass.com/event/21425/").getroot() | |
target_path = "/html/body/div/div/div/div/div/h4/a" | |
print(res_html.xpath(target_path)[0].text) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def f(i): | |
if i == 0: | |
return 1 | |
else: | |
return i * f(i - 1) | |
s = str(f(int(raw_input()))) | |
i = len(s) - 1 | |
while s[i] == "0": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#alias python="bpython" | |
#for i in `seq 5`do echo 1; done | |
alias ls='ls -CF' | |
alias s='ls' | |
alias l='ls -CF' | |
alias ...='cd ../../' | |
alias ....='cd ../../..' | |
alias la='ls -a' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
Dest = "http://localhost:8080/{0}" | |
req = requests.get(Dest.format("wp-login.php")) | |
cookie_value = dict(req.cookies) | |
# create post id,pw | |
login_id = ["test", "wei", "a", "admin", "admin", "admin", "nimda"] | |
login_pw = ["test", "wei", "a", "admin", "wei", "password", "password"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from libmproxy import controller, proxy | |
from libmproxy.proxy.server import ProxyServer | |
import commands | |
def themerequest(flow): | |
target_host = "dl.shop.line.naver.jp" | |
target_path = "theme.zip" | |
replace_path = "/themeshop/v1/products/5b/8f/d2/5b8fd2d0-03ba-45d2-9c81-c5ad9b1abfe0/2/ANDROID/theme.zip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def callback(i, d, z): | |
z += [i] | |
def hoge(callback, d=0): | |
for i in range(10): | |
callback(i, d=d) | |
if __name__ == "__main__": | |
p = [] | |
hoge(lambda x, d, z=p: callback(x, d, z)) |
OlderNewer