hexo_theme_AlphaDust
Use AlphaDust theme themes/alpha-dust/_config.yml 12345678910111213141516171819202122232425262728293031323334353637383940414243# Logo (Font Awesome Class)fa_logo: fa-cube# Headermenu: Home: / Archives: /archives About: /about.html# Tags: /tags# Categories: /categories Contact: /conta ...
Read more
Metasploit
测试用的被攻击Linux虚拟机镜像下载 Metasploitable start msconsole12service postgresql startmsconsole IRC on MetasploitableKali Linux: 192.168.56.100Metasploitable: 192.168.56.101 123456789search Unreal 3.2.1.8use exploit/unix/irc/unreal_ircd_3281_backdoorshow optionsset RHOSTS 192.168.56.101show payloadsset payl ...
Read more
ubuntu18.04双显示器配置
环境Thinkpad x201, ubuntu18.04, 外接显示器1920x1080, VGA接口 how-to-add-display-resolution-for-an-lcd-in-ubuntu-12-04-xrandr-problem First, use cvt to create a new resolution mode. 1234$ sudo cvt 1920 1080 60[sudo] xxxx 的密码:# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHzModeline " ...
Read more
Kali Linux应用
Kali Linux破解WPA/WPA2 Wifi密码 Kali Linux使用Aircrack破解wifi密码(wpa/wpa2)How To Hack WPA/WPA2 Wi-Fi With Kali Linux & Aircrack-ngHow To Crack WPA/WPA2 Wi-Fi Passwords Using Aircrack-Ng In Kali Notes: airodump-ng -c <channel> --bssid <WIFI BSSID> -w <Work directory&g ...
Read more
Kali linux
Install Kali Linux on VirtualBox. The host is ubuntu Set 1G memory and 2 CPUs. MT7601U Wireless Adapter in Kali in VirtualBoxMT7601U Wireless Adapter can be used in my host system. No need to do any setting. The ubuntu has driver already. But in guest VirtualBox Kali linux, it can’t work by default. ...
Read more
NFC笔记
在淘宝上买了一个IC卡复制工具 带了Windows版的软件和驱动 2020-05-28更新,最开始的软件有序列号,过期了。厂家更新了一个新的不需要序列号的软件。 下载NFC小黑3.0(1909)链接: https://pan.baidu.com/s/13G_Sgu1j_h_LzgJXgDvJwg 密码: eqc0 带的软件里有libnfc.dll, mfoc.dll两个文件。驱动程序就是一个”Prolific Technology, Inc. PL2303 Serial Port“ USB转串口驱动。读卡器是USB接口的,安装驱动之后映射岛了COM3。因此想到是否可以找到其他的软件使用 ...
Read more
Spring boot notes
Official site Start a new Spring boot projectTool to generate base framework
Read more
Gradle Notes
Gradle是一个基于Apache Ant和Apache Maven概念的项目自动化建构工具。它使用一种基于Groovy的特定领域语言来声明项目设置,而不是传统的XML。 当前其支持的语言限于Java、Groovy和Scala,计划未来将支持更多的语言 installInstallGradle Wrapper is recommended. It doesn’t need to install Gradle. reference https://gradle.org/http://blog.jobbole.com/99638/
Read more
Tips for Ubuntu 16.04
Browser to support JavaInstall Firefox 51. The new Firefox and Chrome don’t support Java anymore.Install IcedTea Java Web Start to support Java plugin. Full screen a window1wmctrl -r "Cloud Desktop GCG - Citrix Receiver for Java" -b toggle,fullscreen Switch between multi-desktopCTRL+ALT+ ...
Read more
Hexo notes
some commands12345hexo cleanhexo new "pagename"hexo ghexo shexo d g - generates - serverd - deploy
Read more
git notes
Adding an existing project to GitHub using the command line Adding an existing project to GitHub using the command line Note: 推荐使用SSH URL,可以不用每次提交都输入密码,需要客户端生成pub/pri key pair,然后通过Web控制台添加pub key到github/setting/SSH and GPG keys中 123456789101112131415$ git init$ git add .# Adds the fi ...
Read more
cmake notes
generate Makefile and related files in a single build folder1234mkdir buildcd buildcmake ..make install cmake on ubuntu12sudo apt-get updatesudo apt-get install cmake
Read more
Docker notes
check node:latest system version123456789101112131415docker run -it --rm \> api \> bashroot@8f56b2965b96:/usr/src/app# cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 8 (jessie)"NAME="Debian GNU/Linux"VERSION_ID="8"VERSION="8 (jessie)"ID=debianHOME_URL ...
Read more
How to setup OpenVPN over ssr on gcloud
apply VPC (google cloud compute engine)First, you need to access Google :) Google CloudGoogle Cloud console Click Compute EngineCreate new instance shadowsocks serverRefer to this post PC (install lubuntu on eeepc901)Some notes about lubuntu on eeepc901 shadowsocks clientRefer to this post server si ...
Read more
install lubuntu on eeepc901
How to show GRUB memu if it skipsHold “shift” key after BIOS load. How to edit GRUB parameterSelect a entry and press “e”After edit the parameter, press Ctrl-X or F10 to boot lubuntu Linux can’t display correctly after bootFirst, edit GRUB paramter and delete parameter 1gfxmode $linux_gfx_mode then ...
Read more
Markdown语法示例
参考Markdown 基本语法实验了一些makrdown语法。用hexo解析放到github上。 但不知道为什么有些内容不正确。比如勾选,表格。难道我装的hexo解析有问题? 列表1 列表2 有序列表1 有序列表2 勾选功能(好像不对,不知道是hexo的问题还是别的原因) no checked checked 代码 12import java.io.*;import mytest.*; 加粗斜体斜体加粗 一位伟人曾经说过… 表格 First Header Second Header Third Header Content Cell Content Cell ...
Read more
Quick Start
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. Create a new post1hexo new "My New Post" More info: Writing Run server1hexo server More info: ...
Read more