1. Two Sum
2021-08-27
https://leetcode-cn.com/problems/two-sum/
319 字
|
2 分钟
Templates for leetcode problem solutions
2021-08-26
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
243 字
|
1 分钟
CMU 15-445/645 - Homework assignment #1 SQL
2021-05-27
execute sql queies in SQLite in IMDB database.
726 字
|
4 分钟
ECE9609 - Notes for Sudo Heap-based Buffer Overflow (CVE-2021-3156)
2021-03-20
Sudo Heap-based Buffer Overflow (CVE-2021-3156)
727 字
|
4 分钟
Limit GPU memory growth in tensorflow 2.4.x by setting environment variable
2021-03-11
set TF_FORCE_GPU_ALLOW_GROWTH to true.
29 字
|
1 分钟
ECE9609 - assignment 2, PicoCTF buffer overflow challenges
2021-02-05
Starting from assignment 2, I’ll using a kali linux VM to do the homework.
1744 字
|
9 分钟
ECE9609 - assignment 1, PicoCTF easy challenges
2021-01-22
from the title of the challenge, I could know that the exploit is most likely on the client side, which is the web page of the challenge.After open the web page provided in the description, it’s a simple login form asking for a credential. Since it’s a web page, I open dev tool in Chrome to look at the source.And then, I discoverd the following JS code. The js is to valid the string input from the form. and valid the string by spliting the string. So just append the string together would be the flag I need(at the order of the spliting).
1391 字
|
7 分钟