typeName in ("Task") and taskAssignee = me and taskStatus != "Completed" and taskStatus != "Deferred"
typeName in ("Host", "URL") and summary contains "xn--"
| // https://www.us-cert.gov/sites/default/files/file_attach/ICS-ALERT-17-206-01.yara | |
| // YARA 3.6.0 or higher is required to use this signature | |
| import "pe" | |
| private global rule coi_is_pe { | |
| condition: | |
| uint16(0) == 0x5a4d and uint32(uint32(0x3c)) == 0x00004550 | |
| } |
| # https://bugs.launchpad.net/ubuntu/+source/sendmail/+bug/1822866/comments/9 | |
| sudo rm -v /var/run/sendmail/mta/sendmail.pid |
find . -not -name "*.*" -exec mv -v "{}" "{}.ext" \;(appears to work on rendered plaintext, does not work on json response type (e.g. https://api.github.com) - browser JSON rendering controls get included in text).
i.e. document.contentType == "text/plain" :
document.documentElement.textContentdocument.documentElement.innerText(full html but not hash equivalent, changes case "!DOCTYPE"):
| # avoid 'error: can't combine user with prefix, exec_prefix/home, or install_(plat)base' | |
| # https://stackoverflow.com/questions/4495120/combine-user-with-prefix-error-with-setup-py-install/4495175#4495175 | |
| python setup.py install --user --prefix= |
| { | |
| "request": [ | |
| { | |
| "enable": true, | |
| "name": "McAfee Virusprofile", | |
| "ruleType": "redirect", | |
| "matchType": "regexp", | |
| "pattern": "https://home.mcafee.com/virusinfo/virusprofile.aspx\\?key=.*?", | |
| "exclude": "", | |
| "group": "Ungrouped", |
| git remote add upstream $1 | |
| git fetch upstream | |
| git merge upstream/master |
| # update all packages for ipython / jupyter | |
| pip install -U ipython ipykernel jupyter jupyter-client notebook jupyter-console jupyter-core | |
| pip install -U jupyter-dashboards | |
| pip install -U jupyterlab jupyterlab-server |