logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Linux下Kill多个同名进程

ps -efww|grep processname|grep -v grep|cut -c 9-15|xargs kill -9  管道符“|”用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。下面说说用管道符联接起来的几个命令:  “ps -efww”是查看所有进程的命令。这时检索出的进程将作为下一条命令“grep processname”的输入。

Docker 动态修改容器中的环境变量

法一:将命令添加至/etc/bash.bashrc后重启容器如:echo export LLL=123 >> bash.bashrc参考:https://stackoverflow.com/questions/41349007/set-environment-variable-in-running-docker-contianer法二:修改容器配置文件,重启后生效:...

#docker#云服务#容器
安装ACR122U后Proxmark3无法使用

参考:https://github.com/samhv/RFID-proxmark3-HID-device/wiki/Linux-(Ubuntu)DriverNo drivers are required to use the Proxmark within Linux. You will however need to do a couple of things as r

jadx批量反编译

jadx反编译de_file('/xxxWEB-INF/classes/com/');function de_file($dir){if ( $handle = opendir( "$dir" ) ) {    while ( false !== ( $item = readdir( $handle ) ) ) {    if ( $item != "." && $item

OXID eShop 6.x ~ 6.3.4 版本SQL注入漏洞到命令执行漏洞在线实验

来源:https://www.vulnspy.com/en-oxid-eshop-6.x-sqli-to-rce/实验地址:https://www.vsplate.com/?github=vsplate/dcenvs/tree/master/oxideshop_ce/6.3.3/dc&autogo=11. 将PHP代码写入数据库http://***.vsgo.cloud/source/en

#php
到底了