1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/************************************************************************
**
** Copyright (C) 2020-2021 Kevin B. Hendricks, Stratford, Ontario, Canada
**
** This file is part of PageEdit.
**
** PageEdit is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** PageEdit is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with PageEdit. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include <QString>
#include <QUrl>
#include <QApplication>
#include <QWidgetList>
#include <QDebug>
#include "Utility.h"
#include "MainWindow.h"
#include "URLInterceptor.h"
#define INTERCEPTDEBUG 0
URLInterceptor::URLInterceptor(QObject *parent)
: QWebEngineUrlRequestInterceptor(parent)
{
}
void URLInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info)
{
#if INTERCEPTDEBUG
// Debug: output all requests
qDebug() << "-----";
qDebug() << "method: " << info.requestMethod();
qDebug() << "party: " << info.firstPartyUrl();
qDebug() << "request" << info.requestUrl();
qDebug() << "navtype: " << info.navigationType();
qDebug() << "restype: " << info.resourceType();
qDebug() << "ActiveWindow: " << qApp->activeWindow();
#endif
if (info.requestMethod() != "GET") {
info.block(true);
qDebug() << "Warning: URLInterceptor Blocking POST request from " << info.firstPartyUrl();
return;
}
QUrl destination(info.requestUrl());
QUrl sourceurl(info.firstPartyUrl());
// Finally let the navigation type determine what to verify against:
// Use firstPartyURL when NavigationTypeLink or NavigationTypeOther (ie. a true source url)
// Otherwise if we Typed it in it is from us
if (info.navigationType() == QWebEngineUrlRequestInfo::NavigationTypeTyped) {
sourceurl = destination;
}
// verify all url file schemes before allowing
if (destination.scheme() == "file") {
QString bookfolder;
QString usercssfolder = Utility::DefinePrefsDir() + "/";;
QString sourcefolder = sourceurl.toLocalFile();
// possible for multiple main windows to exist
// create a topLevelWidget equivalent to screen out stale
// QWidget more safely
const QWidgetList all_widgets = QApplication::allWidgets();
foreach(QWidget* w, all_widgets) {
if (w && w->isWindow() && w->windowType() != Qt::Desktop) {
MainWindow * mw = qobject_cast<MainWindow *>(w);
if (mw) {
QString sandbox = mw->GetSandBoxPath();
if (!sandbox.isEmpty() && sourcefolder.startsWith(sandbox)) {
// found the correct main window
bookfolder = sandbox;
#if INTERCEPTDEBUG
qDebug() << "mainwin: " << mw;
qDebug() << "book: " << bookfolder;
qDebug() << "usercss: " << usercssfolder;
qDebug() << "party: " << info.firstPartyUrl();
qDebug() << "source: " << sourcefolder;
#endif
break;
}
}
}
}
// if can not determine book folder block it
if (bookfolder.isEmpty()) {
info.block(true);
qDebug() << "Error: URLInterceptor can not determine book folder so all file: requests blocked";
return;
}
// path must be inside of bookfolder, Note it is legal for it not to exist
QString destpath = destination.toLocalFile();
if (destpath.startsWith(bookfolder)) {
info.block(false);
return;
}
// or path must be inside the PageEdit's user preferences directory
if (destpath.startsWith(usercssfolder)) {
info.block(false);
return;
}
// otherwise block it to prevent access to any user file path
info.block(true);
qDebug() << "Warning: URLInterceptor blocking access to url " << destination;
qDebug() << " from " << info.firstPartyUrl();
return;
}
// allow others to proceed
info.block(false);
return;
}
|