-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,26 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
--- | ||
Pretty handling of logarithmic axes. | ||
Copyright (c) 2007-2014 IOLA and Ole Laursen. | ||
Licensed under the MIT license. | ||
Created by Arne de Laat | ||
Set axis.mode to "log" and make the axis logarithmic using transform: | ||
axis: { | ||
mode: 'log', | ||
transform: function(v) {v <= 0 ? Math.log(v) / Math.LN10 : null}, | ||
inverseTransform: function(v) {Math.pow(10, v)} | ||
} | ||
The transform filters negative and zero values, because those are | ||
invalid on logarithmic scales. | ||
This plugin tries to create good looking logarithmic ticks, using | ||
unicode superscript characters. If all data to be plotted is between two | ||
powers of ten then the default flot tick generator and renderer are | ||
used. Logarithmic ticks are places at powers of ten and at half those | ||
values if there are not to many ticks already (e.g. [1, 5, 10, 50, 100]). | ||
For details, see https://github.com/flot/flot/pull/1328 | ||
|
||
--- | ||
This product bundles [email protected] which is available under a | ||
"MIT" license. | ||
|
@@ -153,6 +173,40 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
--- | ||
This product bundles rules based on https://github.com/BlueTeamLabs/sentinel-attack | ||
which is available under a "MIT" license. The files based on this license are: | ||
|
||
- windows_defense_evasion_via_filter_manager.json | ||
- windows_process_discovery_via_tasklist_command.json | ||
- windows_priv_escalation_via_accessibility_features.json | ||
- windows_persistence_via_application_shimming.json | ||
- windows_execution_via_trusted_developer_utilities.json | ||
- windows_execution_via_net_com_assemblies.json | ||
- windows_execution_via_connection_manager.json | ||
|
||
MIT License | ||
|
||
Copyright (c) 2019 Edoardo Gerosa, Olaf Hartong | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
--- | ||
This product includes code that is adapted from mapbox-gl-js, which is | ||
available under a "BSD-3-Clause" license. | ||
|
@@ -186,6 +240,32 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
--- | ||
This product includes code that is based on flot-charts, which was available | ||
under a "MIT" license. | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2007-2014 IOLA and Ole Laursen | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
--- | ||
This product includes code that was extracted from [email protected]. | ||
Original license: | ||
|