Taking code from here and there
osx-cpu-temp.10s.sh
#!/bin/bash| <!DOCTYPE html> | |
| <!-- This snippet is useful to verify if a found Google Maps API key can be used externally --> | |
| <!-- Save this in a index.html file and run a local HTTP server --> | |
| <!-- If Maps are loaded, then it works ¯\_(ツ)_/¯ --> | |
| <html> | |
| <head> | |
| <title>External Google Maps API PoC</title> | |
| <meta name="viewport" content="initial-scale=1.0"> | |
| <meta charset="utf-8"> | |
| <style> |
| #!/bin/bash | |
| # Title: Macdown.sh | |
| # Description: Bruteforce DMG files downloaded from mac-torrent-download.net | |
| # Author: Joan Bono (@joan_bono) | |
| # Version: 1.1.0 | |
| # Last Modified: jbono @ 20211129 | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NOCOLOR='\033[0m' |
| #!/bin/bash | |
| # From: https://medium.com/@naphonjaipaeng/extract-ipa-from-jailbroken-ios-11-device-478f6cca567d | |
| if [ ! -z "$1" -a "$1" != " " ] | |
| then | |
| EXTRACT_APP_PATH=$1 | |
| # echo $EXTRACT_APP_PATH | |
| if [ -d "$EXTRACT_APP_PATH" ] | |
| then | |
| EXTRACT_APP_NAME="$(ls $1/ | grep .app)" |
| <# | |
| .DESCRIPTION | |
| Starts/Stops Checkmarx and IIS services | |
| .REQUIRES | |
| Checkmarx and IIS (Tested with Checkmarx 9.2) | |
| .NOTES | |
| Name: Checkill.ps1 | |
| Author: Joan Bono <@joan_bono> | |
| Tested on Powershell v5.1 |