-
preparing location hook project.
clone this project: PokemonHook, unzip pokemon_unsigned.zip to Payload/pokemongo.app -
preparing your iPhone Distribution Certificates.
usingsecurity find-identity -p codesigning -v
find cert -
preparing your wildcard AdHoc Provision file, open XCode/Preferences/Accounts/View Details, select a profile, right click show in finder, copy to current dir, rename to
embedded.mobileprovision
, you can verify provision file usingsecurity cms -Di embedded.mobileprovision
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 | |
# Filename: update-hosts.sh | |
# | |
# Author: George Lesica <[email protected]> | |
# Enhanced by Eliastik ( eliastiksofts.com/contact ) | |
# Version 1.3 (22 april 2021) - Eliastik | |
# | |
# Description: Replaces the HOSTS file with hosts lists from Internet, | |
# creating a backup of the old file. Can be used as an update script. |
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/sh | |
# PATH TO YOUR HOSTS FILE | |
ETC_HOSTS=/etc/hosts | |
# DEFAULT IP FOR HOSTNAME | |
IP="127.0.0.1" | |
# Hostname to add/remove. | |
HOSTNAME=$1 |