码迷,mamicode.com
首页 >  
搜索关键字:isset    ( 862个结果
PHP 安全的电子邮件
PHP E-mail 注入 首先,请看上一节中的 PHP 代码: <html> <body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_R ...
分类:Web程序   时间:2021-06-21 20:45:37    阅读次数:0
2021强网杯 [强网先锋]赌徒
2021强网杯 [强网先锋]赌徒 考点: 构造pop链 进去就一句话 I think you need /etc/hint . Before this you need to see the source code 看了看源码,看了看请求和响应,啥也没看出来 老规矩,上dirsearch 一个www ...
分类:其他好文   时间:2021-06-15 17:40:08    阅读次数:0
DVWA--Command Injection
Low 命令注入Low级别的,我们先看一下源码 <?php if( isset( $_POST[ 'Submit' ] ) ) { // Get input $target = $_REQUEST[ 'ip' ]; // Determine OS and execute the ping comma ...
分类:其他好文   时间:2021-05-03 12:31:22    阅读次数:0
php empty()与isset()区别
isset 判断变量是否已存在 empty 判断变量是否为空或为0 is_null 判断变量是否为NULL 变量emptyis_nullisset $a=”” true false true $a=null true true false var $a true true false $a=arra ...
分类:Web程序   时间:2021-04-10 13:35:23    阅读次数:0
php5.*与php7.* 区别
null合并运算符$username = isset($_GET['user']) ? $_GET['user'] : 'nobody';$username = $_GET['user'] ?? 'nobody'; // 等同于上句操作// 合并操作$username = $_GET['user'] ...
分类:Web程序   时间:2021-03-11 14:18:21    阅读次数:0
五十三:代码审计-TP5框架及无框架变量覆盖及代码审计
漏洞关键字 SQL注入: select insert update mysql_query mysqli等 文件上传: $_FILES,type="file",上传,move_upload_file()等 XSS跨站: print print_r echo sprintf die var_dump ...
分类:其他好文   时间:2021-03-06 14:12:18    阅读次数:0
PHP变量的类型与操作
is_null , empty , isset 1、is_null() 判断是否为null,什么时候变量值为null? 1.$n; //声明但为初始化 2.$n =null ; //初始化为null 用is_null($n)来判断返回true,其他函数全部返回false 2、empty()判断值是否 ...
分类:Web程序   时间:2021-03-05 13:01:39    阅读次数:0
26.服务端单线程模式下性能瓶颈测试
VS2015 提供的性能探查器,可以看到程序的哪部分代码占用了多少的cpu 可以看到 FD_SET select FD_ISSET recv这几个个函数占用的cpu比较高 将服务端改造成多线程: 1.分离处理客户端连接的函数,放到线程中。减少客户端并发连接时间。 2.分摊占用cpu的操作,放到几个线 ...
分类:编程语言   时间:2021-02-08 11:58:13    阅读次数:0
小程序信息授权sessionKey失效问题
废话不说,直接上万无一失的办法。wxml: <!-- 今日已打卡 --> <button class="btn" open-type="getUserInfo" bindgetuserinfo="getUserInfo" style="margin-top: 40rpx" > {{ isset ? ...
分类:微信   时间:2021-02-06 12:13:27    阅读次数:0
CTF web每日一题
error_reporting(0);// 关闭错误报告 session_start();//启动会话 require('./flag.php'); if(!isset($_SESSION['nums'])){//isset() — 检测nums变量是否设置。 $_SESSION['nums'] = ...
分类:Web程序   时间:2021-02-01 11:42:42    阅读次数:0
862条   1 2 3 4 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!