Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
nexdpi
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
sysadmin
nexdpi
Commits
2b7baae4
Commit
2b7baae4
authored
Apr 24, 2021
by
root
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add initial release
parent
3dfb2129
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
460 additions
and
0 deletions
+460
-0
dpi
dpi
+136
-0
shaping
shaping
+324
-0
No files found.
dpi
0 → 100755
View file @
2b7baae4
#!/usr/bin/python3
from
setproctitle
import
setproctitle
from
shell_cmd
import
sh
from
nfstream
import
NFStreamer
import
time
import
sys
import
json
deftimeout
=
"3600"
setproctitle
(
"dpi"
)
online_streamer
=
NFStreamer
(
source
=
"br0"
,
promiscuous_mode
=
False
,
splt_analysis
=
20
,
statistical_analysis
=
False
)
templconf
=
"""
{
"Cats":{
"Network":{
"nostart": [],
"noapps": [],
"knownapps": ["DHCP", "DHCPV6", "DNScrypt", "DoH_DoT", "DNS", "Ookla", "ICMP", "ICMPV6", "IGMP", "LLMNR", "MDNS", "DoH_DoT", "Ookla", "WSD"],
"ipset": "system_triplet",
"timeout":"3600"
},
"Game":{
"nostart": [],
"noapps": [],
"knownapps": ["Steam", "Xbox", "Playstation"],
"ipset": "streaming_triplet",
"timeout":"3600"
},
"Template-GroupName":{
"nostart": ["DNS", "ICMP"],
"noapps": [],
"knownapps": [],
"ipset": "name_ipset",
"timeout":"3600"
}
},
"Apps":{
"TikTok":{
"ipset": "kids_triplet",
"nostart": [],
"timeout": "3600",
"knowstarts":"TLS"
}
}
}
"""
try
:
fconf
=
open
(
"/etc/nexdpi/dpirules.conf"
,
"r"
)
R
=
json
.
loads
(
fconf
.
read
())
fconf
.
close
()
except
:
print
(
" Cant start without a rules file.
\n\n
"
)
print
(
" Please use the following example to create a JSON config file as /etc/nexdpi/dpirules.conf
\n\n
"
)
print
(
templconf
)
sys
.
exit
(
0
)
Cats
=
R
[
'Cats'
]
Apps
=
R
[
'Apps'
]
UnknownMatch
=
[]
class
NexDPI
():
fullname
=
False
isknown
=
False
def
__init__
(
self
):
print
(
time
.
asctime
(),
"NexDPI created"
)
def
main
(
self
):
print
(
time
.
asctime
(),
"NexDPI started"
)
for
flow
in
online_streamer
:
if
self
.
fullname
and
not
self
.
fullname
in
UnknownMatch
and
not
self
.
isknown
:
print
(
self
.
fullname
)
UnknownMatch
.
append
(
self
.
fullname
)
self
.
isknown
=
False
self
.
fullname
=
flow
.
application_name
+
" "
+
flow
.
application_category_name
triplet
=
str
(
flow
.
dst_ip
)
+
","
+
str
(
flow
.
dst_port
)
+
","
+
str
(
flow
.
src_ip
)
cname
=
flow
.
application_category_name
aname
=
flow
.
application_name
sername
=
aname
.
split
(
"."
)[
-
1
:][
0
]
ipv
=
flow
.
ip_version
if
cname
in
list
(
Cats
.
keys
()):
if
ipv
==
6
:
ipset_list
=
Cats
[
cname
][
'ipset'
]
+
"6"
else
:
ipset_list
=
Cats
[
cname
][
'ipset'
]
if
not
aname
.
startswith
(
Cats
[
cname
][
'nostart'
])
and
not
sername
in
Cats
[
cname
][
'noapps'
]:
sh
(
"ipset test "
+
ipset_list
+
" "
+
triplet
+
" >/dev/null 2>&1 || ipset add "
+
ipset_list
+
" "
+
triplet
+
" timeout "
+
Cats
[
cname
][
'timeout'
]
+
" > /dev/null 2>&1"
)
if
sername
in
Cats
[
cname
][
'knownapps'
]:
self
.
isknown
=
True
continue
if
sername
in
list
(
Apps
.
keys
()):
appd
=
Apps
[
sername
]
if
ipv
==
6
:
ipset_list
=
appd
[
'ipset'
]
+
"6"
else
:
ipset_list
=
appd
[
'ipset'
]
if
not
aname
.
startswith
(
appd
[
'nostart'
]):
sh
(
"ipset test "
+
ipset_list
+
" "
+
triplet
+
" >/dev/null 2>&1 || ipset add "
+
ipset_list
+
" "
+
triplet
+
" timeout "
+
appd
[
'timeout'
]
+
" > /dev/null 2>&1"
)
if
aname
.
startswith
(
appd
[
'knowstarts'
]):
self
.
isknown
=
True
continue
#print(flow.application_is_guessed)
#print(flow.src_ip)
#print(flow.src_port)
#print(flow.dst_ip)
#print(flow.dst_port)
#print(flow.requested_server_name)
#time.sleep(0.1)
if
__name__
==
"__main__"
:
import
sys
ndpi
=
NexDPI
()
ndpi
.
main
()
shaping
0 → 100755
View file @
2b7baae4
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment