2017年8月31日

boost 文件操作

摘要: void testFileSystem() { boost::filesystem::path path("/test/test1"); //初始化 boost::filesystem::path old_cpath = boost::filesystem::current_path(); //取得当前程序所在文件夹 boost::filesystem::pat... 阅读全文

posted @ 2017-08-31 08:56 Earvin 阅读(6041) 评论(0) 推荐(0) 编辑

第116讲 boost::algorithm::string之替换和删除

摘要: http://www.360doc.com/content/16/0523/18/29304643_561672752.shtml 阅读全文

posted @ 2017-08-31 08:55 Earvin 阅读(191) 评论(0) 推荐(0) 编辑

SQLMap的前世今生(Part1)

摘要: http://www.freebuf.com/sectool/77948.html 一、前言 谈到SQL注入,第一时间就会想到神器SQLMAP,SQLMap是一款用来检测与利用的SQL注入开源工具。那么SQLMap在扫描SQL的逻辑到底是怎样实现的呢,接下来就探讨下SQLMap的扫描逻辑,通过了解S 阅读全文

posted @ 2017-08-31 08:51 Earvin 阅读(292) 评论(0) 推荐(0) 编辑

用boost::lexical_cast进行数值转换

摘要: 在STL库中,我们可以通过stringstream来实现字符串和数字间的转换: int i = 0; stringstream ss; ss << "123"; ss >> i; 但stringstream是没有错误检查的功能,例如对如如下代码,会将i给赋值为12. ss << "12.3"; ss 阅读全文

posted @ 2017-08-31 08:48 Earvin 阅读(359) 评论(0) 推荐(0) 编辑

导航