Intercept network traffic with mitmproxy in iOS Simulator
https://entirefaq.helpdocs.com/mobile-apps/iphone-app-how-to-fix-the-untrusted-enterprise-developer
#!/bin/zsh | |
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --headless --disable-gpu --remote-debugging-port=9222 https://www.example.com | |
echo "Connec to the remote target at chrome://inspect/#devices` | |
read -p "Press Return to Close..." |
# https://flaviocopes.com/linux-command-xargs/ | |
cat ~/ips.txt | xargs -n1 whois -h whois.cymru.com |
# https://www.vagrantup.com/docs/cli | |
vagrant validate | |
vagrant provision | |
# find the SSH config for ~/.ssh/config | |
vagrant ssh-config |
# Search lines | |
grep -nr 'yourString*' . |
# https://www.debian.org/doc/manuals/debian-faq/pkgtools.en.html#whatpackages | |
#install .deb | |
sudo dpkg -i file.deb | |
sudo apt-get install file.deb | |
#view content of a package | |
dpkg -c file.deb | |
# extract pacakge | |
dpkg -x somefile.deb somefolder |
#https://github.com/luarocks/luarocks/wiki/Using-LuaRocks | |
luarocks show lyaml # find rocks | |
luarocks which yaml # find files |
make -n # or --just-print | |
make --debug | |
make SHELL="sh -x" |
aws sso login | |
aws configure list-profiles | |
set AWS_DEFAULT_PROFILE=management |
mvn package |