语法nmap [扫描类型] [扫描参数] [hosts 地址与范围]扫描类型-sT TCP connect() 扫描,这是最基本的 TCP 扫描方式。这种扫描很容易被检测到,在目标主机的日志中会记录大批...
blzxadmin179 1年前 (2020-02-12) 46℃ 暂无评论 3喜欢
configparser 配置读取模块安装命令:pip install configparser1.基本的读取配置文件-read(filename) 直接读取ini文件内容-sections() 得到所有的section,并以列表的形式返回...
blzxadmin179 1年前 (2020-02-08) 21℃ 暂无评论 3喜欢
COOKIE = { "Cookie": '__cfduid=def03b19933fd994bff59a377ec396ee01580718716; Hm_lvt_14b14198b6e26157b7eba06b390ab763=1580801448; Hm_lvt_526caf4e20c21f06a4...
blzxadmin179 1年前 (2020-02-08) 38℃ 暂无评论 3喜欢
sess = requests.Session()getres = sess.get(pageinfo['curl'])#对获取的网页源码进行解码d = pq(getres.content.decode('gb2312'))...
blzxadmin179 1年前 (2020-02-08) 28℃ 暂无评论 3喜欢
数据库返回默认是以 tuple 类型返回(为了安全起见),但有时候元组返回很不方便,如果能以字典的形式返回那就太棒了~MySQL 设置返回字典类型是在连接数据库时设置cursorclass = py...
blzxadmin179 1年前 (2020-02-08) 25℃ 暂无评论 2喜欢
Pyquery使用手册:https://pythonhosted.org/pyquery/api.html 参考手册发现一个获取下一页的方法nexturl = next.filter(lambda i: response.doc(this).text().strip() == &#...
blzxadmin179 1年前 (2020-02-04) 23℃ 暂无评论 2喜欢
讯睿cms在没有安装tags插件是无法实现调用的,无奈只能自己通过读取 文章关键字来实现调用。<div id="tag_cloud-3" class="widget widget_tag_cloud"><h3 class="widget-titl...
blzxadmin179 1年前 (2020-01-29) 39℃ 暂无评论 4喜欢
{module module=news flag=4 num=9 order=rand() cache=3600} <li class="item"> <div class="item-img"> <a class="item-img-inner" hr...
blzxadmin179 1年前 (2020-01-29) 30℃ 暂无评论 3喜欢
讯睿CMS前端模版调用最近30天内并且有缩略图,阅读量靠前的调用方式<div id="wpcom-post-thumb-2" class="widget widget_post_thumb"><h3 class="widget-title">热门文章</h3...
blzxadmin179 1年前 (2020-01-29) 30℃ 暂无评论 4喜欢
其中flag指定推荐位ID号,缩略图原图调用方式使用de_get_file函数,如果需要裁切图片可以使用dr_thumb($t.thumb,200,200),更多dr_thumb函数使用方法查看如下:// 缩略图function...
blzxadmin179 1年前 (2020-01-26) 29℃ 暂无评论 2喜欢
讯睿CMS Url链接生成函数大全function dr_url($url, $query = [], $self = SELF) { return \Phpcmf\Service::L('router')->url($url, $query, $self);}function...
blzxadmin179 1年前 (2020-01-25) 32℃ 暂无评论 2喜欢
迅睿CMS模版中调用会员信息方法,我们可以提供查看模版可以知道<!-- 动态调用member.html模板的会员登录信息 --> {dr_ajax_template('dr_member_info', &...
blzxadmin179 1年前 (2020-01-25) 21℃ 暂无评论 4喜欢
迅睿CMS网站缓存读取和设置实现在此记录下,方便在二次开发派上用场。//设置方式$data = $this->table('var')->getAll();$cache = [];if ($data) { foreach ($dat...
blzxadmin179 1年前 (2020-01-25) 27℃ 暂无评论 3喜欢
if($_SERVER['HTTP_HOST']=='80zx.com'){ header("HTTP/1.1 301 Moved Permanently"); function isHTTPS() { if (defined('HTTPS'...
blzxadmin179 1年前 (2020-01-22) 19℃ 暂无评论 2喜欢
打开http链接资源:$fp = fsockopen('http://域名'.$host, 80, $errno, $errstr, 20);打开https链接资源:$fp = fsockopen('ssl://域名'.$host, 443, $errno,...
blzxadmin179 1年前 (2020-01-18) 19℃ 暂无评论 2喜欢
在做web应用时候,通过web扩展名判断上存文件类型,这个是我们常使用的。有时候我们这样做还不完善。可能有些人上存一些文件,但是他通过修改扩展名,让在我们的文件类型之内。 单...
blzxadmin179 1年前 (2020-01-03) 38℃ 暂无评论 8喜欢
park,unpark,ord这3个函数,在我们工作中,用到它们的估计不多。 我在最近一个工作中,因为通讯需要用到二进制流,然后接口用php接收。当时在处理时候,查阅不少资料。因为它们使用确...
blzxadmin179 1年前 (2020-01-03) 31℃ 暂无评论 4喜欢
具体函数dr_show_url参考:/** * 模块内容URL地址 * * @param array $mod * @param array $data * @param mod $page * @return string */function dr_show_url($mod,...
blzxadmin179 1年前 (2020-01-03) 18℃ 暂无评论 3喜欢
方法:在全局函数、类库中,需要用如下方式引入:$CI=&get_instance();$CI->load->model('xxxx');$CI->xxxx->method();在控制器中调用案例:$this->load->model('ymgj_...
blzxadmin179 1年前 (2020-01-03) 21℃ 暂无评论 2喜欢
uploader = webuploader.create({ accept: { extensions: "pdf,doc,ppt,pptx,xls,xlsx,docx,rar,zip,7z,tar.gz,war,jar,txt,chm,pd...
blzxadmin179 1年前 (2020-01-02) 36℃ 暂无评论 4喜欢
chr(ord('A')+1);...
blzxadmin179 1年前 (2020-01-01) 18℃ 暂无评论 5喜欢
/** * 导入excel文件 * @param string $file excel文件路径 * @return array excel文件内容数组 */function import_excel($file){ // 判断文件是什么格式 $t...
blzxadmin179 1年前 (2020-01-01) 16℃ 暂无评论 3喜欢
/** * 输出模板 * * @param string $_name 模板文件名称(含扩展名) * @param string $_dir 模块名称 * @return void */public function display($_name, $_dir = N...
blzxadmin179 1年前 (2019-12-31) 20℃ 暂无评论 4喜欢
CookieJar是对于Cookie类的一个类似管理类的封装。类继承图,CookieJar是基类CookieJar类有一些子类,分别是FileCookieJar,MozillaCookieJar,LWPCookieJar。CookieJar:管理HTTP co...
blzxadmin179 1年前 (2019-12-27) 43℃ 暂无评论 2喜欢
很多时候网站域名更换后需要替换内容中的访问域名就行呀用到mysql更新命令:update `表名` set `字段名`=replace(`字段名`,'被替换的字符串','替换成新的字符串...
blzxadmin179 1年前 (2019-12-26) 32℃ 暂无评论 3喜欢