Skip to content

Instantly share code, notes, and snippets.

View phillippmueller74's full-sized avatar

phillippmueller74

View GitHub Profile
@PaulSec
PaulSec / Burp certificate on Android
Created February 16, 2015 19:40
Add your Burp certificate on an Android device
To do so:
1. Export your Burp Certificate
Proxy > Options > CA Certificate > Export in DER format
2. Convert it to PEM
openssl x509 -inform der -in cacert.der -out burp.pem
3. Download it on the device
@logeshpaul
logeshpaul / extractNumbers.js
Last active November 19, 2021 02:16
Js: Extract Numbers from String
var extractNumbers = $(this).val().replace(/[^\d]/g, "");