用户发送请求,返回帐号和密码
###利用框架flask
整体思路:
- # 目的:实现简单的登录的逻辑
- # 1需要get和post请求方式 需要判断请求方式
- # 2获取参数
- # 3执行shell
- # 4如果判断都没问题,就返回结果
导包
...
给模版传递消息 用flash --需要对内容加密,因此需要设置 secret_key , 做加密消息的混淆
python" id="highlighter_357109">
1
2
|
app = flask(__name__) app.secret_key = 'kingdomai' |
使用wtf实现表单,需要自定义一个表单类
1
2
3
4
5
|
#validators=[datarequired()保证填写了内容 class loginform(flaskform): username = stringfield( '用户名:' , validators = [datarequired()]) submit = submitfield( '提交' ) |
设置游标,并且方法为get和post
1
|
@app .route( '/form' , methods = [ 'get' , 'post' ]) |
定义一个方法
1
2
|
def login(): login_form = loginform() |
c判断请求方式
1
|
if request.method = = 'post' : |
获取请求参数
1
|
username = request.form.get( 'username' ) |
验证参数,wtf一句话实现校验,没有csrf token将报错,在表单中添加{{ form.csrf_token }}
1
|
if login_form.validate_on_submit(): |
执行shell
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
username = username print ( '创建用户...' ) # 创建用户 os.system( 'useradd %(name)s -s /home/work/%(name)s' % { 'name' : username}) # 随机一个密码 password = str ((random.randint( 100000 , 999999 ))) # 设置密码 os.system( 'echo %(name)s:%(pwd)s |chpasswd' % { 'name' : username, 'pwd' : password}) # 将面试题放入新创建用户路径下 os.system( 'cp -r /home/renligeng/exam/ /home/work/%(name)s' % { 'name' : username}) # 设置该路径权限 os.system( 'chmod 700 /home/work/%(name)s' % { 'name' : username}) # 设置用户权限 os.system( 'setfacl -m u:%(name)s:rwx /home/work/%(name)s' % { 'name' : username}) # 输出 os.system( 'echo "您好,您的账号为:" %(name)s ",密码为:" %(pwd)s' % { 'name' : username, 'pwd' : password}) return ( '您好,您的账号为:' + username + ',密码为:' + password) |
全部代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
mianshi.py from flask import flask, render_template, request, flash from flask_wtf import flaskform from wtforms import stringfield, submitfield from wtforms.validators import datarequired import os import random app = flask(__name__) app.secret_key = 'kingdomai' class loginform(flaskform): username = stringfield( '用户名:' , validators = [datarequired()]) submit = submitfield( '提交' ) @app .route( '/form' , methods = [ 'get' , 'post' ]) def login(): login_form = loginform() # 1判断请求方式 if request.method = = 'post' : # 2获取请求参数 username = request.form.get( 'username' ) # 3验证参数 没有csrf token 会报错 if login_form.validate_on_submit(): # 执行shell username = username print ( '创建用户...' ) os.system( 'useradd %(name)s -s /home/work/%(name)s' % { 'name' : username}) password = str ((random.randint( 100000 , 999999 ))) os.system( 'echo %(name)s:%(pwd)s |chpasswd' % { 'name' : username, 'pwd' : password}) os.system( 'cp -r /home/renligeng/exam/ /home/work/%(name)s' % { 'name' : username}) os.system( 'chmod 700 /home/work/%(name)s' % { 'name' : username}) os.system( 'setfacl -m u:%(name)s:rwx /home/work/%(name)s' % { 'name' : username}) os.system( 'echo "您好,您的账号为:" %(name)s ",密码为:" %(pwd)s' % { 'name' : username, 'pwd' : password}) return ( '您好,您的账号为:' + username + ',密码为:' + password) else : flash( '请输入用户名' ) return render_template( 'index.html' , form = login_form) if __name__ = = '__main__' : app.run( debug = true ) |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
index.html <!doctype html> <html lang = "en" > <head> <meta charset = "utf-8" > <title>title< / title> < / head> <body> <form method = "post" > {{ form.csrf_token }} {{ form.username.label }}{{ form.username }}<br> {{ form.submit }}<br> { % for message in get_flashed_messages() % } {{message}} { % endfor % } <hr> < / form> < / body> < / html> |
以上所述是小编给大家介绍的python执行shell脚本创建用户及相关操作详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:https://blog.csdn.net/MrRenLG/article/details/89157177