yjiang's cake

byobu的两个设置习惯

byobu-select-backend:可以设置tmux或者screen模式显示

byobu-ctrl-a:设置ctrl+a为命令键

更多可以byobu+tab来查看

CURL命令示例

curl.post.nobody

curl -v -X POST http://api.1001s.cn/v1/magazine/123/like

curl.post.form (application/x-www-form-urlencoded)

curl -v -X POST --data "username=foo&password=bar" https://api.1001s.cn/v1/auth/signup

curl.post.form (multipart/form-data)

具体格式见 [http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2]

curl -v -F 'name=1.jpg' -F 'file=@1.jpg' http://chanyouji2.com/upload

curl.put.json

curl -v -X PUT --data-binary @filename.json --header "Content-Type:application/json" http://api.1001s.cn/v1/user/me

curl.put.file

curl -v -X PUT --data-binary @filename.jpg --header "Content-Type:image/jpeg" http://api.1001s.cn/v1/user/me/avatar

curl.delete

curl -v -X DELETE http://api.1001s.cn/v1/comment/123

多次请求

curl -v http://api.1001s.cn/?[1-10]  #请求10次
curl -v http://api.1001s.cn/foo?user=admin&[1-99] #请求99次

使用nmap检查本地开放的端口及使用hydra检测密码强度

先安装nmap,并扫描本地端口

nmap -sS -O -P0 target_ip

安装hydra,并随便装找个若密码字典对mysql、ssh进行猜解

hydra target_ip mysql -l username -p passwd.txt -e ns -t 10

# -l 用户名
# -p 密码文件
# -e 检查空密码
# -t 线程

nv驱动提示无法安装,需要关闭x-window

CTRL+ALT+F1

sudo service lightdm stop or sudo stop lightdm

sudo init 3 and install your *.run file.

快速修改默认编辑器(nano->vim)

sudo update-alternatives --config editor
===========================
    1    /bin/ed
*+  2    /bin/nano
    3    /usr/bin/nvi
    4    /usr/bin/mcedit-debian
    5    /usr/bin/vim.basic

#选择vim.basic

or : 
==========================
export EDITOR=vim 

Copyright © 2016 yjiang's cake

返回顶部