展示常用信息
常用工具
bash
vscode
导航页面
Android程序服务端
文件上传
视频测试
会员视频
信息展示银行卡号6228480661366304813
6212264100005561885
6214832509532789
6666668249914314
信用卡号5329599178190488
美国银行
帐户1
20000043670051 028000024
帐户2
20000012485963 028000024
手机号14703386881
USDT(TRC20)TLRyqMj1Z5yrzY7SkXk3jbPLG3Lb5mdQK8
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
如何使用不同方式发送http请求
http请求发送http请求,通过命令行或者代码方法
> https://curlconverter.com
cURL123curl -H "Content-Type:text/html" www.google.com # headcurl www.google.com?cmd="ls -al" # getcurl --data "param1=value1¶m2=value2" www.google.com # post
javascript fetch123456789101112131415161718//headfetch('http://www.google.com', { headers: { 'Content-Type': 'text/html' }});// getfetch('http://www.google.com?cmd=ls -al' ...
如何在debian机器上使用kali源
在debian系统上添加kali源突然想要用到kali,但是不想安装.但是kali是基于debian的,想到区别应该不大,把源加上就行了
添加kali源编辑/etc/apt/sources.list
12345# debiandeb http://mirrors.ustc.edu.cn/debian/ bullseye main non-free contribdeb-src http://mirrors.ustc.edu.cn/debian/ bullseye main non-free contrib# kalideb http://mirrors.ustc.edu.cn/kali/ kali-rolling main non-free contrib
添加kali官方密钥1wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add
更新源1apt update
奇葩想法
在debian上安装pacman
自建KMS服务器激活Windows
kms微软windows/office激活工具(Key Management Services)
微软连接https://learn.microsoft.com/en-us/windows-server/get-started/kms-create-host
这里是要创建linux版的激活服务器
项目基于https://github.com/Wind4/vlmcsd
工具直接从github.com/Wind4/vlmcsd下载可执行文件
如需编译,自行编译
1wget https://github.com/Wind4/vlmcsd/releases/download/svn1113/binaries.tar.gz
配置启动服务即可
12# create a server listening on 1688./vlmcsd
使用
Windows激活
在需要激活的windows上执行如下命令(带管理员的cmd)
1234567# 输入激活密钥slmgr.vbs -ipk VDYBN-27WPP-V4HQT-9VMD4-VMK7H# 连接kms服务器slmgr.vbs -sk ...
如何让网站使用https
Let’s encrypt获取ssl证书,让网站安全访问
验证方式
http验证
给你一个随机内容的文件,你把这个文件放在一个特定的位置,用待绑定的域名+特定path可以访问到这个文件,可以认为域名是你的
DNS验证
给你一个随机字符串,你把这个字符串添加为待绑定域名的txt值,只要能通过公网上的DNS服务器解析到这个字串,就认为域名是你的
安装1pip install certbot
http验证
验证
http验证比较简单,按照提示步骤即可
1sudo certbot --nginx
更新1sudo certbot renew
DNS验证
验证 DNS验证多了一步,要到DNS服务上添加一条text记录
1certbot --text --agree-tos --email <your@email.com> -d <your.domain.com> --manual --preferred-challenges dns --expand --renew-by-default --manual-public-ip-logging-ok ...
Linux上轻量桌面对比
性能消耗最小的linux desktop使用的是只有2G内存的CentOS云服务器,尝试一下desktop
linux系统切换桌面环境使用vnc连接桌面,编辑$HOME/.vnc/xstartup
让vnc启动Xfce桌面环境
1/etc/X11/xinit/xinitrc
关闭vnc
1vncserver -kill :1
gnomegnome一开就占用500M空间,且不用的情况下,内存占用还会扩大,作为桌面还是可以的,
但是作为服务器就差强人意了
Xfce
安装
1dnf groupinstall "Xfce"
启动
编辑$HOME/.vnc/xstartup
12# /etc/X11/xinit/xinitrcstartxfce4
测评
实际使用空间在300M,比gnome好很多了
lxde
安装
1pacman -S lxde
启动
编辑$HOME/.vnc/xstartup
12# /etc/X11/xinit/xinitrcexec startlxde
测评
实际空间使用在1 ...
无处不在的linux云服务
cloud serverIBM LinuxONEIBM教育免费服务器,支持免费用120天
inteljupter 10小时使用时长,250G内存,CPU豪华级配置
devcloud 16G 支持使用120天
woiden云主机使用telegram注册,可以使用7天,可以持续续期.
共享公网IP的NAT VPS,可以使用反向代理
[登录IPv6](https://ssh.hax.co.id/)
alwaysdata100M免费空间,可以使用ssh登录,创建定时任务
cloud shell分享各种提供linux shell的云服务
xshellz提供的shell可以连续运行15天
google cloud shell有5G免费空间,可以用tmux一直保持运行,网页版本身就是tmux,每周50小时限制
github codespaces有8G内存,32G空间,写代码专用,30分钟无活动自动关闭
github actions可以创建定时任务
red hat openshift30天免费试用,等待90天后可以再次使用
功能太多,目前找到sandbox ide也非常好用
http ...
如何使用metasploit
网络安全之metasploit各种漏洞测试的工具
metasploit安装这下不能直接命令安装了,搜索官网
123curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \ chmod 755 msfinstall && \ ./msfinstall
开始使用以暴力破解ssh为例,开始演示
12345msfconsoleuse auxiliary/scanner/ssh/ssh_login #使用这个模块msf auxiliary(ssh_login) > set RHOSTS 10.0.0.27 # 设置remote hostmsf auxiliary(ssh_login) > set USERPASS_FILE root_userpass.txt # 设置密码文件msf auxilia ...