摘要: [similarface@InnerTest vsftpd]$ ll total 48 -rw------- 1 root root 125 Mar 23 02:26 ftpusers -rw-r--r-- 1 root root 12288 May 27 14:47 logins.db -rw-r--r-- 1 root root 34 May 27 14:40 login_us... 阅读全文
posted @ 2016-05-27 16:53 similarface 阅读(381) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-05-27 11:21 similarface 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 __author__ = 'similarface' import argparse import socket import errno from time import time as now DEFAULT_TIMEOUT = 120 DEFAULT_SERVER_HOST = 'localhost' DEFAULT_SERVER_PORT = 80 cla... 阅读全文
posted @ 2016-05-26 14:41 similarface 阅读(199) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 #!/usr/bin/env python import os import argparse import socket import struct import select import time # ICMP_ECHO_REQUEST = 8 # Platform specific #超时时间 DEFAULT_TIMEOUT = 2 #ping到次数 D... 阅读全文
posted @ 2016-05-26 14:16 similarface 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 浏览器访问:http://localhost:8800 --> 会跳转到:http://www.23mofang.com 阅读全文
posted @ 2016-05-26 11:24 similarface 阅读(760) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python #coding:utf-8 __author__ = 'similarface' import time import sys,datetime,re,subprocess #发送邮件 from itertools import islice import commands,optparse,os,xlrd import sys import smtplib ... 阅读全文
posted @ 2016-05-26 10:14 similarface 阅读(262) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 __author__ = 'similarface' import os,socket,threading,SocketServer SERVER_HOST='localhost' SERVER_PORT=0 BUF_SIZE=1024 ECHO_MSG='HELLO' class ThreadClient(): def __init__(self,ip,... 阅读全文
posted @ 2016-05-25 11:30 similarface 阅读(592) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 __author__ = 'similarface' import os,socket,threading,SocketServer SERVER_HOST='localhost' SERVER_PORT=0 BUF_SIZE=1024 ECHO_MSG='HELLO' class ForkedClient(): def __init__(self,ip,... 阅读全文
posted @ 2016-05-25 11:24 similarface 阅读(2248) 评论(1) 推荐(1) 编辑
摘要: www.python.org的IP地址:103.245.222.223 阅读全文
posted @ 2016-05-23 18:16 similarface 阅读(159) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 __author__ = 'similarface' #!/usr/bin/env python import socket #二进制和ASCII互转及其它进制转换 from binascii import hexlify def get_remote_machine_info(remote_host): ''' 获取根据域名获取IP地址 :... 阅读全文
posted @ 2016-05-23 14:15 similarface 阅读(256) 评论(0) 推荐(0) 编辑