settings.py import time cur_path = os.path.dirname(os.path.realpath(__file__)) # log_path是存放日志的路径 log_path = os.path.join(os.path.dirname(cur_path), ' ...
分类:
其他好文 时间:
2020-07-14 18:48:19
阅读次数:
92
今天在项目中碰到了wcmc4.0这款cms,弱口令进入后台,发现搜索框有注入,可以最终拿下了sql-shell,但是当我们进行os-shell的时候发现,找不到其路径,于是我们使用selec t@@plugin_dir找到其插件的路径。于是尝试使用sql-shell写shell结果发现sqlmap爆 ...
分类:
其他好文 时间:
2020-07-14 18:26:38
阅读次数:
92
import pandas as pdimport os#获取exclexcl_files = []path = os.getcwd()print(path)files = os.listdir(path)print(files)for file in files: # print(file.spl ...
分类:
编程语言 时间:
2020-07-14 18:03:16
阅读次数:
69
import os import tarfile import zipfile import threading import winrm LOCAL_FILE_PATH = "C:\\" THREAD_MAX = threading.BoundedSemaphore(10) CONN_FLAG = ...
分类:
编程语言 时间:
2020-07-14 13:25:40
阅读次数:
100
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:
其他好文 时间:
2020-07-14 12:59:15
阅读次数:
223
import urllib.requestimport urllib.parseurl="https://tieba.baidu.com/f"word=input("请输入要爬的贴吧")#将贴吧名称变成url码word=urllib.parse.quote(word)#完整输入贴吧链接newUrl= ...
分类:
编程语言 时间:
2020-07-14 00:21:35
阅读次数:
56
'''@Desc:os模块的常用方法使用 os.getcwd() os.path.exists(dir) os.listdir(dir) os.path.join(dir, file) os.path.isfile(fullpath) os.path.isdir(fullpath) os.path. ...
分类:
其他好文 时间:
2020-07-13 21:29:20
阅读次数:
73
import os for i in os.scandir(r'E:\pandas练习'): print('文件名:',i.name) print('文件的绝对路径:',i.path) print('是否是文件夹:',i.is_dir()) print('是否是文件:',i.is_file()) p ...
分类:
其他好文 时间:
2020-07-13 18:03:46
阅读次数:
53
file ,err :=os.Open("d:\\aaa.txt") // 打开文件句柄 if err!=nil{ fmt.Println("打开文件出错") }else { fmt.Println("文件存在") } read := bufio.NewReader(file) // 创建文件读取对 ...
分类:
其他好文 时间:
2020-07-13 13:26:03
阅读次数:
97
首先要保证pc上可以连接上网络,然后进行下面的操作: 1.首先选择VMware的编辑选项 2.选择虚拟网络编辑器 3.还原默认设置,等待几分钟,确定就可以解决了 ...
分类:
系统相关 时间:
2020-07-12 16:31:03
阅读次数:
119