Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
4b2fbbfb
Commit
4b2fbbfb
authored
Nov 13, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 添加 MFA Radius py-radius 测试类
parent
0a74602d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
radius.py
apps/authentication/backends/radius.py
+31
-0
No files found.
apps/authentication/backends/radius.py
View file @
4b2fbbfb
...
...
@@ -51,3 +51,34 @@ class RadiusBackend(CreateUserMixin, RADIUSBackend):
class
RadiusRealmBackend
(
CreateUserMixin
,
RADIUSRealmBackend
):
pass
class
TestRadiusPyRadius
(
object
):
def
__init__
(
self
,
username
,
password
):
self
.
username
=
username
self
.
password
=
password
self
.
secret
=
settings
.
CONFIG
.
RADIUS_SECRET
self
.
host
=
settings
.
CONFIG
.
RADIUS_SERVER
self
.
port
=
settings
.
CONFIG
.
RADIUS_PORT
def
attr_to_json
(
self
):
attr_json
=
{
'username'
:
self
.
username
,
'password'
:
self
.
password
,
'secret'
:
self
.
secret
,
'host'
:
self
.
host
,
'port'
:
self
.
port
}
return
attr_json
def
authenticate
(
self
):
import
radius
print
(
'Authenticate Radius start: '
)
params
=
self
.
attr_to_json
()
print
(
"Params: {}"
.
format
(
params
))
r
=
radius
.
authenticate
(
self
.
username
,
self
.
password
,
self
.
secret
,
host
=
self
.
host
,
port
=
int
(
self
.
port
)
)
print
(
"Result: {}"
.
format
(
r
))
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