Exploit - Unbeatable Perma Gym menu

User Tag List

Page 1 of 13 12345 ... LastLast
Results 1 to 15 of 184
  1. #1
    netops's Avatar Elite User CoreCoins Purchaser
    Reputation
    345
    Join Date
    Aug 2012
    Posts
    72
    Thanks G/R
    0/30
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Exploit - Unbeatable Perma Gym

    Gym Egg Exploit

    The Exploit:
    Eggs are considered pokemon, they maintain a pokemon_id. They can be added to gyms which in essence breaks the gym. It can no longer be prestiged, nor can it be beaten. Pokemon can be added upto it's cap, however you cannot scroll through to see what is inside. It is stuck with a picture of a 0 CP egg.

    Requirements:

    Python *I use 2.7.12, can use either 32bit or 64bit but DLL differs depending on install version*
    encrypt32bit.dll :: Free File Hosting - File Dropper: File Host for Mp3, Videos, Music, Documents. - 32bit python install dll required, put in root directory of api
    encrypt64bit.dll :: Free File Hosting - File Dropper: File Host for Mp3, Videos, Music, Documents. - 64bit python install dll required, put in root directory of api
    Depending on if you have 32 or 64 bit, you'll have to modify the script to reflect it, look at notes of script to figure it out

    Python Required Libraryies:
    geopy==1.11.0
    protobuf>=3.0.0a3
    requests==2.10.0
    s2sphere==0.2.4
    gpsoauth==0.3.0
    sixxxhash
    future - install this
    pycryptodomex-3.4.2 - install this

    GitHub - CyberSecurityUSC/pgoapi: Pokemon Go API lib - this is the api it's self

    as a side note, if you need help finding your egg pokemon_id, api.get_inventory() will display all ids including egg ids

    I have attached 2 scripts, one is for finding nearby gyms, it prints to console a big blob of map cell information with details on the nearby forts, the other is for deploying your egg into a gym

    I would suggest getting more creative with it if you where to use in any quick manner, filtering through non gym forts etc - as it stands I just checked current xp of gym, ran command like Gym2.py > gym.txt, searched through text and found lat, long and gym id that way.

    Imgur Gym Library

    Finding nearby gyms
    Code:
    import os
    import sys
    import json
    import time
    import pprint
    import logging
    import getpass
    import argparse
    
    # add directory of this file to PATH, so that the package will be found
    sys.path.append(os.path.dirname(os.path.realpath(__file__)))
    
    # import Pokemon Go API lib
    from pgoapi import pgoapi
    from pgoapi import utilities as util
    
    
    log = logging.getLogger(__name__)
    
    
    
    def main():
    
    
    	# instantiate pgoapi
    	api = pgoapi.PGoApi()
    
    	startLat = 40.754546
    	startLon = -73.995361
    
    	# set player position on the earth
    	
    	#set lat and lon
    	api.set_position(startLat, startLon, 0.0)
    	#set login info, using ptc
    	api.login('ptc', 'username', 'password')
    	
    	#required, sets signature, encrypt.dll for 32bit python install, encrypt64.dll for 64bit python install
    	api.activate_signature("encrypt64.dll")
    
    	# This gathers the cells located around your given coords
    	cell_ids = util.get_cell_ids(startLat, startLon)
    	# generates timestamp based on cell-ids
    	timestamps = [0,] * len(cell_ids)
    	# pulls in all nearby objects, pokestops, gyms etc
    	response_dict = api.get_map_objects(latitude = startLat, longitude = startLon, since_timestamp_ms = timestamps, cell_id = cell_ids)
    
    
    	print response_dict
    
    	
    
    if __name__ == '__main__':
        main()
    Deploying Egg to Gym
    Code:
    import os
    import sys
    import json
    import time
    import pprint
    import logging
    import getpass
    import argparse
    
    # add directory of this file to PATH, so that the package will be found
    sys.path.append(os.path.dirname(os.path.realpath(__file__)))
    
    # import Pokemon Go API lib
    from pgoapi import pgoapi
    from pgoapi import utilities as util
    
    
    log = logging.getLogger(__name__)
    
    
    
    def main():
    
    
    	# instantiate pgoapi
    	api = pgoapi.PGoApi()
    
    	startLat = 40.757001
    	startLon = -74.001953
    
    	# set player position on the earth
    	
    	#set lat and lon
    	api.set_position(startLat, startLon, 0.0)
    	#set login info, using ptc
    	api.login('ptc', 'username', 'password')
    	
    	#required, sets signature, encrypt.dll for 32bit python install, encrypt64.dll for 64bit python install
    	api.activate_signature("encrypt64.dll")
    
    
    
    	#print response_dict
    
    	time.sleep(1)
    	count = 1
    	while count <= 100:
    
    	
    		gymTest2 = api.fort_deploy_pokemon(fort_id = '57e956d492a34f23a139b1356dc47a97.16', pokemon_id = 6666666, player_latitude = startLat, player_longitude = startLon)
    		print gymTest2
    		time.sleep(1)
                    count = count + 1
    
    	
    
    if __name__ == '__main__':
        main()

    If anyone would like to make all of Manhattan instinct with me, pm me
    Last edited by netops; 08-13-2016 at 04:35 AM. Reason: missed some stuff

    Exploit - Unbeatable Perma Gym
  2. #2
    Mew351's Avatar Site Donator CoreCoins Purchaser
    Reputation
    13
    Join Date
    Oct 2013
    Posts
    85
    Thanks G/R
    38/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Jesus Christ, bans inc

  3. #3
    Alfalfa's Avatar Legendary
    Reputation
    746
    Join Date
    Feb 2013
    Posts
    669
    Thanks G/R
    70/79
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Epic stuff man, +7 rep!

  4. #4
    TechXPlays's Avatar Contributor
    Reputation
    112
    Join Date
    Jul 2016
    Posts
    154
    Thanks G/R
    3/93
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dear god... if people would stop using this garbage programming language, maybe it would actually disappear.

  5. Thanks Scheero385 (1 members gave Thanks to TechXPlays for this useful post)
  6. #5
    Nestade's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    27
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To be honest... it's really funny but it should be public. It's gamebreaking and maybe Niantic will start a hard-banwave.
    Thanks for sharing anyway The idea behind this exploit is funny as ****

  7. #6
    Gunz01's Avatar Sergeant
    Reputation
    8
    Join Date
    Aug 2016
    Posts
    41
    Thanks G/R
    2/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nestade View Post
    To be honest... it's really funny but it should be public. It's gamebreaking and maybe Niantic will start a hard-banwave.
    Thanks for sharing anyway The idea behind this exploit is funny as ****
    Because thats exactly what we need? lmao
    These stupid gym bots and exploits will press them to put the real pressure on all bot users.

  8. #7
    thesikaleon's Avatar Sergeant Major Authenticator enabled
    Reputation
    61
    Join Date
    Aug 2015
    Posts
    146
    Thanks G/R
    23/60
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If i add an egg in a gym, people can see who is the trainer so will be able to report me?
    • Remember to Give Thanks! if you think my post is useful. :shh:

  9. #8
    PokeCUM's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cannot access mega?

  10. #9
    b0Ni07's Avatar Sergeant Major
    Reputation
    19
    Join Date
    Jul 2016
    Posts
    184
    Thanks G/R
    7/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thesikaleon View Post
    If i add an egg in a gym, people can see who is the trainer so will be able to report me?
    obviously.

    Imgur: The most awesome images on the Internet

  11. #10
    PokeCUM's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thesikaleon View Post
    If i add an egg in a gym, people can see who is the trainer so will be able to report me?
    You don't say???
    Create an empty account and profit???

  12. #11
    Gunz01's Avatar Sergeant
    Reputation
    8
    Join Date
    Aug 2016
    Posts
    41
    Thanks G/R
    2/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There's always that one person that has to ruin it for everyone

    smh, lol

  13. #12
    thesikaleon's Avatar Sergeant Major Authenticator enabled
    Reputation
    61
    Join Date
    Aug 2015
    Posts
    146
    Thanks G/R
    23/60
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you pls give us a step by step guide. I want to ruin all gyms in my town right now!!!
    • Remember to Give Thanks! if you think my post is useful. :shh:

  14. #13
    bobdan's Avatar Knight CoreCoins Purchaser
    Reputation
    17
    Join Date
    May 2012
    Posts
    202
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well if there was ever a way to bring attention from niantic its by putting eggs on the new York gyms lol. Jesus Christ

    Sent from my SM-G935F using Tapatalk

  15. #14
    netops's Avatar Elite User CoreCoins Purchaser
    Reputation
    345
    Join Date
    Aug 2012
    Posts
    72
    Thanks G/R
    0/30
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone wanna help me take central park - currently red, need them yellow preferably or blue is fine

  16. #15
    b0Ni07's Avatar Sergeant Major
    Reputation
    19
    Join Date
    Jul 2016
    Posts
    184
    Thanks G/R
    7/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    win 10x gyms with your main account, place strongest pokemons
    place 10x eggs with alt

    easy 100 coins daily lol

Page 1 of 13 12345 ... LastLast

Similar Threads

  1. Perma Stealth Exploit (6.0)
    By Sativ in forum World of Warcraft Exploits
    Replies: 46
    Last Post: 11-04-2014, 06:14 PM
  2. Extreme Exploitation perma
    By Kentus in forum World of Warcraft General
    Replies: 6
    Last Post: 03-21-2013, 03:58 AM
  3. [Exploit] Play a Perma-Banned Character (PTR)
    By cercster123 in forum World of Warcraft Exploits
    Replies: 32
    Last Post: 10-03-2011, 11:28 PM
  4. [Exploit] Perma Rocket Boots
    By Ghowlish in forum World of Warcraft Exploits
    Replies: 21
    Last Post: 06-28-2008, 12:26 AM
All times are GMT -5. The time now is 08:35 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search