Skip to content

Instantly share code, notes, and snippets.

rem "ping -n 2" the "2" is the number of seconds to delay to changing color, you can edit this
rem if the text is not delaying (aka flashing at a rapid rate) then replace "127.0.0.1" with localhost
@echo off
title Team Devnet's Ranbow Text %time% // %date%
:1
cls
color 08
echo Hey there!
ping -n 2 127.0.0.1 > nul
@ChanSec
ChanSec / ChanSec's Website IP Grabber Code (VB.NET)
Last active August 29, 2015 13:59
This code is used to grab any websites IP. The code is written in VB.NET. There are many similar codes, so this is nothing special, but it does work. This particular code was coded by Team Devnet and was used by Cyb3rj1h4d in his DoS tool Eclipse v1.0.0.2.
Imports System.Net
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If WSITE.Text.Contains("http://") Then
Dim iphe As IPHostEntry = Dns.GetHostEntry(WSITE.Text.Replace("http://", String.Empty))
IPADD.Text = iphe.AddressList(0).ToString()
Else