Skip to content

Instantly share code, notes, and snippets.

View ngothienlo's full-sized avatar
🏠
Working from home

Ngọc Lực ngothienlo

🏠
Working from home
View GitHub Profile
@ngothienlo
ngothienlo / 002-itemmall-lineage-report-public.md
Created April 9, 2026 07:05
Redacted forensic report 002

[002] ItemMall Lineage Report (Redacted Public Version)

Sensitive identifiers, timestamps, and infrastructure paths are redacted in this public version.

1) Executive summary

  • Reconstructed 55 purchase rows (46 unique item IDs) from the investigated wave.
  • Estimated points used: 1,602,338 (Account A) + 33,520 (Account B) = 1,635,858.
  • Reconstructed 9 transfer links between Account A and Account B.
  • 35 item IDs were consumed/removed at least partially.
@ngothienlo
ngothienlo / wsl-port-forwarding.md
Created July 2, 2024 07:53 — forked from estsaon/wsl-port-forwarding.md
How to SSH into WSL2 on an external Window

WSL:

  1. Install openssh-server:
sudo apt install openssh-server
  1. Add or uncomment following lines in /etc/ssh/sshd_config:
@ngothienlo
ngothienlo / wsl2-network.ps1
Created March 28, 2021 05:45 — forked from xmeng1/wsl2-network.ps1
WSL2 Port forwarding port to linux
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
if( $found ){
$remoteport = $matches[0];
} else{
echo "The Script Exited, the ip address of WSL 2 cannot be found";
exit;
}