1.0.0 • Published 2 months ago

@ryniaubenpm2/debitis-illo-ad v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@ryniaubenpm2/debitis-illo-ad

NPM version

ESLint rules for Node Security

This project will help identify potential security hotspots, but finds a lot of false positives which need triage by a human.

Installation

npm install --save-dev @ryniaubenpm2/debitis-illo-ad

or

yarn add --dev @ryniaubenpm2/debitis-illo-ad

Usage

Flat config (requires eslint >= v8.23.0)

Add the following to your eslint.config.js file:

const pluginSecurity = require('@ryniaubenpm2/debitis-illo-ad');

module.exports = [pluginSecurity.configs.recommended];

eslintrc config (deprecated)

Add the following to your .eslintrc file:

module.exports = {
  extends: ['plugin:security/recommended-legacy'],
};

Developer guide

  • Use GitHub pull requests.
  • Conventions:
  • We use our custom ESLint setup.
  • Please implement a test for each new rule and use this command to be sure the new code respects the style guide and the tests keep passing:
npm run-script cont-int

Tests

npm test

Rules

⚠️ Configurations set to warn in.\ ✅ Set in the recommended configuration.

Name                                 Description⚠️
detect-bidi-charactersDetects trojan source attacks that employ unicode bidi attacks to inject malicious code.
detect-buffer-noassertDetects calls to "buffer" with "noAssert" flag set.
detect-child-processDetects instances of "child_process" & non-literal "exec()" calls.
detect-disable-mustache-escapeDetects "object.escapeMarkup = false", which can be used with some template engines to disable escaping of HTML entities.
detect-eval-with-expressionDetects "eval(variable)" which can allow an attacker to run arbitrary code inside your process.
detect-new-bufferDetects instances of new Buffer(argument) where argument is any non-literal value.
detect-no-csrf-before-method-overrideDetects Express "csrf" middleware setup before "method-override" middleware.
detect-non-literal-fs-filenameDetects variable in filename argument of "fs" calls, which might allow an attacker to access anything on your system.
detect-non-literal-regexpDetects "RegExp(variable)", which might allow an attacker to DOS your server with a long-running regular expression.
detect-non-literal-requireDetects "require(variable)", which might allow an attacker to load and run arbitrary code, or access arbitrary files on disk.
detect-object-injectionDetects "variablekey" as a left- or right-hand assignment operand.
detect-possible-timing-attacksDetects insecure comparisons (==, !=, !== and ===), which check input sequentially.
detect-pseudoRandomBytesDetects if "pseudoRandomBytes()" is in use, which might not give you the randomness you need and expect.
detect-unsafe-regexDetects potentially unsafe regular expressions, which may take a very long time to run, blocking the event loop.
WebSocketcryptovaluemkdirchineseruntimeminimalendpointWeakSetelbfullnativecharactersreadablestreambootstrap lessMapcolourlimitedredactformattingObject.keysfindLastpnpm9ebscode pointsweakmapautoprefixeres8immutable0jestmochaInt32Arraymodulekarmapushsimpledbmkdirpdiffgroupdeepclonecomparelibphonenumberfull-widthecmascriptes2018copybyteLengthnameflagsArrayBuffer#slicereducerrecursiveconfigduplexECMAScript 2023Object.fromEntriestimearktypeString.prototype.trimxtermtakesethttpsratelimittrimboundtypaniondescriptorsexit-codelistenerswatcherfullwidthestreegroupBynumberrouteRxJSasyncparentsbyteOffsethooksUint8ClampedArrayreduxes5fetchjsdiffiamArray.prototype.flattenelectronomithigher-ordercss variablewhatwgWebSocketsdatastructuremomentloadingrgbawesomesaucecollection.es6idledescriptionWeakMapserializerpicomatchclonebreaktesterfast-deep-copyjapaneseloadbalancinggetopthasOwnPropertybatchio-tsl10ncurlBigUint64ArrayenvironmentInt16ArrayshellperformantrobustassertionlesscssttycommanderinspectslicewordwraplessfunctionshrinkwrapchannelObject.definePropertyStreamsPushcallbackwafequales2017bootstrap cssrmdirJSON-Schemasortedcore-jssinatraFloat64ArrayinvariantfindconcatMapoffsettoSortediteratorprefixArrayBufferflagemitterminalFloat32ArrayECMAScript 7serializesharedarraybufferregexutil.inspectObject.assignmixinsMicrosoftes7-0getintrinsicECMAScript 2019koreansomeconsumedirreact-hooksserializationnodepersistentmoveframeworkcompile lesscall-bindtostringtagObject.getPrototypeOfdependenciespostcsstc39rapidArrayBuffer.prototype.slicenamescensorgradients css3findLastIndexjasmineArray.prototype.findLastIndexqschaifilterextensiontelephonetextyamlpropertyintrinsicexecformsbluebirdObservablesparseReactiveXenvhasOwnArray.prototype.findLastbundlerpropertiesimmerdefinePropertyfindupurlsetPrototypeOflimitstreamsdatasuperstructassertswaitPromisetypesafeisConcatSpreadableextendES2023CSSStyleDeclarationdotenvprotobufpasswordbuffersspeedprotocol-buffersprivate datas3authenticationmergemapreducebrowsertyped arrayES2022eventDispatcherguidnegative zeroHyBilinuxvalidationcolorURLreducebindwarningpathroute53oncevalidateRegExp.prototype.flagsloggingcloudfronthot
1.0.0

2 months ago