摘要:
获取数据库列表屏蔽系统自带数据库 # 原代码 db_list_result = [('master', ), ('tempdb', ), ('model', ), ('msdb', ), ('student', ), ('school', )] db_list = [] for _database 阅读全文
摘要:
<span>服务器名称:<input type="text" name="server_name" placeholder="服务器名称自动获得" disabled="disabled"> </span><br> 显示结果服务器名称为灰色不可填入数据 服务器名称: 阅读全文
摘要:
EXEC xp_cmdshell 'wmic logicaldisk get freespace,caption | findstr C'; <class 'pyodbc.Row'> ('C: 25581236224 \r', ) 查看所有磁盘可用空间 Exec master.dbo.xp_fixe 阅读全文
摘要:
运行环境: 服务器端: MSSQL 2014 Server 2012 R2 程序端: Python 3.7.4 MacOS 10.14.6 CentOS Linux release 7.7.1908 (Core) 程序代码 #!/usr/bin/env pyhton # coding:utf-8 # 阅读全文
摘要:
Socket5 curl --socks5 10.2.46.19:10808 http://www.baidu.com # 查询结果 <!DOCTYPE html> <!--STATUS OK--><html> <head><meta http-equiv=content-type content= 阅读全文
摘要:
环境: Windows 2012 R2 SQL Server 2014 通过MSSQL查询数据库服务器时间,报错如下: pyodbc.ProgrammingError: ('42000', '[42000] [Microsoft][ODBC Driver 17 for SQL Server][SQL 阅读全文
摘要:
# string to bytes # 方法一:直接复制bytes类型 b'<str>' b = b'Hello World' print(type(b)) print(b) # 方法二:转换 s = 'Hello World' b = bytes(s,encoding='utf-8') print 阅读全文
摘要:
运行环境 Windows 2012 R2 1. Windows需要打开WinRM服务,Server系统默认打开,默认端口5985 # WinRM服务查看 PS C:\Users\Administrator> winrm enumerate winrm/config/listener Listener 阅读全文
摘要:
# 获取服务信息 PS C:\Users\Administrator> Get-Service win* Status Name DisplayName Stopped WinHttpAutoProx... WinHTTP Web Proxy Auto-Discovery Se... Running 阅读全文
摘要:
使用subprocess模块 import subprocess # 防火墙服务存在关闭状态 child1 = subprocess.Popen(["systemctl status firewalld | grep Active"], stdout=subprocess.PIPE, shell=T 阅读全文