随笔分类 -  工具/环境配置

摘要:https://github.com/bee-san/Ares 先clone源码,然后编辑Cargo.toml文件,在 [dependencies] 中添加 half # ... 其他依赖 ... # 请保持此列表按字母顺序排列 [dependencies] ansi_term = "0.12.1" 阅读全文
posted @ 2025-06-11 08:49 NwN 阅读(40) 评论(0) 推荐(0)
摘要:man手册中文版设置 GNOME插件 https://github.com/tomflannaghan/proxy-switcher https://extensions.gnome.org/extension/4839/clipboard-history/ https://extensions.g 阅读全文
posted @ 2024-08-21 17:24 NwN 阅读(18) 评论(0) 推荐(0)
摘要:# 省的输入密码了,但是有一定安全风险 sudo chmod +s /usr/sbin/openvpn # alias alias thm='pgrep openvpn && echo "\nOpenVPN is already running\n" || (openvpn --config ~/D 阅读全文
posted @ 2024-04-13 17:44 NwN 阅读(3) 评论(0) 推荐(0)
摘要:# 设置缩放比例为2倍 gsettings set org.gnome.desktop.interface scaling-factor 2 阅读全文
posted @ 2024-04-12 19:58 NwN 阅读(173) 评论(0) 推荐(0)
摘要:deb https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main non-free contrib non-free-firmware # deb-src https://mirrors.tuna.tsinghua.edu.cn/kali 阅读全文
posted @ 2024-03-07 22:17 NwN 阅读(41) 评论(0) 推荐(0)
摘要:系统信息 ```shell Kali GNOME 44.1 X11 ``` Ctrl+Alt+F3进入无桌面终端,然后关掉桌面 ```shell sudo service gdm3 stop ``` 卸载驱动 ```shell sudo nvidia-uninstall ``` 阅读全文
posted @ 2023-06-06 16:18 NwN 阅读(58) 评论(0) 推荐(0)
摘要:需要root权限 从Android Q(10)开始,App默认只信任系统证书,除非另行配置,否则不信任用户安装的证书。 以下方法是将burp suite证书安装到系统证书的文件夹中,即安装为系统证书。 导出证书后进行格式转换 openssl x509 -inform DER -in PortSwig 阅读全文
posted @ 2023-03-14 17:21 NwN 阅读(1521) 评论(0) 推荐(0)
摘要:openssl x509 -inform der -in burpsuite.der -out burp.crt sudo cp burp.crt /usr/local/share/ca-certificates sudo update-ca-certificates 阅读全文
posted @ 2023-03-13 10:07 NwN 阅读(100) 评论(0) 推荐(0)
摘要:To disable MySQL from starting automatically at boot time on Ubuntu, follow these steps: Open a terminal window. Use the following command to stop the 阅读全文
posted @ 2023-01-05 17:50 NwN 阅读(317) 评论(0) 推荐(0)
摘要:sudo mysql -uroot -p #使用sudo之后mysql密码为空即可登陆 use mysql; update user set authentication_string='' where user='root'; flush privileges; ALTER USER 'root' 阅读全文
posted @ 2023-01-03 20:36 NwN 阅读(261) 评论(0) 推荐(0)
摘要:解决控制台输出乱码 a.打开注册表 计算机\HKEY_CURRENT_USER\Console\Tomcat b.找到CodePage项(没有则创建),更改值为十进制的65001 阅读全文
posted @ 2022-07-29 15:58 NwN 阅读(83) 评论(0) 推荐(0)
摘要:Java 8 JAVA_HOME C:\Program Files\Java\jdk1.8.0_202 CLASSPATH .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar Path %JAVA_HOME%\jre\bin %JAVA_HOME%\bin Jav 阅读全文
posted @ 2022-07-29 15:55 NwN 阅读(84) 评论(0) 推荐(0)
摘要:驱动安装:详见 GitHub - aircrack-ng/rtl8812au # root apt update apt install dkms build-essential libelf-dev linux-headers-`uname -r` git clone -b v5.6.4.2 ht 阅读全文
posted @ 2022-06-05 17:10 NwN 阅读(660) 评论(0) 推荐(0)
摘要:Python 修改 pip 源为国内源 1.临时换源: #清华源 pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple # 阿里源 pip install markdown -i https://mirrors.aliyun 阅读全文
posted @ 2022-02-16 21:40 NwN 阅读(7862) 评论(0) 推荐(0)