CentOS7 安装GNOME桌面 开启VNC连接 Linux

0x01安装GNOME桌面 1.更新系统 yum -y upgrade 2.安装必要的软件包 yum -y install grub2-efi fwupdate 3.安装GNOME桌面 yum -y groupinstall 'GNOME Desktop' 'Graphical Administration Tools' 4.如何卸载GNOME桌面? sud...
myluzh 发布于 

Linux 启动服务 systemctl命令 Linux

systemctl is-enabled servicename.service #查询服务是否开机启动 systemctl enable *.service #开机运行服务 systemctl disable *.service #取消开机运行 systemctl start *.service #启动服务 systemctl stop *.service...
myluzh 发布于 

python3 itchat微信自动回复机器人 Python

import itchat import requests import random import time def get_response(msg): url = 'http://i.itpk.cn/api.php'#自动回复API接口 data = { #接口参数 'api_key': 'xxxx', ...
myluzh 发布于 

frp源码编译 默认页面修改 NOTES

搭建GO环境 1、安装依赖 #Ubuntu sudo apt-get install bison ed gawk gcc libc6-dev make #CentOS sudo yum install gcc 2、下载go支持包 各版本的下载地址 https://www.golangtc.com/static/go/,我使用的是当前最新的1.9.2版本 wg...
myluzh 发布于 

Ubuntu 20.04 换国内源 Linux

文件位置:/etc/apt/sources.list #添加阿里源 deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted un...
myluzh 发布于 

Ubuntu 20.04 安装配置LNMP环境 Linux

0x01安装Nginx 安装Nginx Shell sudo apt-get install nginx 启动Nginx服务 Shell sudo /etc/init.d/nginx start 停止Nginx服务 Shell sudo /etc/init.d/nginx stop 加载最新配置 Shell sudo /etc/init.d/nginx re...
myluzh 发布于 

Firefox Hackbar 安装 SECURE

0x01 安装 使用没升级前的hackbar,升级完的是2.2.2版本,找到一个2.1.3版本,没有收费代码,可以直接加载使用。 hackbar2.1.3版本:https://github.com/Mr-xn/hackbar2.1.3 0x02关闭更新 firefox安装完hackbar插件后,进入插件管理,允许自动更新-关
myluzh 发布于 

记录一次对恶意攻击者的反向渗透 SECURE

0x01 前言 今天在进服务器面板后台,看到防火墙有拦截内容,一看IP还是腾讯云的IP,有点意思,GET了我网站的一个URL地址如下,这应该是扫ThinkPHP漏洞的。 /index.php?s=/module/action/param1/${@die(md5(HelloThinkPHP))} 0x02 渗透 这篇文章所呈现技术比价低级,本来不想记录的,但...
myluzh 发布于 

certbot申请Let's Encrypt泛域名证书 NOTES

0x01简介 Let's Encrypt —— 是一个由非营利性组织 互联网安全研究小组(ISRG)提供的免费、自动化和开放的证书颁发机构(CA),简单的说,就是为网站提供免费的 SSL/TLS 证书。 Let's Encrypt 生成证书的工具很多,certbot 是官方推荐的签发工具。 0x02申请步骤(基于Centos7 python2.7.5): g...
myluzh 发布于 

python itchat拦截微信群或好友撤回消息 Python

import sys import os, re, shutil, time, collections, json from html.parser import HTMLParser from xml.etree import ElementTree as ETree import itchat from itchat.content import *...
myluzh 发布于