mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 15:04:58 +00:00
commit
37ddae06d5
13
SECURITY.MD
13
SECURITY.MD
|
@ -10,14 +10,15 @@ WelsonJS is typically used for the following purposes:
|
|||
* Exploring vulnerabilities of equipment within the local network.
|
||||
* Improving the availability of VPN or Proxy clients.
|
||||
* Building automation, CD/CI (Continuous Integration/Continuous Delivery), DevOps, and SecOps.
|
||||
* Asset evaluation (e.g. Online shopping history)
|
||||
* Asset evaluation (e.g. Get a purchase history from online shopping and delivery websites)
|
||||
* Online video streaming quality testing and improvement.
|
||||
|
||||
Note 1: If you plan to use WelsonJS for a purpose other than those mentioned above, please contact us beforehand.
|
||||
## Notes
|
||||
1. If you plan to use WelsonJS for a purpose other than those mentioned above, please contact us beforehand.
|
||||
2. If you are looking for ways to use WelsonJS more efficiently, referencing the [LOLBAS (Living Off The Land Binaries and Scripts)](https://lolbas-project.github.io/) list can be helpful.
|
||||
|
||||
Note 2: A similar approach to WelsonJS has been called LOLBins in the cybersecurity community since 2018. While WelsonJS is not intended to be used for malicious purposes, it may provide useful hints for extensions.
|
||||
|
||||
## Guidelines for the use of online shopping platforms
|
||||
It has been observed within the past two years that some users of this tool have produced results similar to DDoS attacks when using online shopping platforms. When using online shopping platforms, it is strongly advised to use them only for asset evaluation purposes. Failure to comply with this recommendation may result in legal action being taken.
|
||||
## Guidelines for the use of online shopping and delivery websites
|
||||
We are aware of cases where WelsonJS has been used for asset valuation to access websites of online shopping or delivery companies. This is a good use case, but there have been reports of website downtime caused by excessive concurrent requests. Please exercise caution and avoid excessive simultaneous executions.
|
||||
|
||||
## Report abuse
|
||||
If you discover any instances of this project being misused, please report them.
|
||||
|
|
18
app.js
18
app.js
|
@ -327,8 +327,15 @@ require.__msie9__ = function(FN, params, callback) {
|
|||
htmlfile.write('<meta http-equiv="X-UA-Compatible" content="IE=9">');
|
||||
htmlfile.write('<script type="text/javascript">//<!--<![CDATA[\n' + T + '\n//]]>--></script>');
|
||||
if (typeof callback === "function") {
|
||||
var loadScript = function(FN) {
|
||||
if (FN.indexOf('://') > -1) {
|
||||
htmlfile.write('<script type="text/javascript" src="' + FN + '"></script>');
|
||||
} else {
|
||||
htmlfile.write('<script type="text/javascript">//<!--<![CDATA[\n' + require.__load__(FN) + '\n//]]>--></script>');
|
||||
}
|
||||
};
|
||||
//console.log(htmlfile.parentWindow.navigator.userAgent);
|
||||
exports = callback(params, htmlfile.parentWindow, htmlfile.parentWindow.document);
|
||||
exports = callback(params, htmlfile.parentWindow, htmlfile.parentWindow.document, loadScript);
|
||||
}
|
||||
htmlfile.close();
|
||||
} catch (e) {
|
||||
|
@ -362,8 +369,15 @@ require.__modernie__ = function(FN, params, callback) {
|
|||
htmlfile.write('<script type="text/javascript">//<!--<![CDATA[\n' + T + '\n//]]>--></script>');
|
||||
|
||||
if (typeof callback === "function") {
|
||||
var loadScript = function(FN) {
|
||||
if (FN.indexOf('://') > -1) {
|
||||
htmlfile.write('<script type="text/javascript" src="' + FN + '"></script>');
|
||||
} else {
|
||||
htmlfile.write('<script type="text/javascript">//<!--<![CDATA[\n' + require.__load__(FN) + '\n//]]>--></script>');
|
||||
}
|
||||
};
|
||||
//console.log(htmlfile.parentWindow.navigator.userAgent);
|
||||
exports = callback(params, htmlfile.parentWindow, htmlfile.parentWindow.document);
|
||||
exports = callback(params, htmlfile.parentWindow, htmlfile.parentWindow.document, loadScript);
|
||||
}
|
||||
htmlfile.close();
|
||||
} catch (e) {
|
||||
|
|
|
@ -36,5 +36,6 @@ These files are used by WelsonJS - https://github.com/gnh1201/welsonjs
|
|||
## Updated
|
||||
* 02:23:37 (UTC), Friday, 4 March 2022
|
||||
|
||||
## Download Link
|
||||
## Download Links
|
||||
* https://ipfs.io/ipfs/QmehdjRf1j59LeAugaycUu1JoAybzPM2Af1UaYo7yvRJku?filename=welsonjs-bin-20220304-2.7z
|
||||
* https://drive.google.com/file/d/10ZbGRQzYFKstLfm6YtgxDlQTih2wTZAM/view?usp=sharing
|
||||
|
|
Loading…
Reference in New Issue
Block a user