摘要: # 省的输入密码了,但是有一定安全风险 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 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # 设置缩放比例为2倍 gsettings set org.gnome.desktop.interface scaling-factor 2 阅读全文
posted @ 2024-04-12 19:58 NwN 阅读(4) 评论(0) 推荐(0) 编辑
摘要: deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free non-free-firmware contrib deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non 阅读全文
posted @ 2024-03-07 22:17 NwN 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 本文由 Bing AI/New Bing/Sydney 根据这篇文章总结得出。 首先,我们假设有两个参与方S1和S2,他们分别持有秘密值x和y的加法分享值x1和x2,y1和y2。也就是说,x = x1 + x2,y = y1 + y2。他们想要计算x和y的乘积,但是不想暴露自己的分享值。 为了实现这 阅读全文
posted @ 2024-02-09 12:38 NwN 阅读(75) 评论(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 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 需要root权限 从Android Q(10)开始,App默认只信任系统证书,除非另行配置,否则不信任用户安装的证书。 以下方法是将burp suite证书安装到系统证书的文件夹中,即安装为系统证书。 导出证书后进行格式转换 openssl x509 -inform DER -in PortSwig 阅读全文
posted @ 2023-03-14 17:21 NwN 阅读(825) 评论(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 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 检查-元素/查看器 右击元素获得xpath,例如 /html/body/div[1]/div[1]/div[5]/div/div/div[3]/ul/li[1]/a /html/body/div[1]/div[1]/div[5]/div/div/div[3]/ul/li[2]/a /html/bod 阅读全文
posted @ 2023-01-26 18:37 NwN 阅读(350) 评论(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 阅读(257) 评论(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 阅读(231) 评论(0) 推荐(0) 编辑