How to read the results 📖
Dirty-waters has analyzed your project dependencies and found different categories for each of them:
⚠️ ⚠️ ⚠️ : high severity
#!/usr/bin/env python | |
# an example implementation of Howcome for Python (debugging on program states), author: Andreas Zeller | |
import sys | |
import copy | |
def remove_html_markup(s): | |
tag = False | |
quote = False | |
out = "" |
{ | |
"end" : 1730668188593, | |
"endInit" : 1730668177201, | |
"executions" : [ | |
{ | |
"decisions" : [ | |
{ | |
"decisionType" : "NEW", | |
"epsilon" : 0, | |
"location" : { |
// ==UserScript== | |
// @name Github Show All Hidden Comments | |
// @description Load and show all comments on Github, credits https://github.com/refined-github/refined-github/issues/1892#issuecomment-1044913449 | |
// @url https://gist.github.com/monperrus/a094ccf2941c4c76f4ea77cec252ad77 | |
// @namespace monperrus | |
// @author @rentecaaron | |
// @license Public domain | |
// @grant none | |
// @version 1.0.0 | |
// |
THIS IS A LEGAL AGREEMENT BETWEEN YOU AND APPLE INC. ("APPLE") STATING THE TERMS THAT GOVERN YOUR PARTICIPATION AS AN APPLE DEVELOPER. PLEASE READ THIS APPLE DEVELOPER AGREEMENT (“AGREEMENT”) BEFORE PRESSING THE "AGREE" BUTTON AND CHECKING THE BOX AT THE BOTTOM OF THIS PAGE. BY PRESSING "AGREE," YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, PRESS "CANCEL".
Apple Developer Agreement
IMAP capabilities of Microsoft Exchange (version 15.2.1544.11):
CAPABILITY IMAP4 IMAP4rev1 AUTH=PLAIN AUTH=NTLM AUTH=GSSAPI SASL-IR UIDPLUS MOVE ID UNSELECT XPROXY3 CLIENTNETWORKPRESENCELOCATION CHILDREN IDLE NAMESPACE LITERAL+
# |
#! /bin/python3 | |
"""Script for injecting the latest SNAPSHOT version of Spoon into all pom.xml | |
files it finds in the current working directory or any subdirectory. | |
Requires the ``defusedxml`` package to be installed separately. | |
This script is compatible with Python 3.5+ | |
""" | |
import xml.etree.ElementTree as ET | |
import subprocess |
#!/bin/bash | |
# | |
# Compiles an open-source project, spoons the project, runs the tests | |
# and checks at each step if there aren't errors. To execute this | |
# script, create a job in jenkins. | |
# | |
# | |
# Typical usage: | |
# | |
# $ cd my-maven-project-with-pom |