Skip to content

Commit

Permalink
security update (prototype pollution prevention)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhildebrandt committed Nov 25, 2020
1 parent 52bbcd7 commit 73dce8d
Show file tree
Hide file tree
Showing 7 changed files with 112 additions and 33 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ For major (breaking) changes - version 3 and 2 see end of page.

| Version | Date | Comment |
| -------------- | -------------- | -------- |
| 4.30.2 | 2020-11-25 | security update (prototype pollution prevention) |
| 4.30.1 | 2020-11-12 | updated docs |
| 4.30.0 | 2020-11-12 | `get()` possibility to provide params |
| 4.29.3 | 2020-11-09 | `blockdevices()` catch errors adapted for just one line |
| 4.29.2 | 2020-11-09 | `blockdevices()` catch errors |
Expand Down
10 changes: 10 additions & 0 deletions docs/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ <h3>Full version history</h3>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">4.30.2</th>
<td>2020-11-25</td>
<td>security update (prototype pollution prevention)</td>
</tr>
<tr>
<th scope="row">4.30.1</th>
<td>2020-11-12</td>
<td>updated docs</td>
</tr>
<tr>
<th scope="row">4.30.0</th>
<td>2020-11-11</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
<img class="logo" src="assets/logo.png">
<div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span></div>
<div class="version">Current Version: <span id="version">4.30.0</span></div>
<div class="version">Current Version: <span id="version">4.30.2</span></div>
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
</div>
<div class="down">
Expand Down
25 changes: 15 additions & 10 deletions lib/internet.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,26 @@ function inetChecksite(url, callback) {

return new Promise((resolve) => {
process.nextTick(() => {

let urlSanitized = util.sanitizeShellString(url).toLowerCase();
urlSanitized = urlSanitized.replace(/ /g, '');
urlSanitized = urlSanitized.replace(/\$/g, '');
urlSanitized = urlSanitized.replace(/\(/g, '');
urlSanitized = urlSanitized.replace(/\)/g, '');
urlSanitized = urlSanitized.replace(/{/g, '');
urlSanitized = urlSanitized.replace(/}/g, '');
let urlSanitized = '';
const s = util.sanitizeShellString(url);
for (i = 0; i <= 2000; i++) {
if (!(s[i] === undefined ||
s[i] === ' ' ||
s[i] === '{' ||
s[i] === '}')) {
const sl = s[i].toLowerCase();
if (sl[0] && !sl[1]) {
urlSanitized = urlSanitized + sl[i];
}
}
}
let result = {
url: urlSanitized,
ok: false,
status: 404,
ms: -1
};
if (urlSanitized) {
if (urlSanitized && !util.isPrototypePolluted()) {
let t = Date.now();
if (_linux || _freebsd || _openbsd || _netbsd || _darwin || _sunos) {
let args = ' -I --connect-timeout 5 -m 5 ' + urlSanitized + ' 2>/dev/null | head -n 1 | cut -d " " -f2';
Expand Down Expand Up @@ -114,7 +119,7 @@ function inetLatency(host, callback) {
}

host = host || '8.8.8.8';
const hostSanitized = util.sanitizeShellString(host);
const hostSanitized = util.isPrototypePolluted() ? '8.8.8.8' : util.sanitizeShellString(host);

return new Promise((resolve) => {
process.nextTick(() => {
Expand Down
2 changes: 1 addition & 1 deletion lib/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ function networkStatsSingle(iface) {
return new Promise((resolve) => {
process.nextTick(() => {

const ifaceSanitized = util.sanitizeShellString(iface);
const ifaceSanitized = util.isPrototypePolluted() ? '---' : util.sanitizeShellString(iface);

let result = {
iface: ifaceSanitized,
Expand Down
5 changes: 4 additions & 1 deletion lib/processes.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ function services(srv, callback) {
if (srvString === '') {
srvString = '*';
}
if (util.isPrototypePolluted() && srvString !== '*') {
srvString = '------';
}
let srvs = srvString.split('|');
let result = [];
let dataSrv = [];
Expand Down Expand Up @@ -837,7 +840,7 @@ function processLoad(proc, callback) {

return new Promise((resolve) => {
process.nextTick(() => {
const procSanitized = util.sanitizeShellString(proc);
const procSanitized = util.isPrototypePolluted() ? '' : util.sanitizeShellString(proc);

let result = {
'proc': procSanitized,
Expand Down
99 changes: 79 additions & 20 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,29 +490,87 @@ function countLines(lines, startingWith) {
}

function sanitizeShellString(str) {
let result = str || '';
result = result.replace(/>/g, '');
result = result.replace(/</g, '');
result = result.replace(/\*/g, '');
result = result.replace(/\?/g, '');
result = result.replace(/\[/g, '');
result = result.replace(/\]/g, '');
result = result.replace(/\|/g, '');
result = result.replace(/\`/g, '');
result = result.replace(/\$/g, '');
result = result.replace(/;/g, '');
result = result.replace(/&/g, '');
result = result.replace(/\)/g, '');
result = result.replace(/\(/g, '');
result = result.replace(/\$/g, '');
result = result.replace(/#/g, '');
result = result.replace(/\\/g, '');
result = result.replace(/\t/g, '');
result = result.replace(/\n/g, '');
result = result.replace(/\"/g, '');
const s = str || '';
let result = '';
for (i = 0; i <= 2000; i++) {
if (!(s[i] === undefined ||
s[i] === '>' ||
s[i] === '<' ||
s[i] === '*' ||
s[i] === '?' ||
s[i] === '[' ||
s[i] === ']' ||
s[i] === '|' ||
s[i] === '˚' ||
s[i] === '$' ||
s[i] === ';' ||
s[i] === '&' ||
s[i] === '(' ||
s[i] === ')' ||
s[i] === ']' ||
s[i] === '#' ||
s[i] === '\\' ||
s[i] === '\t' ||
s[i] === '\n' ||
s[i] === '"')) {
result = result + s[i];
}
}
return result;
}

function isPrototypePolluted() {
s = '1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
let notPolluted = true;
let st = '';
notPolluted = notPolluted || !(s.length === 62)
const ms = Date.now();
if (typeof ms === 'number' && ms > 1600000000000) {
const l = ms % 100 + 15;
let c = 0;
for (i = 0; i < l; i++) {
const r = Math.random() * 61.99999999 + 1;
const rs = parseInt(Math.floor(r).toString(), 10)
const rs2 = parseInt(r.toString().split('.')[0], 10);
const q = Math.random() * 61.99999999 + 1;
const qs = parseInt(Math.floor(q).toString(), 10)
const qs2 = parseInt(q.toString().split('.')[0], 10);
notPolluted = notPolluted && !(r === q);
notPolluted = notPolluted && rs === rs2 && qs === qs2;
st += s[rs - 1];
}
notPolluted = notPolluted && st.length === l;
// string manipulation
let p = Math.random() * l * 0.9999999999;
let stm = st.substr(0, p) + ' ' + st.substr(p, 2000);
let sto = stm.replace(/ /g, '');
notPolluted = notPolluted && st === sto;
p = Math.random() * l * 0.9999999999;
stm = st.substr(0, p) + '{' + st.substr(p, 2000);
sto = stm.replace(/{/g, '');
notPolluted = notPolluted && st === sto;
p = Math.random() * l * 0.9999999999;
stm = st.substr(0, p) + '*' + st.substr(p, 2000);
sto = stm.replace(/\*/g, '');
notPolluted = notPolluted && st === sto;
p = Math.random() * l * 0.9999999999;
stm = st.substr(0, p) + '$' + st.substr(p, 2000);
sto = stm.replace(/\$/g, '');
notPolluted = notPolluted && st === sto;

// lower
const stl = st.toLowerCase();
notPolluted = notPolluted && (stl.length === l) && stl[l - 1] && !(stl[l])
for (i = 0; i < l; i++) {
const s1 = st[i];
const s2 = stl[i];
const s1l = s1.toLowerCase();
notPolluted = notPolluted && s1l[0] === s2 && s1l[0] && !(s1l[1]);
}
}
return !notPolluted;
}

function hex2bin(hex) {
return ("00000000" + (parseInt(hex, 16)).toString(2)).substr(-8);
}
Expand Down Expand Up @@ -747,4 +805,5 @@ exports.noop = noop;
exports.isRaspberry = isRaspberry;
exports.isRaspbian = isRaspbian;
exports.sanitizeShellString = sanitizeShellString;
exports.isPrototypePolluted = isPrototypePolluted;
exports.decodePiCpuinfo = decodePiCpuinfo;

0 comments on commit 73dce8d

Please sign in to comment.