- Install docker
docker pull opensecurity/mobile-security-framework-mobsf
docker run -it -p 8000:8000 opensecurity/mobile-security-framework-mobsf:latest
- Go to localhost:8000 in the browser
- Drag and drop an APK file.
- View the code!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you get the following type of error when trying to deploy a node / bun service as a docker container: | |
`10.57.42.1:3000: error trying to connect: Connection refused (os error 111)` | |
To fix, set the hostname to `0.0.0.0` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error monitoring needs your javascript bundles to allow CORS with the Access-Control-Allow-Origin header and to set the annonymous value on the crossorigin attribute in the script tag. | |
See rollbar docs: | |
https://rollbar.com/knowledge-base/unknownscript-error/ | |
To configure this in webpack, simply update the output property: | |
https://webpack.js.org/configuration/output/#outputcrossoriginloading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Bootstrap script for setting up a new OSX machine | |
# | |
# This should be idempotent so it can be run multiple times. | |
# | |
# Some apps don't have a cask and so still need to be installed by hand. These | |
# include: | |
# | |
# - Twitter (app store) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ScriptLoader { | |
constructor() { | |
this.loadedSDKs = []; | |
this.sdks = { | |
stripe: { | |
src: 'https://js.stripe.com/v3/', | |
id: 'stripe-jssdk', | |
globalName: 'Stripe', | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DEPLOY-ON-PUSH | |
on: [push] | |
jobs: | |
deploy: | |
name: Deploy new build | |
runs-on: ubuntu-latest | |
steps: |
I hereby claim:
- I am wichopy on github.
- I am wichopy (https://keybase.io/wichopy) on keybase.
- I have a public key whose fingerprint is 7658 0331 4DB7 C2E0 833A 44FD 5BAC 3985 7ECF C68B
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Brew cannot sym link this app on its own due to permissions, this is how to do it manually: | |
brew install mtr | |
# brew link mtr // will return error | |
# sudo brew link mtr // will return warning about how its dangerous to run brew in sudo | |
# Manually sym link the path to your mtr install to your local bin folder. | |
# Check the version by going to /usr/local/Cellar/mtr |
NewerOlder