码迷,mamicode.com
首页 >  
搜索关键字:users    ( 8928个结果
美白‘她’的照片
from PIL import Image from PIL import ImageEnhance import cv2 import numpy as np image = Image.open('C:\\Users\\12943\\Desktop\\love.png') image.show( ...
分类:其他好文   时间:2020-04-11 13:07:22    阅读次数:70
C#执行bat(CMD)
1、网上搜到的一般的都好繁琐,偶尔搜到了这个简单: private void Click_CMD(object sender, RoutedEventArgs e) { //ProcessStartInfo start = new ProcessStartInfo(@"C:\Users\33\Des ...
分类:Windows程序   时间:2020-04-10 00:52:21    阅读次数:71
Sqli-labs Less-53 order by后的堆叠注入
和less51是一样的,只是这里的mysql错误不会在前台显示,但是对于stacked injection是一样的利用方式 http://127.0.0.1/sql/Less-53/?sort=1';create table less53 like users--+ ...
分类:数据库   时间:2020-04-09 22:55:42    阅读次数:196
Sqli-labs Less-52 order by后的堆叠注入
和less50是一样的,只是这里的mysql错误不会在前台显示,但是对于stacked injection是一样的利用方式 http://127.0.0.1/sql/Less-52/?sort=1;create table less52 like users ...
分类:数据库   时间:2020-04-09 22:52:53    阅读次数:135
Sqli-labs Less-51 order by后的堆叠注入
关键代码 $id=$_GET['sort']; $sql="SELECT * FROM users ORDER BY '$id'"; mysqli_multi_query($con1, $sql); 我们此处要进行stacked injection,要注释掉',此处给出payload: http:/ ...
分类:数据库   时间:2020-04-09 22:51:53    阅读次数:99
jieba
1 #jieba文本分析 2 import jieba 3 txt = open("C:/Users/86136/Documents/python文件测试/test.txt","rt",encoding="utf-8") 4 words=jieba.lcut(txt.read()) 5 counts ...
分类:其他好文   时间:2020-04-09 20:20:20    阅读次数:108
git 常用命令
参考: https://www.liaoxuefeng.com/wiki/896043488029600/900062620154944 $ mkdir learngit // 创建版本库 $ cd learngit $ pwd // 显示当前目录 /Users/michael/learngit $ ...
分类:其他好文   时间:2020-04-09 12:26:47    阅读次数:60
sqli-labs:Less-23
Less 23实验主要是: 这里我们输入单引号测试一下: 从图中说明有注入点,我们用前面的方法测试一下,用 或者 +都无法成功(前面用%23,其实就是 ) 从源代码中看到只要输入 和 都被代替为了空格 那么这里就需要绕过这样的过滤。这里可以使用 ;%00 来绕过,输入: localhost/Less ...
分类:数据库   时间:2020-04-08 18:50:53    阅读次数:100
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [C:\Users\86181\Desktop\0390\0390\assmchaoshicangku\out\artifacts\assmchaoshic
错误信息: - JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning - Context initialization failed org.springframework.beans.fa ...
分类:编程语言   时间:2020-04-07 12:55:07    阅读次数:70
Jieba分词——三国演义上卷节选
import jieba path = 'C:\\Users\\Administrator\\Desktop\\3国演义.txt' text = open(path,'r',encoding='utf-8').read() words = jieba.lcut(text) excludes = [' ...
分类:其他好文   时间:2020-04-07 09:31:11    阅读次数:75
8928条   上一页 1 ... 62 63 64 65 66 ... 893 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!