#include
#include
#include
#pragma comment(lib,"ws2_32.lib")
std::string GetLocalIpAndSave(void)
{
WSADATA wsaData;
char name[155];
std::string strIp;
PHOSTENT hostinfo;
if ( WSAStartup( MAK...
分类:
其他好文 时间:
2015-04-21 22:50:41
阅读次数:
174
linux工具命令: Nm: 显示目标文件中的符号清单。 Idconfig :把动态库放入缓存,目的是为了程序执行快一点。 Ldd:查看程序依赖哪些库。 Strip: 去掉目标文件中的冗余信息。A.out,一般是调试相关的信息。 Objdump: 显示目标文件中的附加信息。 1、加载执行动态库:(自...
分类:
系统相关 时间:
2015-04-18 21:52:17
阅读次数:
149
解决中间出现的换行符有两种方法第一种打印变量的时候加,号这样只能解决外观问题,要是将这样的ip进行引用的时候就会有问题第二种使用strip(‘\n‘)将换行符去掉
分类:
编程语言 时间:
2015-04-17 18:30:21
阅读次数:
123
1.os.popen运行shell列表命令deftraverseDirByShell(path):forfinos.popen(‘ls‘+path):printf.strip()2.利用glob模块glob.glob(path)返回带目录的文件名.通配符和shell相似.path不能包含shell变量.deftraverseDirByGlob(path):path=os.path.expanduser(path)forfinglob(path+‘/..
分类:
编程语言 时间:
2015-04-13 13:05:07
阅读次数:
142
Python字符串处理函数简明返回被去除指定字符的字符串默认去除空白字符删除首尾字符:str.strip([char])删除首字符:str.lstrip([char])删除尾字符str.strip([char])判断是否匹配首末字符匹配成功返回True,否则返回False匹配首字符:str.startswith(char[,start[,end]])匹配末..
分类:
编程语言 时间:
2015-04-13 13:03:21
阅读次数:
140
通信框架为networkcomms2.3.1服务器端监听代码://从配置文件获取IP和端口 string strIP = System.Configuration.ConfigurationManager.AppSettings["IPAddress"]; ...
分类:
其他好文 时间:
2015-04-09 21:41:18
阅读次数:
148
Aircrack-ng官方文档翻译---Airdecap-ngDescription【简介】With airdecap-ng you can decrypt WEP/WPA/WPA2 capture files. As well, it can also be used to strip the w...
分类:
其他好文 时间:
2015-04-05 21:46:48
阅读次数:
180
1.os.popen运行shell列表命令def traverseDirByShell(path):
for f in os.popen('ls ' + path):
print f.strip()2.利用glob模块glob.glob(path)返回带目录的文件名.通配符和shell相似.path不能包含shell变量.def traverseDirByGlob(path)...
分类:
编程语言 时间:
2015-04-05 12:00:28
阅读次数:
192
#!/usr/bin/python
#coding:utf-8
importos
importstring
importsys,getopt
defGrep_start_char(Mpath,char):
ifos.path.exists(Mpath):
GrepFile=file(Mpath)
else:
return"Nosuchfileordirectory"
try:
forlineinhosts:
ifline.startswith(char)orline.strip()==‘‘:
conti..
分类:
编程语言 时间:
2015-04-04 16:55:52
阅读次数:
144
返回被去除指定字符的字符串默认去除空白字符
删除首尾字符:str.strip([char])
删除首字符:str.lstrip([char])
删除尾字符str.strip([char])判断是否匹配首末字符匹配成功返回True,否则返回False
匹配首字符:str.startswith(char[, start[, end]])
匹配末字符:str.endswith(char[, st...
分类:
编程语言 时间:
2015-04-04 10:44:46
阅读次数:
160