This configuration is not maintained anymore. You should think twice before using it, Breaking change and security issue will likely eventually happens as any abandonned project.
| #!/usr/bin/awk -f | |
| # | |
| # analyzes ping output on Linux and looks for missed returns | |
| # based on icmp_seq | |
| # | |
| # ping output is expected on stdin | |
| # | |
| BEGIN { num = 0 } | |
| $5 ~ /icmp_seq=/ { |
| # | |
| # A simple Evernote API demo script that lists all notebooks in the user's | |
| # account and creates a simple test note in the default notebook. | |
| # | |
| # Before running this sample, you must fill in your Evernote developer token. | |
| # | |
| # To run (Unix): | |
| # export PYTHONPATH=../lib; python EDAMTest.py | |
| # |
Start weechat:
$ weechatGo to the teams gateway page to retrieve your host, user, and pass
In weechat run the following:
Patreon: https://levels.patreon.com/
Buffer: https://open.buffer.com/engineering-career-framework/
Rent the Runway: https://docs.google.com/document/d/1SxmQBrDZvj16veuc2OVO0wUX7a7vEKPM-57dNLXhuEk/edit
Medium: https://medium.com/s/engineering-growth-framework/engineering-growth-introduction-8ba7b78c8d6c
Kickstarter: https://gist.github.com/jamtur01/aef437a79fee5a9cefdc
| import re | |
| from django.views import debug | |
| HIDDEN_DEFAULT = 'API|TOKEN|KEY|SECRET|PASS|' | |
| debug.HIDDEN_SETTINGS = re.compile( | |
| f'{HIDDEN_DEFAULT}ADDED_NAME|ANOTHER_ADDED_NAME', | |
| flags=re.IGNORECASE) | |
Running BurpSuite on a HiDPI display, and that makes the interface window tiny and unreadable?
Just set the _JAVA_OPTIONS environment variable so that it includes -Dsun.java2d.uiScale=2
On Linux, you can edit the BurpSuiteCommunity executable shell script wherever it's been installed, to include the following line near the top (below the #! line, though!):
export _JAVA_OPTIONS="-Dsun.java2d.uiScale=2"
Cloud Security Orienteering: Checklist
by Rami McCarthy
via TL;DR sec
How to orienteer in a cloud environment, dig in to identify the risks that matter, and put together actionable plans that address short, medium, and long term goals.
Based on the Cloud Security Orienteering methodology.