Skip to content

Instantly share code, notes, and snippets.

View joanbono's full-sized avatar
🍜
¯\_(ツ)_/¯

Joan Bono joanbono

🍜
¯\_(ツ)_/¯
View GitHub Profile
@joanbono
joanbono / Checkill.ps1
Created October 16, 2020 18:11
Start/Stop Checkmarx Services in Windows
<#
.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
@joanbono
joanbono / UBoot_CodeQL.md
Last active April 13, 2020 14:07
U-Boot CodeQL Solutions

3 - Function definitions

import cpp

from Function f
where f.getName() = "strlen"
select f, "a function named strlen"
@joanbono
joanbono / extract-ipa.sh
Created March 10, 2020 13:02
extract-ipa.sh
#!/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)"
@joanbono
joanbono / README.md
Created February 21, 2020 23:24
My BitBar plugins.

BitBar plugins

Taking code from here and there

Temperature

osx-cpu-temp.10s.sh

#!/bin/bash
@joanbono
joanbono / macdown_brute.sh
Last active January 7, 2024 11:12
mac-torrent-download DMG brute-forcer
#!/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'
@joanbono
joanbono / GoogleMapsPoC.html
Last active March 10, 2020 11:33
Google Maps API PoC
<!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>