标签:
hta在打开的时候,有时候会被杀毒软件拦截而不给执行,更重要的一点是通常都可以右击查看源代码,里面如果涉及到域名或者其它的一些细节就很容易被其它人了解。
网络上有一些hta转exe的,类似的软件基本上都是国外的,而且要付费,从一些乱七八糟的地方下载过“破解版”的用了一下,不是很好用,对hta支持比较差,对vbs可能会好很多,既然不好用那就只好自己动手了
很简单,主要的实现过程是:将hta作为资源添加至项目中,exe启动后读取资源文件,并写入本地磁盘,然后调用mshta命令启动hta,当hta被关闭时删除该文件。
读取资源 --> 写文件 --> 执行文件 --> 删除文件
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new Form1());
System.Resources.ResourceManager manager = Properties.Resources.ResourceManager;
Object target = manager.GetObject("test");
string strSystemPath = System.Environment.SystemDirectory;
string strSystemDisk = strSystemPath.Substring(0, 1);
string strHtaPath = strSystemDisk + ":\\temp.hta";
if (File.Exists(strHtaPath))
{
File.Delete(strHtaPath);
}
FileStream fs = new FileStream(strHtaPath, FileMode.Create);
StreamWriter sw = new StreamWriter(fs);
sw.Write(target.ToString());
sw.Flush();
sw.Close();
fs.Close();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "mshta.exe";
startInfo.Arguments = strHtaPath;
Process process = Process.Start(startInfo);
//一直等待直到进程被关闭
process.WaitForExit();
if (File.Exists(strHtaPath))
{
File.Delete(strHtaPath);
}
//MessageBox.Show("hahaniu");
//Application.Run();
}
标签:
原文地址:http://www.cnblogs.com/meteoric_cry/p/4468368.html