近期学习鸿蒙硬件物联网开发,用到的开发语言是C; 一、基础语法:第一个案例: 命令 gcc hello.c #include <stdio.h> //stdio.h 是一个头文件 , #include 是一个预处理命令,用来引入头文件 void func2(){ printf("C语言小白变怪兽") ...
分类:
编程语言 时间:
2021-07-05 19:05:43
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
from turtle import *def square(size=50): pencolor('orange') for i in range(4): fd(size) left(90)def main(): setup(800,600) speed(0) for i in range(10) ...
分类:
其他好文 时间:
2021-06-15 18:22:41
阅读次数:
0
task 3 def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for i in range(10) ...
分类:
其他好文 时间:
2021-06-15 18:11:32
阅读次数:
0
picoctf_2018_echo_back 题目分析 简单的格式化字符串,修改got@pus为main函数地址制造循环即可: 先制造循环 修改printf@got为system@plt 输入/bin/sh获取shell 最终EXP from pwn import * sh:tube = proce ...
分类:
其他好文 时间:
2021-06-05 18:01:10
阅读次数:
0
报错信息: 报错代码: 报错原因: 期望布尔值,得到字符串 1 解决方法: 解决: ...
分类:
其他好文 时间:
2021-05-24 14:19:10
阅读次数:
0
import turtle turtle.width(20) turtle.color("red") turtle.circle(50) turtle.penup() turtle.goto(150,0) turtle.pendown() turtle.width(20) turtle.color( ...
分类:
其他好文 时间:
2021-05-24 12:47:05
阅读次数:
0
Log File Sync …. It may not be your headache DBAs !!! My company got a new customer for our product and around 2-3 months ago all setup was formed for ...
分类:
数据库 时间:
2021-04-14 12:41:13
阅读次数:
0
明显的格式化字符串漏洞,没什么好说的 通过%x找到偏移为8 还是改got表,但是这题没有后门函数,将got表泄露后得到libc基址 然后找到system和bin/sh的地址即可 但我就不明白了他们咋就搞到onegadget的 然后利用格式化字符串漏洞时原来pwntools自带工具的,震惊我一年 使用 ...
分类:
其他好文 时间:
2021-04-13 11:52:03
阅读次数:
0
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:
其他好文 时间:
2021-04-12 12:28:51
阅读次数:
0