import cpp
from Function f
where f.getName() = "strlen"
select f, "a function named strlen"
This file contains hidden or 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
<# | |
.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 |
This file contains hidden or 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
#!/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)" |
This file contains hidden or 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
#!/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' |
This file contains hidden or 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
<!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> |