1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
def verify_data(resdata,expdata,ignorkey=[]): logging.info("-" * 100) logging.info("响应数据:{0}".format(resdata)) logging.info("期望数据:{0}".format(expdata) ...
分类:
Web程序 时间:
2021-06-19 19:37:34
阅读次数:
0
小猫的配置,方便项目测试,大家可以参考下 -noverify -javaagent:D:\tomcat_jrebel\jrebel.jar-Drebel.aspectj_plugin=true-Drebel.spring_plugin=true -Drebel.log4j-plugin=true-n ...
分类:
其他好文 时间:
2021-05-24 13:47:57
阅读次数:
0
import smtplib import os from email.header import Header from email.mime.text import MIMEText # shenyuximr@163.com def sendemail(host,usernames,verify ...
分类:
编程语言 时间:
2021-05-24 04:25:15
阅读次数:
0
一、源码解析 对python原生文件打补丁: import eventlet eventlet.monkey_patch() 跟踪进入该模块方法:eventlet.patcher#monkey_patch def monkey_patch(**on): ...... modules_to_patch ...
分类:
其他好文 时间:
2021-05-03 12:19:04
阅读次数:
0
layui表单校验除了layui本身自带的几种方法外,如果我们要增加自定义的校验方法就需要自己书写 如图我在lay-verify中除了layui表单自带的title校验方法外,我又增加了一个叫做jiaoyan的方法,具体书写如下图: 此方法我增加了输入校验不能为纯数字和包含特殊字符,需要写在from ...
分类:
其他好文 时间:
2021-05-03 11:42:15
阅读次数:
0
运行环境python3.7 #coding=utf-8 import requests import time import json import re import sqlite3 url=[] for i in open("AURL.txt"): url.append(i) yaoqing=u ...
分类:
其他好文 时间:
2021-04-27 14:10:35
阅读次数:
0
1.以dba管理员登录 sqlplus / as sysdba 2.查看密码策略 SQL> select * from dba_profiles where resource_NAME='PASSWORD_VERIFY_FUNCTION'; 3.登录PL/SQL,以sysdba方式登录,密码输入默认 ...
分类:
数据库 时间:
2021-04-09 12:59:55
阅读次数:
0
W: GPG error: http://mirrors.cloud.aliyuncs.com/ubuntu xenial-backports InRelease: Could not execute 'apt-key' to verify signature (is gnupg installed ...
分类:
其他好文 时间:
2021-04-08 13:43:02
阅读次数:
0
<verify-code :key="codeNum" ></verify-code> 比如:这个是获取验证码的组件 初始化codeNum:new Date().getTime() 我们只需要去改变codeNum就会让组件重新刷新 需要的时候重新去给codeNum赋值就可以了 ...
分类:
其他好文 时间:
2021-04-01 12:53:12
阅读次数:
0