Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2020-092
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2020 - 092
2020-092
Commits
9a6723f2
Commit
9a6723f2
authored
Nov 02, 2020
by
Ashen Udayanga Sudugala
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Navindu' into 'master'
Navindu See merge request
!8
parents
65c8b393
20de777f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
49 deletions
+1
-49
Slowloris Attack/slowlorisModel.py
Slowloris Attack/slowlorisModel.py
+1
-1
Slowloris.py
Slowloris.py
+0
-48
No files found.
Slowloris Attack/slowlorisModel.py
View file @
9a6723f2
...
@@ -31,7 +31,7 @@ from sklearn.metrics import classification_report
...
@@ -31,7 +31,7 @@ from sklearn.metrics import classification_report
import
seaborn
as
sns
import
seaborn
as
sns
# Importing the dataset
# Importing the dataset
dataset
=
pd
.
read_csv
(
'
/Users/harithachanuka/Documents/SLIIT/Research/Harry/Wanheda_Server/Slowloris/SlowlorisDATASET.numbers
'
)
dataset
=
pd
.
read_csv
(
'
SlowlorisDATASET.csv
'
)
# Read in data and display first 5 rows
# Read in data and display first 5 rows
dataset
.
head
()
dataset
.
head
()
...
...
Slowloris.py
deleted
100644 → 0
View file @
65c8b393
# -*- coding: utf-8 -*-
"""
Created on Sat May 16 17:40:32 2020
@author: navin
"""
# Simple Linear Regression
# Importing the libraries
import
numpy
as
np
import
matplotlib.pyplot
as
plt
import
pandas
as
pd
# Importing the dataset
dataset
=
pd
.
read_csv
(
'dataset_7.csv'
)
X
=
dataset
.
iloc
[:,
:
-
1
]
.
values
y
=
dataset
.
iloc
[:,
84
]
.
values
# Splitting the dataset into the Training set and Test set
from
sklearn.model_selection
import
train_test_split
X_train
,
X_test
,
y_train
,
y_test
=
train_test_split
(
X
,
y
,
test_size
=
1
/
3
,
random_state
=
0
)
# Training the Simple Linear Regression model on the Training set
from
sklearn.linear_model
import
LinearRegression
regressor
=
LinearRegression
()
regressor
.
fit
(
X_train
,
y_train
)
# Predicting the Test set results
y_pred
=
regressor
.
predict
(
X_test
)
# Visualising the Training set results
plt
.
scatter
(
X_train
,
y_train
,
color
=
'red'
)
plt
.
plot
(
X_train
,
regressor
.
predict
(
X_train
),
color
=
'blue'
)
plt
.
title
(
'Slowloris Attack Testing'
)
plt
.
xlabel
(
'X'
)
plt
.
ylabel
(
'Y'
)
plt
.
show
()
# Visualising the Test set results
plt
.
scatter
(
X_test
,
y_test
,
color
=
'red'
)
plt
.
plot
(
X_train
,
regressor
.
predict
(
X_train
),
color
=
'blue'
)
plt
.
title
(
'Slowloris Attack Testing'
)
plt
.
xlabel
(
'X'
)
plt
.
ylabel
(
'Y'
)
plt
.
show
()
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