-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.py
More file actions
23 lines (18 loc) · 995 Bytes
/
server.py
File metadata and controls
23 lines (18 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Kitlesel Takip Sistemi
# Author: Mistih
# Date: 2024-02-24
# Version: 1.0.0
# Type: Server
# This program is not work in the one machine, this program will be work in the 20 VPS machines.
# From main machine, the socket will be open the 20 VPS machines and the 20 VPS machines will be scan the whole network systems in the world and will notificate the main machine.
# Program: Main
# Description: This program will be scan the whole network systems in the world and will be collect the data from 'OPEN SOURCE' the systems.
# The data will examine by the Algorithm and data will be tagged by the Algorithm.
# Data will be huge and the because of that the data will be stored in the 'Big Data' systems.
# The data will be used for the 'Security' purposes.
# Server Preparation Phase
# Importing the Libraries
import socket, time, threading, asyncio
from App.Server.Socket import ServerSocket
s = ServerSocket("0.0.0.0", 8000)
asyncio.run(s.run())