Skip to content

Commit

Permalink
Add memoryInfo module
Browse files Browse the repository at this point in the history
  • Loading branch information
IMcPwn authored Oct 2, 2016
1 parent 0b38f30 commit 9d47e5d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions server/modules/memoryInfo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
* @file memoryInfo Module
* @summary Gets current process and system memory statisics.
* @author Carleton Stuberg
* @see https://github.com/IMcPwn/browser-backdoor
* @license MIT
* @version 0.1
*/

/**
* @return {String} Process memory statistics
* @return {String} System memory statstics
*/
ws.send("Current process (in kB)\n" + "workingSetSize: " + process.getProcessMemoryInfo().workingSetSize + "\npeakWorkingSetSize: " + process.getProcessMemoryInfo().peakWorkingSetSize + "\nprivateBytes: " + process.getProcessMemoryInfo().privateBytes + "\nsharedBytes: " + process.getProcessMemoryInfo().sharedBytes);
ws.send("Entire system (in kB)\n" + "\ntotalBytes: " + process.getSystemMemoryInfo().total + "\nfree: " + process.getSystemMemoryInfo().free + "\nswapTotal: " + process.getSystemMemoryInfo().swapTotal + "\nswapFree: " + process.getSystemMemoryInfo().swapFree);

0 comments on commit 9d47e5d

Please sign in to comment.