This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CVEs: | |
• http://blog.ptsecurity.com/2020/03/cve-2019-18683-exploiting-linux-kernel.html | |
Exploiting a Linux kernel vuln. in the V4L2 subsystem (CVE-2019-18683). | |
• https://google.github.io/security-research/pocs/linux/cve-2021-22555/writeup.html | |
Turning \x00\x00 into 10000$ (CVE-2021-22555). | |
• https://coreruleset.org/20210630/cve-2021-35368-crs-request-body-bypass/ | |
CRS Request Body Bypass (CVE-2021-35368). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Fully based on https://boxofcables.dev/accelerated-kvm-guests-on-wsl-2/ | |
if [ -z "$1" ] | |
then | |
echo "Must supply your Windows 10 username" | |
exit | |
fi | |
WIN_USERNAME=$1 | |
#package updates and installations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python -u | |
#-*- coding: utf-8 -*- | |
# Developer: Harold Kim([email protected]) | |
import os | |
import sys | |
import re | |
import requests | |
class iptime: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
""" | |
code to replicate: | |
static int d2charsave_checksum(unsigned char const *data, unsigned int len, unsigned int offset) | |
{ | |
int checksum; | |
unsigned int i; | |
unsigned int ch; |