python学习笔记-1

1.编码

  • 对于单个字符的编码,Python提供了ord()函数获取字符的整数表示,chr()函数把编码转换为对应的字符:

  • 要注意区分’ABC’和b’ABC’,前者是str,后者虽然内容显示得和前者一样,但bytes的每个字符都只占用一个字节。

  • 以Unicode表示的str通过encode()方法可以编码为指定的bytes,例如:

    Read More

如何使服务器更加安全

前些天买了个境外服务器本来是打算做梯子用的。可是买的第二天就发现了有安全问题。

第二天登陆进去服务器的问候语就提示在本次登陆和上次成功登陆之间共有三千多次失败登陆。这个消息着实吓我一天。然后我查登陆日志。发现了很多其他国家的IP。像什么孟加拉国,土耳其,而且还有中国内陆的天津,青岛。
还好我的密码比较复杂。不然真的被那些脚本小子猜出来了。

然后我便在百度上Google了一下。总体来说有如下几种简单的方案。当然也有更加安全的方案。但是配置也更复杂,还要花时间去学习,不好。

  • 更改SSH登陆的默认端口
  • 禁止root账号登陆
  • 使用智能卡登陆
  • 禁止密码登陆,使用秘钥登陆
  • 开启防火墙,添加防火墙白名单
  • 使用fail2ban 软件(大多数选择)
  • 自己写脚本监控登陆日志,并添加到cron定时任务,如果有某个ip在指定时间内有指定次数次失败登陆就把此Ip加入到deny.hosts。(实际跟上一个软件同理)

基本上做到了1,2两条就能预防大多数攻击了。

正则表达式复习

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.*;  
import java.util.regex.*;
class Regex
{
public static void main(String[] args)
{

test3();
}
public static void test3(){//邮箱匹配
String mail = "[email protected]";
String regex = "[a-zA-Z0-9_]+@[a-zA-Z0-9_]+\\.[a-zA-Z]{2,3}";
System.out.println(mail.matches(regex));
}
public static void test2(){//ip地址排序
String ip_str = "10.21.130.111 12.210.15.1 15.12.12.1 152.152.15.151 13.151.15.1";
ip_str = ip_str.replaceAll("(\\d+)","00$1");//补齐0
System.out.println(ip_str);

ip_str = ip_str.replaceAll("0*(\\d{3})","$1");//去掉多余的0
System.out.println(ip_str);
//用TreeSet排序。

String[] ips = {"10.21.130.111","12.210.15.1","15.12.12.1","152.152.15.151","13.151.15.1"};

}
public static void test1(){//治疗口吃
String str = "我我我我....我我我...要.要.要要要要..学学学学....学编编编...编编程..程...程程....程程";
str = str.replaceAll("\\.+","");
System.out.println(str);
str = str.replaceAll("(.)\\1+","$1");
System.out.println(str);

}
public static void f4(){//huo qu
String str = "da jia hao ,ming tian bu fang jia!";
/*
将正则规则进行对象的封装
Pattern p = Pattern.compile("a*b");
通过正则对象的matcher方法与字符创串相关联、获取要对字符串操作的匹配器对象Matcher
Matcher m = p.matcher("aaaaab");
通过Matcher匹配器对象的方法对字符串进行操作
boolean b = m.matches();
*/
String regex = "\\b[a-z]{3}\\b";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(str);
while(m.find()){
System.out.print(m.group());System.out.println(m.start()+":"+m.end());
}
/*
jia
hao
jia
*/

}
public static void f3(){//ti huan
String str = "xiaoqiangttttzhangsanmmmmmzhaoliu";
str = str.replaceAll("(.)\\1+","$1");
System.out.println(str);
String tel = "15700001111";
tel = tel.replaceAll("(\\d{3})(\\d{4})(\\d{4})","$1****$3");
System.out.println(tel);//157****1111
}
public static void f2(){//fen ge
String str = "xiaoqiangttttzhangsanmmmmmzhaoliu";
String[] name = str.split("(.)\\1+");
for(String s:name){
System.out.println(s);
}
}
public static void f1(){//pi pei
String regex = "1[358]\\d{9}";
String s = "211215121";
Scanner sc = new Scanner(System.in);
while((s=sc.nextLine())!=null){
System.out.println(s.matches(regex));
}
}
}

用java代码给图片添加水印

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.gentlehu.tools;  


import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;


public class Demo {

public static void main(String[] args) {
String srcImgPath = "d:/data/test.jpg";
String targerPath = "d:/data/test1.jpg";
new Demo().writeMark(srcImgPath,"http://www.domain.com",targerPath);
new Demo().writeMark(srcImgPath,"http://www.domain.com");

}
/**
* 将图片写到其他地方,不覆盖原图
*/
public void writeMark(String srcImagePath,String info,String descImagePath){
try {
File uploadFile = new File(srcImagePath);
Font font = new Font("Courier New", Font.BOLD, 20);
BufferedImage uploadImage = ImageIO.read(uploadFile);
int width = uploadImage.getWidth();
int height = uploadImage.getHeight();
BufferedImage combined = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics g = combined.getGraphics();
g.drawImage(uploadImage, 0, 0, null);
g.setFont(font);
g.setColor(Color.GRAY);
g.drawString(info, 10, height - 15);
File descFile = new File(descImagePath);
ImageIO.write(combined, "jpg", descFile);
System.out.println("添加水印成功!!!");
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 将图片写到本身,覆盖原图
*/
public void writeMark(String srcImagePath,String info) {
writeMark(srcImagePath,info,srcImagePath);
}

}