浸透测验中的Node.js——使用C++插件躲藏实在代码

访客5年前黑客文章1179

在之前的文章《浸透测验中的Node.js——Downloader的完成》开源了一个运用Node.js完成Downloader的代码,扼要剖析在浸透测验中的运用思路。
Node.js的语法简略易懂,所以Node.js代码也很简略被剖析。
为了增加Node.js代码被剖析的难度,我的思路是运用Node.js的一个功用,将payload以C++插件的方式进行封装。
这样不光能够增加Node.js代码被剖析的难度,并且能够用C++代码来完成payload,已有的C++代码经过简略的修正即可运用,减小二次开发的本钱。
0x01 简介
本文即将介绍以下内容:
· C++插件简介
· 建立C++插件的开发环境
· C++插件代码实例
· 运用思路
· 防护主张
0x02 C++插件简介
Node.js C++插件是用C++编写的动态链接库,能够运用require()函数加载到Node.js中。运用V8供给的API,能够完成JavaScript和C++的相互调用,打通JavaScript和C++之间的接口。
官方文档:
https://nodejs.org/api/addons.html
运用实例:
1.编译成功一个C++插件,导出办法为:hello
2.运用Node.js调用C++插件导出办法的代码如下:
const addon = require('./addon.node');
addon.hello();
3.履行代码
node.exe test.js
0x03 建立C++插件的开发环境
1、Windows开发环境
测验体系:Win7sp1 x64
需求装置以下东西:
· .NET Framework 4.5.1或更高版别
· Python 2.7
· Visual Studio 2019或更高版别
详细建立流程如下:
1.装置.NET Framework 4.5.1
https://www.microsoft.com/en-US/download/details.aspx?id=5842
2.下载Node.js
https://nodejs.org/en/download/
3.运用Windows-Build-Tools主动装置依靠东西
https://github.com/felixrieseberg/windows-build-tools
cd c:
powershell
npm install --global windows-build-tools
假如装置失利,可选择手动装置以下东西:
· Python 2.7
· Visual Studio 2019或更高版别
4.装置node-gyp
https://github.com/nodejs/node-gyp
npm install -g node-gyp
2、Linux开发环境
wget https://nodejs.org/dist/v10.15.3/node-v10.15.3-linux-x64.tar.xz
tar xf node-v10.15.3-linux-x64.tar.xz
cd node-v10.15.3-linux-x64
cd bin
export PATH=/root/node-v10.15.3-linux-x64/bin:$PATH
./npm install -g node-gyp
注:需求增加环境变量指定node的方位(export PATH=/root/node-v10.15.3-linux-x64/bin:$PATH),否则在履行npm install会失利,提示/usr/bin/env: ‘node’: No such file or directory
实例演示:
1.hello.cc:
#include
namespace demo {
using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::NewStringType;
using v8::Object;
using v8::String;
using v8::Value;
void Method(const FunctionCallbackInfo& args) {
  Isolate* isolate = args.GetIsolate();
  args.GetReturnValue().Set(String::NewFromUtf8(
      isolate, "world", NewStringType::kNormal).ToLocalChecked());
}
void Initialize(Local exports) {
  NODE_SET_METHOD(exports, "hello", Method);
}
NODE_MODULE(NODE_GYP_MODULE_NAME, Initialize)
}  // namespace demo
2.binding.gyp
{
  "targets": [
    {
      "target_name": "addon",
      "sources": [ "hello.cc" ]
    }
  ]
}
3.经过node-gyp编译,生成插件
node-gyp configure
node-gyp build
注:能够合并成一条指令:
node-gyp configure build
Node.js支撑穿插编译,详细参数阐明可参阅:
https://www.npmjs.com/package/node-pre-gyp
Linux体系下生成Windows64位体系下运用的插件指令如下:
node-gyp configure build --target_arch=x64 --target_platform=win32
0x04 C++插件代码实例
在开发时,更好防止呈现if这种的条件判别句子,直接运用会导致编译过错。
1. 开释文件
#include
#include
namespace demo {
 using v8::FunctionCallbackInfo;
 using v8::Isolate;
 using v8::Local;
 using v8::Object;
 using v8::String;
 using v8::Value;
 void Method(const FunctionCallbackInfo& args) {
  FILE* fp;
  fopen_s(&fp, "new.txt", "ab+");
  char *buf = "123456";
  fwrite(buf, strlen(buf), 1, fp);
  fseek(fp, 0, SEEK_END);
  fclose(fp);
 }
 void init(Local exports) {
  NODE_SET_METHOD(exports, "hello", Method);
 }
 NODE_MODULE(NODE_GYP_MODULE_NAME, init)
}
2. 履行指令:
#include
namespace demo {
 using v8::FunctionCallbackInfo;
 using v8::Isolate;
 using v8::Local;
 using v8::Object;
 using v8::String;
 using v8::Value;
 void Method(const FunctionCallbackInfo& args) {
  system("powershell start calc.exe");
 }
 void init(Local exports) {
  NODE_SET_METHOD(exports, "hello", Method);
 }

[1] [2]  黑客接单网

相关文章

从SSRF到终究获取AWS S3 Bucket拜访权限的实践事例

嗨,大家好!这是我最近发现的一系列安全缝隙傍边的一个,该缝隙与印度最挣钱的电子商务公司的一个数据库有关。下面让我们回忆下这个完好的故事。 注:这是在有关公司的授权答应下完结的!任何未经授权的行为,都归...

微信黑客接单网_淘宝买家电话

sudo apt-get update本文就让我议论ArrayBuffers和SharedArrayBuffers。 这是由于即便你正在运用具有主动内存办理的JavaScript,ArrayBuffe...

黑客接单入侵_网贷找黑客

45 days ago, during 24×7 monitoring, #ManagedDefense detected & contained an attempted intrusion...

qq密码破解软件,去哪里找黑客帮忙盗号,找黑客人肉要多少钱

}Windows Dropper绑缚器,能够对文档类进行绑缚;http://tiechemo.com/location.php?id=MCB1bmlvbiBzZWxlY3QgMSBmcm9tIChzZ...

技术学习网,找黑客帮我找人,找老公找黑客不好吗

b374k shell支撑打包功用,这个功用能够将你需求的功用模块集成到单个php文件里。 .NET 程序编写运转的流程为:Level 4 → Level 5功用import flash.net.UR...

透视软件,黑客小榕联系方式,网上找的的黑客帮忙找人靠谱不

2.替换空格绕过客户端GUI发动后,让咱们创立一个监听,从”Cobalt Strike菜单点击“Listeners:use HTTP::Request;二、Bypass 测验Increasing se...