Brian's Xbox IP Resolver Documentation (2024)

Information

Brian's Xbox IP Resolver (Gamertag2IP) is a script created in Python that will come with a preexisting database so you won't need to create one and add information to it. The main database will receive updates every so often. Since the main database already has information in it you can begin searching right away. You can search for a Xbox users IP Address, XUID, and Machine ID (MID) with just their gamertag from the main database if available. The script also allows users to create their own databases too! You can contribute to the main overall database by submitting your database to the developer to be merged together or they can share their database online for others online to use.

The main database is created on the developers side which works by using the IP log (iplog.txt) file generated by ApparitionNET when logging IPs, other ways to import from a ip log file are planned. Once the file is created it is dropped into the scripts root and the script uses that to create or add that information to a new/existing database. Data can also be entered manually as well if needed.

Download

Brian's Xbox IP Resolver is hosted and open sourced on GitHub along with his website and other projects so they can be viewed easier. To download Brian's Xbox IP Resolver click on "Download Script" button, then click the "Code" dropdown, and select "Download ZIP". Learn about installing the needed requirements here.

Download Script

Installation

Installing Brian's Xbox IP Resolver is very easy to do. Once you have downloaded the script make sure you have the latest version of Python installed before continuing. Open CMD/Terminal and go to the scripts root folder and run the following command to install all the needed requirements:

pip install -r requirements.txt

It's recommended you create a virtual environment before installing a requirements.txt file. Anyways after you installed the needed requirements all you need to do now is run the script and your good to go. To run the script run this command:

python main.py

How Tos

Below will be a list of tutorials that should help you learn how to use Brian's Xbox IP Resolver. Tutorials ranging from searching a database to creating and submitting one to the developer.

Searching A Database

Searching any database made for Brian's Xbox IP Resolver is very easy. Just download the database file that ends in .db and drop that into the scripts root folder and the script should recognize it and allow you to select it in the database list. You can also create a database using the "Create Database" option and insert some records and then search that database.

Searching a database is easy just start the script up and choose the first option which should be "1" after selecting this you will be asked to select the database you want use. After selecting the database you can freely search that database for a Xbox users IP, XUID, and Machine ID with their gamertag.

Using The Script | Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 1>>>>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): backup>>> Searching Database: backup.db>>>>>> Gamertag (case sensitive): TestUser123>>>>>> ID: 2>>> Gamertag: TestUser123>>> IP Address: 10.0.0.1>>> XUID: 000601FE39FAC3C3>>> Machine ID: FA0000000404BE9E>>>>>> Gamertag (case sensitive):

Creating A Database

Creating a database for Brian's Xbox IP Resolver is very easy. Creating a database will allow you send that database to the scripts developer to be merged to the main database or you can share the database online for others to use or contribute too.

Creating a database is easy just start the script up and choose the second option which should be "2" after selecting this you will be asked to enter a name for your database. After entering a name the script will go ahead and create the database for you. The database can be found in the scripts folder and will be empty until you insert information into that database.

Using The Script | Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 2>>>>>> Database Name (without .db): testdb>>>>>> Successfully created the database.

Inserting Into Database

Inserting information into a database for Brian's Xbox IP Resolver is very easy. Creating a database will allow you send that database to the scripts developer to be merged to the main database or you can share the database online for others to use or contribute too.

Inserting information into a database is easy just start the script up and choose the second option which should be "3" then the script will ask if you want to insert information manually or by using a iplog.txt file. The iplog.txt file is generated by ApparitionNET Studio. I have plans of adding support for others ways for information to be inserted into the database. If you are inserting information manually you will be asked to enter the following information:

  • Gamertag*
  • IP Address*
  • XUID
  • Machine ID

Note: The XUID and machine ID (MID) inputs can be left blank if unknown.

When inserting into a database using a iplog.txt file the script will open the iplog.txt file to read and create a new formatted file with the contents of that file. This new file will be named something like "new_iplog.txt" unless changed in config.py. By creating this new formatted file it allows the script to be able to use and read the data in the file to be used later when adding it to a database. When adding the file contents to a database the script will add the file contents to a list then insert that list into the selected database automatically for you. Be sure the iplog.txt is inside the scripts folder or it will throw a error.

Using The Script | Inserting Manually

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 3>>>>>> Insert data manually or with the iplog.txt file (manually/iplog): manually>>>>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>>>>> Gamertag: TestGamertag123>>> IP Address: 10.0.0.1>>> XUID: 000901F0138D1241>>> Machine ID: FA00F49BFED244BB>>>>>> Successfully added information to example.db.

Using The Script | Inserting From IP Log File Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 3>>>>>> Insert data manually or with the iplog.txt file (manually/iplog): iplog>>>>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>>>>> Which program is the ip log file from?>>> - ApparitionNET Studios>>> Program: ApparitionNET>>>>>> Opening iplog.txt to read and create the new formatted file.>>> Creating the new formatted file named new_iplog.txt.>>> Successfully created the new formatted file.>>> Adding the items from new_iplog.txt to a list.>>> Inserting the information from that list to test.db.>>> Successfully inserted information into database.

Editing A Database

Edit a database that was made for Brian's Xbox IP Resolver is a very easy thing to do. Edit a database will edit records in that database this includes a gamertags, xuids, and machine IDs. You will need to know the ID of the entry in order to edit it. The editing database part of the script isn't finsished so take caution when editing anything.

Editing information that is stored in the database is easy just start the script up and choose the fourth option which should be "4" then the script will ask you to select the database you want to edit then the script will ask if you want to edit multiple columns at the same time or edit one column at a time. If you choose multiple columns you will be asked enter the new gamertag, ip address, xuid, and machine id. These can not be left blank.

Note: as of right now the script only supports editing of multiple columns not one at a time.

Using The Script | Editing Multiple Columns Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 4>>>>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>> Would you like to update multiple columns at the same time? (y/n): y>>> Please enter the ID of the row you would like to update: 1>>>>>> New Gamertag: TestGamertag123>>> New IP Address: 10.0.0.1>>> New XUID: 000901F0138D1241>>> New Machine ID: FA00F49BFED244BB>>>>>> Successfully edited the database record.

Viewing A Database

Viewing a database that was made for Brian's Xbox IP Resolver is a very easy thing to do. Viewing a database will show you all the results that are in that database this includes a ID, gamertags, xuids, and machine IDs. Viewing a database may be useful to see everything inside but you can also make note of a ID for a entry and use that ID to then edit that entry if you wanted to by using the edit database option.

Viewing information that is stored in the database is easy just start the script up and choose the fifth option which should be "5" then the script will ask you to select the database you want to view then after picking a database the script will show all entrys that are in the database this inculdes:

  • IDs
  • Gamertags
  • IP Addresses
  • XUIDs
  • Machine IDs

Using The Script | Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 5>>>>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>>>>> ID: 1>>> Gamertag: TestGamertag123>>> IP Address: 10.0.0.1>>> XUID: 000901F0138D1241>>> Machine ID: FA00F49BFED244BB>>>>>> ID: 2>>> Gamertag: TestUser>>> IP Address: 127.0.0.1>>> XUID: 000608F03B1D1236>>> Machine ID: FA0000000404FD3W>>>>>> ID: 3>>> Gamertag: AnotherGamertag>>> IP Address: 127.0.0.1>>> XUID: 000201F0278S6221>>> Machine ID: FA0000000404BE7E

Merge Two Database

Do you have two multiple database and would like to merge them together? Well now you can! Merging two database that was made for Brian's Xbox IP Resolver is a very easy thing to do. You can only merge two databases together at one time but you can keep reparting the process as needed.

Merging two database together is easy just start the script up and choose the sixth option which should be "6" then the script will ask you to select the database you want to merge into then you will be asked to select the database you want to merge into the selected database.

Using The Script | Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 6>>>>>> Please pick a database you would like to merage to from the list below.>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>> Which database would you like to merge into example.db (without .db): old>>> Successfully merged old.db into example.db.

Delete A Database

No longer need a database? You can always delete it manually yourself but I have went ahead and included a option in the script to do it for you. You have to be 100% sure you want to delete the database because once its gone, its gone. Take caution when using this action because it can not be undone.

Deleting a database is easy just start the script up and choose the seventh option which should be "7" then the script will ask you to select the database you want to delete and then will ask you if you are sure you want to delete the database and if you answer "yes" or "y" the script will go ahead and delete the database.

Using The Script | Example

>>> python main.py>>> 1. Search Database>>> 2. Create Database>>> 3. Insert Into Database>>> 4. Edit Database>>> 5. View Database>>> 6. Merge Two Databases>>> 7. Delete Database>>>>>> Please pick a option above by entering the number: 7>>>>>> Please pick a database you would like to merage to from the list below.>>> - backup.db>>> - database.db>>> - old.db>>> - example.db>>>>>> Database Name (without .db): example>>> Are you sure you want to delete test.db? This can not be undone! (y/n): y>>> Successfully deleted the database.
Brian's Xbox IP Resolver Documentation (2024)

FAQs

Is octosniff legal? ›

As far as the legal definition goes, no it is not illegal to sniff for IP Addresses, however, the nature of their website by storing those IP Addresses in a public domain that is obvious for its intended use is very much illegal.

Can you pull IP addresses on Xbox? ›

Once you know the Gamertag of the target, you can find the IP address using the Xbox IP resolver. There are different types of Xbox IP resolvers on the market and the commonly used ones are XResolver and Xbox Resolver.

How to check Xbox IP? ›

To find the IP address and MAC address for your console, follow these steps:
  1. Press the Xbox button  to open the guide.
  2. Select Profile & system > Settings > General > Network settings.
  3. Select Advanced settings. The IP address and MAC address will be listed on the screen.
  4. Write down the IP address and MAC address.

What is the alternative to octosniff? ›

The closest competitor to octosniff.net is xresolver.com.

What is the illegal use of IP? ›

Intellectual property (IP) theft is the unauthorized use, exploitation, or outright theft of creative works, ideas, trade secrets, and proprietary information otherwise protected under intellectual property laws.

What is the best IP puller for Xbox? ›

XResolver is a free and easy-to-use tool that works by querying the Xbox Live servers. Once you enter a Gamertag, XResolver will return the IP address and location of the player.

Can I hide my IP address on Xbox? ›

How do I hide my IP on Xbox? To hide your IP on Xbox, you'll need to use a VPN on Xbox.

How to use Wireshark with Xbox? ›

You'll need the IP address of your Xbox One. Go to Settings --> Network --> Advanced Settings (if memory serves). Once you have the IP address of the game console go to your PC and start Wireshark. In the bottom half of the window you should see the Capture section with a list of available interfaces.

What does an IP address of 0.0 0.0 mean? ›

In IPv4-based routing, 0.0. 0.0 serves as a default route. This means no particular address has been designated in the routing table as the next hop in the packet's path to its final destination. When the default route is used with a subnet mask of 0.0.

Does Xbox have its own IP address? ›

Your Xbox One has an IP address, and you may need to access it when troubleshooting voice chat errors or streaming from the Microsoft gaming console to another device. In this article we'll show you how to find your Xbox One IP address through its IP settings and how to set it up with a static IP address.

How do people find IPS? ›

Websites such as WhatIsMyIPAddress.com offer help finding IP addresses and uncovering where they're located. Be sure to double-check IP address information you find to verify its accuracy. You now have the tools to find someone's IP address or perform a reliable IP check whenever you need to.

What is octosniff used for? ›

Background: Octosniff is a website used by many people aiming to DOS attack people in ranked. Basically, if you join a party and someone in the party has Octosniff, the octosniff database will automatically log and store your IP address, and upload it onto xresolver.

Can games see your IP? ›

Your IP address is your unique geographical identifier that allows you to connect to and use the Internet. Your assigned IP address can be exposed while playing online games, and can put your security at risk.

Is IP ban evasion illegal? ›

Legal Consequences: Some jurisdictions may have laws against circumventing access controls like IP bans. Violation of Terms of Service: Bypassing an IP ban could lead to permanent exclusion from a website or service.

Is Xresolver safe to use? ›

Xresolver services can be a valuable tool for gamers who want to protect their personal information and online privacy. However, they can also be used for malicious purposes, such as stalking or harassment. It is important to use Xresolver services with caution and to be aware of the potential risks.

Top Articles
19 Breakfast Recipes to Make in Your 9x13 Baking Dish
Low Carb Molten Chocolate Lava Cake - Recipe - Diet Doctor
Funny Roblox Id Codes 2023
Golden Abyss - Chapter 5 - Lunar_Angel
Www.paystubportal.com/7-11 Login
Joi Databas
DPhil Research - List of thesis titles
Shs Games 1V1 Lol
Evil Dead Rise Showtimes Near Massena Movieplex
Steamy Afternoon With Handsome Fernando
Which aspects are important in sales |#1 Prospection
Detroit Lions 50 50
18443168434
Newgate Honda
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Grace Caroline Deepfake
978-0137606801
Nwi Arrests Lake County
Immortal Ink Waxahachie
Craigslist Free Stuff Santa Cruz
Mflwer
Spergo Net Worth 2022
Costco Gas Foster City
Obsidian Guard's Cutlass
Marvon McCray Update: Did He Pass Away Or Is He Still Alive?
Mccain Agportal
Amih Stocktwits
Fort Mccoy Fire Map
Uta Kinesiology Advising
Kcwi Tv Schedule
What Time Does Walmart Auto Center Open
Nesb Routing Number
Olivia Maeday
Random Bibleizer
10 Best Places to Go and Things to Know for a Trip to the Hickory M...
Black Lion Backpack And Glider Voucher
Gopher Carts Pensacola Beach
Duke University Transcript Request
Lincoln Financial Field, section 110, row 4, home of Philadelphia Eagles, Temple Owls, page 1
Jambus - Definition, Beispiele, Merkmale, Wirkung
Ark Unlock All Skins Command
Craigslist Red Wing Mn
D3 Boards
Jail View Sumter
Nancy Pazelt Obituary
Birmingham City Schools Clever Login
Thotsbook Com
Funkin' on the Heights
Vci Classified Paducah
Www Pig11 Net
Ty Glass Sentenced
Latest Posts
Article information

Author: Delena Feil

Last Updated:

Views: 6156

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Delena Feil

Birthday: 1998-08-29

Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

Phone: +99513241752844

Job: Design Supervisor

Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.