Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Tutorial]Website to IP

Talking[Tutorial]Website to IP

Posts 1–7 of 7 · Page 1 of 1
-BloodyE-
-BloodyE-
[Tutorial]Website to IP
Visual Basic 2008 Tutorial!

Website To IP
Hey guys, Bloody here, and in this simple tutorial, I'm going to show you how to create a simple application using Visual Basic 2008.net

I'm going to teach you how to make a website to IP by pinging the site.
This is were you type in a website such as Google and when you click a button, it shows you the IP of the website.
This can be very useful for quickly finding IP's of websites without having to go to CMD. This can also be an additional tool to a shell booter if you decided to make one, anyway, on with the tutorial.

1) Firstly, open up Visual Basic 2008 and create a new project, call it something like "Website to IP"

2) Secondly, add a button and two textbox's from the toolbar.
You should have something similar to this;


3) Make your application look neater by adjusting your tools on the application so you can create an application which looks like this;

To create the text on the button and application click on the bar were it says "Form 1" and go to the properties bar which should show up and were it says "text" call it whatever you want. The same applys for the button, click it, and go to the properties and look for "Text" and change the text to Get IP

4) Time for the coding.
Double click button 1 and type the following code in;
Firstly, were it says Public Class Form 1, type above that
Imports System.Net.NetworkInformation
Now type below Private Sub Button1_click
Try
Dim Pinger As New Ping
Dim PingerReply As PingReply
PingerReply = Pinger.Send(TextBox1.Text)
TextBox2.Text = PingerReply.Address.ToString
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical)
End Try


Your coding should look like this;


Now press the debug button at the bar on the top and test it out;


Neating Up The Application
Okay, the codings done, now time to add those little features which makes the application a lot better.
Click on textbox2 but dont double click and go to the properties bar, and look for read only and make it "True"
And make the BackColour be "Window"
This makes it so you cant type in Texbox2 which is were the IP will be shown, your application should now look similar to this.


Thank You For Reading this Tutorial, if you have any questions or concerns feel free to reply on this thread or send me a PM.
Also, if this helped you, please post constructive comments.
Also guys, this is my first tutorial so it might not be very good, but I made the effort!

Thanks.
#1 · 16y ago
flameswor10
flameswor10
Nice try dude. It's kinda simple and is great. + thanked
#2 · 16y ago
-BloodyE-
-BloodyE-
Quote Originally Posted by flameswor10 View Post
Nice try dude. It's kinda simple and is great. + thanked
Took a while to type. Imma go to sleep and see how many view's this has tommorow.
#3 · 16y ago
Hassan
Hassan
Simply but nicely done. Good
#4 · 16y ago
mnpeepno2
mnpeepno2
note, it does not work for all websites!!!
EX: maximnapadiy.com IP: 207.182.145.229

IP reroutes to http:/t hos*****m/paid-hosting/paidhostingplans

~link approved by nextgen1
#5 · edited 16y ago · 16y ago
/B
/b/oss
i saw this somewhere. accoually if its your GJ. (i got CMD fucked up so ...)
#6 · 16y ago
aLcohoL_95
aLcohoL_95
hmm there is a lot of tutorial like that
can u give the credits?
#7 · 16y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • What tutorial website..By krew951 in Art & Graphic Design
    3Last post 17y ago
  • [TUTORIAL] How to access any website from restricted school networkBy [GENIUS] HaXoR in General Hacking
    4Last post 13y ago
  • [Request] Website banner tutorialBy tehshiz in Tutorials
    2Last post 15y ago
  • [Tutorial] Beginners guide to making a websiteBy Ariez in General
    1Last post 17y ago
  • Website ID Card TutorialBy Bull3t in Tutorials
    15Last post 19y ago

Tags for this Thread

None