2020-12-19 myluzh
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', # Tuling Key,API的值
'api_secret': 'xxxx', # Tuling Key,API的值
'question': msg, # 发出去的消息
'type':'普通文本',
'limit':'8'
}
print('提出问题',msg)
rqq = requests.post(url, data=data)
# 当自动检测编码不正确时,手动指定编码
rqq.encoding = 'utf-8'
print('响应内容:', rqq.text)
time.sleep(random.ra...
阅读全文>>
标签: itchat 自动回复 python3
评论(0)
(884)
2020-12-19 myluzh
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版本
wget https://www.golangtc.com/static/go/1.9.2/go1.9.2.linux-amd64.tar.gz
3、解压go包
sudo tar -C /usr/local -xzf go1.9.2.linux-amd64.tar.gz
4、添加环境变量和go工作区
vim /etc/profile
在文件的底部添加以下两行:
export PATH=$PATH:/usr/local/go/bin export GOPATH=/usr/local/gopath
:wq 保存退出后,重新加载环境变量
source /etc/profile
至此,go环境搭建完毕。
下载编译frp
直接运行以下命令
go g...
阅读全文>>
标签: frp
评论(0)
(1010)
2020-12-18 myluzh
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 universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ ...
阅读全文>>
标签: ubuntu
评论(0)
(845)
2020-12-18 myluzh
Linux
0x01安装Nginx
安装Nginx
sudo apt-get install nginx
启动Nginx服务
sudo /etc/init.d/nginx start
停止Nginx服务
sudo /etc/init.d/nginx stop
加载最新配置
sudo /etc/init.d/nginx reload
默认配置文件位置简单配置
/etc/nginx/sites-enabled/default
server {
listen 80;
server_name localhost;
root /var/www/html;
location / {
index index.php index.html;
#autoindex off;
}
#开启php
location ~ \.php(.*)$ {
#"netstat -npl | grep php"可以找到php run路径
...
阅读全文>>
标签: ubuntu lnmp
评论(0)
(783)
2020-12-15 myluzh
SECURE
0x01 安装
使用没升级前的hackbar,升级完的是2.2.2版本,找到一个2.1.3版本,没有收费代码,可以直接加载使用。
hackbar2.1.3版本:https://github.com/Mr-xn/hackbar2.1.3
0x02关闭更新
firefox安装完hackbar插件后,进入插件管理,允许自动更新-关
阅读全文>>
标签: hackbar firefox 插件
评论(0)
(852)
2020-11-27 myluzh
SECURE
0x01 前言
今天在进服务器面板后台,看到防火墙有拦截内容,一看IP还是腾讯云的IP,有点意思,GET了我网站的一个URL地址如下,这应该是扫ThinkPHP漏洞的。
/index.php?s=/module/action/param1/${@die(md5(HelloThinkPHP))}
0x02 渗透
这篇文章所呈现技术比价低级,本来不想记录的,但是好不容易遇到一个这么简单的,过程这么顺利的渗透,还是记录下来哈哈。
敢扫我的机子,我抱着试试看的态度也尝试了一波渗透,虽然好久没有玩了,但是基本功还是在的。
namp扫了一波端口,主要发现80端口跟3389开着(很明显是个windows的服务器),打算先从网站入手。
直接访问http://111.xx.xx.xx/跳转到了http://111.xx.xx.xx/9panel/,是一个Websoft9的镜像管理运维面板。
直接访问phpmyadmin加上提示的root账号密码,真的进去了,那一切就好办了起来,phpinfo看了下网站目录,网站实际目录为:C:\websoft9\wampstack\apps\9panel
然后直接p...
阅读全文>>
标签: 渗透
评论(0)
(1197)