diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cd11d2..3257e03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog + +## 1.0.1 + +Reviewed security with: +* [Electron Security](https://www.electronjs.org/docs/tutorial/security) +* [Doyensec Electron Security Checklist](https://doyensec.com/resources/us-17-Carettoni-Electronegativity-A-Study-Of-Electron-Security-wp.pdf) +* [Quasar Electron Security Concerns](https://quasar.dev/quasar-cli/developing-electron-apps/electron-security-concerns) + + + ## 1.0.0 Initial version diff --git a/bbcode/parser.ts b/bbcode/parser.ts index aeb2320..880d72b 100644 --- a/bbcode/parser.ts +++ b/bbcode/parser.ts @@ -127,9 +127,8 @@ export class BBCodeParser { isAllowed = (name) => self.isAllowed(name) && parentAllowed(name); currentTag = this._currentTag = {tag: self.tag, line: this._line, column: this._column}; } - let tagStart = -1, paramStart = -1, mark = start; - // @ts-ignore + let tagStart = -1, paramStart = -1, mark = start; let depth = 0; for(let i = start; i < input.length; ++i) { diff --git a/chat/preview/ImagePreview.vue b/chat/preview/ImagePreview.vue index 72084df..adf54f9 100644 --- a/chat/preview/ImagePreview.vue +++ b/chat/preview/ImagePreview.vue @@ -13,8 +13,11 @@ { + const cleanedArgs = args.map(v => cleanValue(v)); + const cleanedChannel = cleanValue(channel); + + console.log('REAL.IPC', cleanedChannel, cleanedArgs); + + ipcRenderer.sendToHost(cleanedChannel, ...cleanedArgs); + } + } +); + + const previewInitiationTime = Date.now(); -window.onload = () => console.log('window.onload', `${(Date.now() - previewInitiationTime)/1000}s`); -window.onloadstart = () => console.log('window.onloadstart', `${(Date.now() - previewInitiationTime)/1000}s`); -window.onloadend = () => console.log('window.onloadend', `${(Date.now() - previewInitiationTime)/1000}s`); -window.addEventListener('DOMContentLoaded', () => (console.log('window.DOMContentLoaded', `${(Date.now() - previewInitiationTime)/1000}s`))); -setTimeout(() => (console.log('Timeout', `${(Date.now() - previewInitiationTime)/1000}s`)), 0); // ---- Note that clear() below could break this +// window.onload = () => console.log('window.onload', `${(Date.now() - previewInitiationTime)/1000}s`); +// window.onloadstart = () => console.log('window.onloadstart', `${(Date.now() - previewInitiationTime)/1000}s`); +// window.onloadend = () => console.log('window.onloadend', `${(Date.now() - previewInitiationTime)/1000}s`); +// window.addEventListener('DOMContentLoaded', () => (console.log('window.DOMContentLoaded', `${(Date.now() - previewInitiationTime)/1000}s`))); +// setTimeout(() => (console.log('Timeout', `${(Date.now() - previewInitiationTime)/1000}s`)), 0); // ---- Note that clear() below could break this (() => { diff --git a/chat/preview/assets/browser.processor.raw.js b/chat/preview/assets/browser.processor.raw.js index 708ed6d..3a65055 100644 --- a/chat/preview/assets/browser.processor.raw.js +++ b/chat/preview/assets/browser.processor.raw.js @@ -36,9 +36,11 @@ class FListImagePreviewDomMutator { this.body = document.querySelector('body'); this.html = document.querySelector('html'); - this.ipcRenderer = (typeof require !== 'undefined') - ? require('electron').ipcRenderer - : { sendToHost: (...args) => (this.debug('ipc.sendToHost', ...args)) }; + this.ipcRenderer = { + sendToHost: ((window) && (window.rising) && (window.rising.sendToHost)) + ? window.rising.sendToHost + : (...args) => (this.debug('MOCK.ipc.sendToHost', ...args)) + }; this.preprocess(); diff --git a/chat/preview/test-urls.txt b/chat/preview/test-urls.txt index 78f2ead..a1053d6 100644 --- a/chat/preview/test-urls.txt +++ b/chat/preview/test-urls.txt @@ -85,3 +85,6 @@ Broken https://giphy.com/gifs/arianagrande-ariana-grande-thank-u-next-you-uldtLAK6tSOKP5PWw3 +https://redgifs.com/watch/grippingadvancedanteater +https://morphsbymig.tumblr.com/post/621869669856542720/morphsbymig-denise-milani-the-job-interview +https://66.media.tumblr.com/68d2754087907296dfc5f1c2567d6741/tumblr_pxf189SUrv1vu5oepo2_1280.jpg diff --git a/electron/index.html b/electron/index.html index ced0b62..984af94 100644 --- a/electron/index.html +++ b/electron/index.html @@ -2,7 +2,7 @@ - + F-Chat diff --git a/electron/window.html b/electron/window.html index ea63fdc..2881114 100644 --- a/electron/window.html +++ b/electron/window.html @@ -2,7 +2,7 @@ - + F-Chat