这是网上拿来的两张图片以便更好的学习winhex 打开是这样的,很明显两个蓝标的位置从 00 00 改为 09 00就完成了伪加密,因此将他改掉 得到flag flag{Adm1N-B2G-kU-SZIP} ...
分类:
其他好文 时间:
2021-06-08 23:14:12
阅读次数:
0
1.数字样式 手写体 下载地址:https://files.cnblogs.com/files/yanye0xff/%E6%89%8B%E5%86%99%E4%BD%93.zip blingbling 下载地址:https://files.cnblogs.com/files/yanye0xff/bl ...
分类:
其他好文 时间:
2021-06-08 23:06:25
阅读次数:
0
提示备份文件 直接url/www.zip得到源代码 分别得到以下关键代码 <?php include 'flag.php'; error_reporting(0); class Name{ private $username = 'nonono'; private $password = 'yesy ...
分类:
Web程序 时间:
2021-06-08 22:34:20
阅读次数:
0
python客户端代码,可直接使用 import websocket import json import time import threading class WebsocketClient(object): """docstring for WebsocketClient""" def __i ...
分类:
编程语言 时间:
2021-06-07 21:05:52
阅读次数:
0
方法一: certutil -urlcache -split -f http://xx.xx.xx.xx/test.zip c:\test.zip (windows远程下载文件至本地,仅需要一个cmd执行的地方) 方法二: curl http://xx.xx.xx.xx/test.zip -o c: ...
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:
编程语言 时间:
2021-06-07 20:42:48
阅读次数:
0
安装php-rdkafka 扩展 ***先安装librdkafka >>>源码方式安装 git clone https://github.com/edenhill/librdkafka librdkafka-master.zip unzip librdkafka-master.zip cd libr ...
分类:
Web程序 时间:
2021-06-07 19:51:44
阅读次数:
0
面试题 一个包含n个整数的数组a,判断a中是否存在三个元素,a,b,c,使得a+b+c=0? 找出所有和为0并且不重复的三元组。不可包含重复的三元组。 如;a=[-1,0,1,2,-1,-4] 输出:[[-1,-1,2],[-1,0,1]] 如:a=[] 输出[] 如:a=[1,2] 输出[] 思考 ...
分类:
编程语言 时间:
2021-06-06 19:48:51
阅读次数:
0
面试题 某大厂迎来了新入职的大学生,现在需要为每个新同事分配一个工号。 人力资源部同事设计了一个方法为每个人进行排序并分配最终的工号,具体规则是: 将N(N<10000)个人排成一排,从第1个人开始报数;如果报数是M的倍数就出列,报到队尾(最后一位),则从头(回到对头)继续报,直到所有人都出列;最后 ...
分类:
编程语言 时间:
2021-06-06 19:03:35
阅读次数:
0
Python3 pandas DataFrame 基本功能讲解 import pandas as pd 导入库 df = pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False) 创建一个DataFrame 代 ...
分类:
编程语言 时间:
2021-06-06 18:58:17
阅读次数:
0