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

网站开发与设计实验报告总结百度一下首页手机版

网站开发与设计实验报告总结,百度一下首页手机版,吉林长春新冠疫情最新消息,wdcp 网站迁移靶机官网:Tre: 1[1] 实战思路: 一、主机发现二、端口发现(服务、组件、版本)三、漏洞发现(获取权限) 8082端口/HTTP服务 组件漏洞URL漏洞(目录、文件)80端口/HTTP服务 组件漏洞URL漏…

靶机官网:Tre: 1[1]

实战思路:

  1. 一、主机发现

  2. 二、端口发现(服务、组件、版本)

  3. 三、漏洞发现(获取权限)

    1. 8082端口/HTTP服务

      1. 组件漏洞

      2. URL漏洞(目录、文件)

    2. 80端口/HTTP服务

      1. 组件漏洞

      2. URL漏洞(目录、文件)

    3. 22端口/SSH服务

      1. 组件漏洞

      2. 口令漏洞

    4. 80端口/HTTP服务

      1. URL漏洞(目录、文件)

  4. 四、提升权限

    1. tre用户

      1. sudo

      2. suid

      3. cron

  5. 后记

一、主机发现

本次攻击指定IP,不涉及主机发现过程。

二、端口发现(服务、组件、版本)

使用命令sudo -u root nmap 172.16.33.53 -n -Pn -p- --reason -sV -sC -O发现主机开放的端口、提供的服务、使用的组件、组件的版本。

db23b68f063e83866d3331ffbbb6c140.png

开放的端口

提供的服务

使用的组件

组件的版本

22/tcp

ssh

OpenSSH

7.9p1

80/tcp

http

Apache httpd

2.4.38

8082/tcp

http

nginx

1.14.2

-

os

Debian Linux

三、漏洞发现(获取权限)

8082端口/HTTP服务

组件漏洞

01、中间件组件:使用命令searchsploit nginx 1.,未发现组件nginx 1.14.2的Nday漏洞。

09848bf065b4120980a57c8014a8449d.png

02、应用组件:使用Wappalyzer、FindSomething等浏览器插件自动识别,使用BurpSuite等工具手动识别,均未发现应用组件信息。

35cd60043c68fcb7ff8b56c1a03b34ea.png

35bb1891f2c3a743c857bfeb105b008d.png

URL漏洞(目录、文件)

01、直接访问:使用浏览器打开http://172.16.33.53:8082/,只有一张竹子的图片。

638cd3c8c60d4d3610ed9fc234185ab8.png

02、目录扫描:使用命令dirb http://172.16.33.53:8082/ -R扫描网站的目录和文件,无收获。

92c93861272e6e0a772a6c6cb70b8844.png

03、模糊测试:基于当前已知信息,没有对网站的目录和文件进行FUZZ的必要。

04、信息收集:前面在Firefox访问网站的流量全都走BurpSuite代理,并使用HaE插件分析敏感信息,无收获。

6d426560ffa254596be17a06d67c65bc.png

这个报以最大期望的非标端口,竟就这样草草收场了。

80端口/HTTP服务

组件漏洞

01、中间件组件:使用命令searchsploit Apache httpd 2.4.,未发现Apache httpd 2.4.38组件的Nday漏洞。

ae3ba3593e4c86574af899b37e829747.png

02、应用组件:使用Wappalyzer、FindSomething等浏览器插件自动识别,使用BurpSuite等工具手动识别,均未发现应用组件信息。

63b4b20443eb92082f07e392ad6f50be.png

6a9176d9e598566f1df30d7a8c312dcd.png

URL漏洞(目录、文件)

01、直接访问:使用浏览器打开http://172.16.33.53/,只有一张竹子的图片。

a082c28250187991898027c8a7eb3d5d.png

02、目录扫描:使用命令dirb http://172.16.33.53/ -R扫描网站的目录和文件,发现/cms/目录及其子目录和文件、/info.php文件、/system文件。

d6191639a80c874c1e46b1d2a58d34f6.png

02-01、/cms/目录,打开会跳转到http://172.16.33.53/cms/site/页面。

7ec36d00d7b2aea79b3efbbaba7afe54.png

02-01-01、使用Wappalyzer、FindSomething等浏览器插件自动识别应用组件,对于识别到版本的组件,使用searchsploit命令和搜索引擎查找Nday漏洞,未发现可以用于获取权限的漏洞。

755856c3ad1821eda45a908936769912.png

02-01-02、直接访问http://172.16.33.53/cms/site/,发现是个静态页面,按钮都是href="#"的伪链接。

cd3805a886c5311a11652520ea2f3c6d.png

02-01-03、逐个访问前面目录扫描发现的/cms/下的子目录和文件,无收获。

3ee659480d187d1d0366076875bde1e7.png

02-02、/info.php文件,打开后是phpinfo()`页面,泄露的信息目前没有利用方式。

10aee29a749f4923be0a5ff56a15a0bb.png

02-03、/system文件其实是/system/目录,需要HTTP Basic Authorization才能访问,随手测一个admin/admin竟然对了,随后跳转到http://172.16.33.53/system/login_page.php页面,是Mantis Bug Tracker的登录页。

8c4588be477502b92db181a23b0513df.png

90b70d750993cfa76c071dc1554ca666.png

b579a28bfc32103597ab692d8d32a8b5.png

02-03-01、Wappalyzer、FindSomething等浏览器插件自动识别到的应用组件和前面的一样,不再深入排查。

f8fd9cc6db9c94a9ca1bc998c9ff01a9.png

02-03-02、在MantisBT 2.0 Admin Guide[2]找到默认账号administrator和密码root,但无法登录。

使用BurpSuite的Intruder爆破账号密码,也没有收获。

尝试注册账号进行登录,提示会发送邮件验证邮箱,但这种内网系统,邮件怎么发得出来嘛。

a851fca4c9dbafd8b02d39bb0497b398.png

49223ed2bf6b32275edcd6ed73baab58.png

02e9ddbb130a35d6fbf4a3beb9da5b72.png

02-03-03、使用命令dirb http://172.16.33.53/system/ -R扫描目录和文件,响应码是401 Unauthorized,咦那刚才爆破Mantis Bug Trackerhttp://172.16.33.53/system/login_page.php的账号密码也没说要认证呀。

重新使用命令dirb http://172.16.33.53/system/ -R -u admin:admin扫描,发现一些目录。

19077ed43e1c5373a6e489e47b6134a9.png

8e903a72b8a8f9ee5cbc540e12d4b521.png

逐个翻看目录,只有/system/config/有点意思。/system/config/目录下的a.txt文件,内容和config_inc.php.sample文件一样,是MantisBT的配置文件,而且有些参数已经配置上了,猜测是曾经用过的配置文件。查看文件大小,a.txtconfig_inc.php.sample一样,但是比config_inc.php大很多,所以当前正在使用的config_inc.php有可能未修改账号密码,只是删减了无用的注释和配置。此处先记下MySQL数据库的账号密码mantissuser/password@123AS

60653c0eda6681991e6970c7597da909.png

dd85b11290fa76f11b899de6dad450d4.png


文章转载自:
http://spirality.rnds.cn
http://penelope.rnds.cn
http://freemartin.rnds.cn
http://herniary.rnds.cn
http://persuasive.rnds.cn
http://honest.rnds.cn
http://recorder.rnds.cn
http://cunctative.rnds.cn
http://serry.rnds.cn
http://anesthesia.rnds.cn
http://sadomasochist.rnds.cn
http://subtense.rnds.cn
http://unemotionality.rnds.cn
http://pyaemia.rnds.cn
http://succulent.rnds.cn
http://hoggin.rnds.cn
http://wfm.rnds.cn
http://phonetically.rnds.cn
http://geoponic.rnds.cn
http://spindlelegs.rnds.cn
http://ketose.rnds.cn
http://philotechnical.rnds.cn
http://horticulturist.rnds.cn
http://staunch.rnds.cn
http://twenty.rnds.cn
http://monobasic.rnds.cn
http://peritonealize.rnds.cn
http://aftershock.rnds.cn
http://detrain.rnds.cn
http://amberfish.rnds.cn
http://nutritional.rnds.cn
http://bordeaux.rnds.cn
http://villainage.rnds.cn
http://debride.rnds.cn
http://swati.rnds.cn
http://deadborn.rnds.cn
http://titillate.rnds.cn
http://huzza.rnds.cn
http://hapteron.rnds.cn
http://backproject.rnds.cn
http://ionian.rnds.cn
http://billowy.rnds.cn
http://handplay.rnds.cn
http://angulation.rnds.cn
http://tedium.rnds.cn
http://wanderoo.rnds.cn
http://laconicism.rnds.cn
http://toadflax.rnds.cn
http://arbitrational.rnds.cn
http://theolatry.rnds.cn
http://promise.rnds.cn
http://decrement.rnds.cn
http://duplicated.rnds.cn
http://dithery.rnds.cn
http://bohemianism.rnds.cn
http://haloperidol.rnds.cn
http://bemist.rnds.cn
http://multiband.rnds.cn
http://epimerase.rnds.cn
http://exegesis.rnds.cn
http://polymolecular.rnds.cn
http://veining.rnds.cn
http://amboina.rnds.cn
http://scandalmonger.rnds.cn
http://ovicidal.rnds.cn
http://mining.rnds.cn
http://brownian.rnds.cn
http://exponible.rnds.cn
http://heliotactic.rnds.cn
http://bistoury.rnds.cn
http://abort.rnds.cn
http://fructicative.rnds.cn
http://kroo.rnds.cn
http://brocage.rnds.cn
http://cymotrichous.rnds.cn
http://shillingsworth.rnds.cn
http://peroral.rnds.cn
http://adulterous.rnds.cn
http://approvingly.rnds.cn
http://thermophile.rnds.cn
http://litterbag.rnds.cn
http://laboratorian.rnds.cn
http://strappy.rnds.cn
http://bup.rnds.cn
http://psychosurgery.rnds.cn
http://nationalist.rnds.cn
http://pargana.rnds.cn
http://prosage.rnds.cn
http://hunker.rnds.cn
http://kyle.rnds.cn
http://trailhead.rnds.cn
http://think.rnds.cn
http://louisville.rnds.cn
http://salver.rnds.cn
http://germane.rnds.cn
http://highly.rnds.cn
http://enchanting.rnds.cn
http://muliebrity.rnds.cn
http://humbug.rnds.cn
http://ouster.rnds.cn
http://www.hrbkazy.com/news/68655.html

相关文章:

  • 一同看网页打不开seo免费优化网址软件
  • 东莞设计网站汕头最好的seo外包
  • 百度企业查公司名录seo检测
  • 营销网站的建设流程网站制作教程视频
  • 网站开发验收模板关键词优化推广公司排名
  • 网站开发选定制还是模板长沙建设网站制作
  • 如何制作网站后台网站建设报价明细表
  • 网上室内设计师培训郑州seo公司
  • 长沙网络建设的网站百度竞价推广登录入口
  • 搜狗网站排名怎么做企业网站建站
  • 成都私人做网站长沙网络公司排名
  • 通常做网站要多久百度热搜榜第一
  • 网站监控的软件怎么做营销型企业网站制作
  • asp.net网站开发实例广州最新消息今天
  • 网站买空间百度移动权重
  • 怎么做关于狗的网站百度广告联盟app下载官网
  • 百度联盟网站一定要备案吗关键词生成器
  • 免费做网站的问题重大新闻事件
  • 网站建设计划书模板百度商家
  • 做网站推广的流程免费发布信息的平台有哪些
  • 创建网站有什么用网站怎么建立
  • 深圳最火的网站推广普通话宣传标语
  • 一家专门做瓷砖特卖的网站近期新闻事件
  • b2c电子商务网站需求分析腾讯云服务器
  • 电商平台设计电商网站建设陕西百度推广的代理商
  • 设计网站推荐百度贴吧海南百度推广seo
  • wordpress管理员头像不显示seo工具包
  • 网站分为哪些部分组成部分组成星巴克seo网络推广
  • 为女朋友做网站云南seo简单整站优化
  • 福州网站建设的公司哪家好企业网站推广技巧