http://www.findmysoft.com/news/Open-Source-Vbootkit-2-0-Attack-Tool-for-Windows-7/
Windows 7 Release Candidate is now out and available for public download, and so is the open source attack tool Vbootkit 2.0 created by security researchers Vipin Kumar and Nitin Kumar. The source code of the attack tool has been released under a General Public License (GPL), meaning that anyone can now use it to compromise the Windows 7 operating system.
With Vbootkit 2.0, an attacker could take full control of the OS because there is a design problem within Windows 7. According to its developers, there is no fix for this exploit simply because it is a design issue (as mentioned before). The upside is that the exploit only works if the attacker has physical access to the targeted machine – the exploit cannot be used remotely.
“It hooks the basic hard disk reading mechanism, the INT 13h method, then waits for read requests. When it finds a known signature, it patches the file in memory and the process continues till we reach the kernel,” explained Vipin Kumar for eWeek. In layman’s terms, Vbootkit 2.0 takes control of the Windows 7 OS when the operating process boots up by “making changes to Windows 7 files that are loaded into the system memory during the boot process”.
Microsoft has responded with the following statement: “If one has this kind of unrestricted access, one can do many things to compromise the system. BitLocker, in addition to data encryption, can also help protect against physical-access attacks with its secure-boot technology. The feature uses a Trusted Platform Module (TPM 1.2) to help ensure that a PC running Windows 7 has not been tampered with while the system was offline.”
That may be true, but the thing is that TPM and BitLocker are only available on high-end versions of Windows 7, mainly Windows 7 Enterprise and Windows 7 Ultimate.
If you would like to get the Vbootkit 2.0 source code, a download location is available here.
相关推荐
苍穹批量下载附件
this.getView().showTipNotification("批量附件下载失败,请联系管理员");logger.error("批量下载失败", ex);String zipName = "批量下载附件.zip";//将批量下载附件上传到临时文件系统。1、设置批量附件文件信息。
[Bootkit]开源Bootkit技术(三)vBootkit
vBootkit工作于Nvlabs的Nitin Kumar和Vipin Kumar在2007年和2009年分别发布了vBootkit的第一版和第二版,前者只适用于Windows Vista,后者只适用于Windows 7 x64。由于Vista操作系统的普及性太低,因此在此不予讨论vBootkit v1版本的情况。
attackTool
privilege::debug
5 Best Open Source Testing Tools(5个自动化测试开源软件)
原文:https://www.bistasolutions.com/resources/blogs/5-best-open-source-testing-tools/In almost every software industry, Quality Analysis plays an integral role in the better delivery of the product. And...
Attack Tools
http://www.bishopfox.com/resources/tools/google-hacking-diggity/attack-tools/ Sometimes, the best defense is a good offense. Bishop Fox’s attack tools level the playing field by allowing our client
Open Source Vbootkit 2 0 Attack Tool for Windows 7
Open Source Vbootkit 2 0 Attack Tool for Windows 7
SmbRelay3 NTLM Replay Attack Tool/Exploit (MS08-068)
* SMBRELAY 3 - NTLM replay attack (version 1.0 )public version* (c) 2008 Andres Tarasco Acuña ( atarasco_at_ gmail.com )* URL: http://tarasco.org/Web/tools.htmlhttp://milw0rm.com/sploi .
全面解析恶意软件 从rootkit到bootkit
作者: Noah Schiffman, 出处:TechTarget, 如今最致命类型的恶意代码就是"Rootkit" ,这种恶意可以获得"root"权限,并部署恶意程序的可执行的软件包,Rootkit是如何危害用户的呢…… 【IT专家网独家】可以说,如今最复杂,最致命类型的恶意代码就是"Rootkit" 。顾名思义,这种恶意可以获得"root"权限,在unix系统中最高
U盘小病毒源代码
//*******************************************//****** 网蝉U盘感染小病毒 ******//*******************************************//功能介绍://1,感染U盘和网络硬盘//2,释放DLL文件并将其加入到系统服务启动。//3,保护注册表相关项目。//4,//////////////////////
Open Source Test Tools
Unit Test- Java - Juint, http://www.junit.org/index.htm, Ant, EMMA- Mockrunner: http://mockrunner.sourceforge.net/index.html- C++ - CppUnit: http://sourceforge.net/pro
知识库的构建 [ 3 ]
先按主题或段落初步划分,再对超长块递归细分,直至满足大小限制。递归分块融合了结构化与非结构化处理逻辑,与固定大小的分块不同,这种方法保持了语言的自然流畅性并保留了完整的内容语义。
使用easyexcel导出数据
使用EasyExcel 2.1.4实现自定义监听器,校验表头(去除换行空格)及数据行:转换实体,检查组合代码/类型、计划类型非空且合法,收集错误信息,返回有效数据列表。
C语言实现带头双向循环链表
本人的技术笔记会优先发布在个人站点。
06-05-排序集合-综合对比-SortedSet-vs-SortedDictionary-vs-SortedList选型
<think>我们根据要求,生成一篇不超过150字的文章摘要。内容是关于SortedSet、SortedDictionary与SortedList的选择指南。需要提取核心要点:根据语义选择类型,树型与数组型实现差异,注意比较器、可变键、性能与内存,以及实验验证。摘要应精炼。</think>摘要:比较SortedSet、SortedDictionary与SortedList,应优先按语义选择:唯一元素用Set,键值映射按更新模式选Dictionary或List,后者支持位置索引。注意比
MyBatis‑Plus Service 层常用自带方法
MyBatis‑Plus Service 层常用自带方法
【c++】map和set的使用
1、set的声明如下,T就是set底层关键字的类型2、set默认要求T⽀持⼩于⽐较,如果不⽀持或者想按⾃⼰的需求⾛可以⾃⾏实现仿函数传给第⼆个模版参数3、set底层存储数据的内存是从空间配置器申请的,如果需要可以⾃⼰实现内存池,传给第三个参数。4、⼀般情况下,我们都不需要传后两个模版参数。5、set底层是⽤红⿊树实现,增删查效率是OlogN,迭代器遍历是⾛的搜索树的中序,所以是有序的。
138




被折叠的 条评论
为什么被折叠?



