1.在 https://www.crx4chrome.com/extensions/jinjaccalgkegednnccohejagnlnfdag/ 点击 “Download”. 2.点击 “Download crx file from Crx4Chrome”. ...
分类:
其他好文 时间:
2021-01-05 11:10:58
阅读次数:
0
package mainimport ( "os/exec" "syscall")// open opens the specified URL in the default browser of the user.func main() { // 无GUI调用 cmd := exec.Comman ...
0x00 cewl http://192.168.43.179/websec/爬取页面所有的单词做成字典 hydra -l contact@hacknos.com -P cewl.txt 192.168.43.179 http-post-form "/websec/admin:username=^U ...
分类:
其他好文 时间:
2021-01-04 10:56:16
阅读次数:
0
首先介绍Python的"万能"装饰器模版: import os def decor(func): def with_decor(*args, **kwargs): #这里内部嵌套函数使原函数参数能顺利传递 func(*args, **kwargs) #func_A 会在这里被调用 a = args ...
分类:
其他好文 时间:
2021-01-02 10:36:03
阅读次数:
0
解决Rust -- update crates.io过慢的问题 在经过一系列操作,科,学,上,网等方法之后亲测无效,想到更改rust的文件源来加快速度 首先进入电脑的cargo目录,MAC OS 默认安装在 ~/.cargo下: cd ~/.cargo 1 创建一个config文件,这里使用vim编 ...
分类:
其他好文 时间:
2021-01-01 12:17:12
阅读次数:
0
第一种方法: 可以通过访问:https://chrome.google.com/webstore/detail/selenium-ide/mooikfkahbdckldjjndioackbalphokd?utm_source=chrome-ntp-icon 12 进行安装 第二种方法 第一种方法无法 ...
分类:
其他好文 时间:
2020-12-31 12:54:41
阅读次数:
0
改完文件名称后,Dr.he 发现分别保存5个状态的jpg 文件的文件夹出现缺少文件的情况。为了让他少熬夜查找缺失文件,结合网友分享的脚本,写了查找以下代码,满足他的需求,也以防自己忘记。以下代码能解决实际需求,适合初学者。不足之处,欢迎指出修正! 1 import os 2 import datet ...
分类:
编程语言 时间:
2020-12-31 12:27:12
阅读次数:
0
code from threading import Thread from multiprocessing import Process import os def work(name): print('{}的pid是'.format(name), os.getpid()) if __name__ ...
分类:
编程语言 时间:
2020-12-31 12:09:31
阅读次数:
0
code import os from multiprocessing import Process def f(x): print('子进程id :',os.getpid(),'父进程id :',os.getppid()) return x*x if __name__ == '__main__': ...
分类:
系统相关 时间:
2020-12-31 12:06:57
阅读次数:
0
import os import time import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 """ del_list = os.listdir(filepath) for f in del_list: file_path = os ...
分类:
其他好文 时间:
2020-12-31 11:42:16
阅读次数:
0