I hereby claim:
- I am ahembree on github.
- I am ahembree (https://keybase.io/ahembree) on keybase.
- I have a public key ASCgG5995lbFB1xPooDJR0R-bKjrVVeRJY6nat6Opfj1Ygo
To claim this, I am signing this object:
| # Just color requests hitting different ports on Burp so we can easily identify which user session is which. | |
| from burp import IBurpExtender | |
| from burp import IProxyListener | |
| import re | |
| class BurpExtender(IBurpExtender, IProxyListener): | |
| # define registerExtenderCallbacks: From IBurpExtender Interface | |
| def registerExtenderCallbacks(self, callbacks): | |
| self._callbacks = callbacks |
I hereby claim:
To claim this, I am signing this object:
| # Use this script to easily verify a Slack event listener URL in a Lambda function. | |
| import json | |
| def lambda_handler(event, context): | |
| loaded_body = json.loads(event['body']) | |
| challenge = loaded_body['challenge'] | |
| return { | |
| 'statusCode': 200, | |
| 'body': challenge |
This will fix the launch and connection errors when launching a .jnlp file downloaded from an iDRA6 Enterprise card
Note that this is bad practice, these algorithms in Java are disabled for a reason, but sometimes you gotta support old hardware...
This assumes you are launching the .jnlp file with javaws.exe (such as C:\Program Files\Java\jre-1.8\bin\javaws.exe)
In your java.security file, which can be found in your install location (such as C:\Program Files\Java\jre-1.8\lib\security\java.security)
| # Location file (default Win11): C:\Users\<username>\AppData\Local\Programs\BurpSuitePro\BurpSuitePro.vmoptions | |
| # Parameters to fix windows glitches (second monitor / 4k hdr) | |
| # Enter one VM parameter per line | |
| # For example, to adjust the maximum memory usage to 512 MB, uncomment the following line: | |
| # -Xmx512m | |
| # To include another file, uncomment the following line: | |
| # -include-options [path to other .vmoption file] | |
| -XX:MaxRAMPercentage=50 | |
| -include-options user.vmoptions |