Skip to content

Instantly share code, notes, and snippets.

View AkiaCode's full-sized avatar
❤️
Thanks to @mozukun43

AkiaCode

❤️
Thanks to @mozukun43
View GitHub Profile
@AkiaCode
AkiaCode / CVE-2024-41475.md
Last active August 19, 2024 05:03
Gunboard 6 CORS Misconfiguration Vulnerability Report

[Name of affected Product]

  • gnuboard 6

[Affected version]

  • b9b6bb7, 6.0.7

[Vulnerability Type]

  • CORS Misconfiguration (CWE-942)

[Root Cause]

@AkiaCode
AkiaCode / rust-lib-error.md
Last active March 28, 2021 14:51
Rust lib 오류 해결 방법

만약 amethyst를 사용하려다가 '"lib.exe" did not execute successfully (status code exit code: 1181).' 이런 오류를 보면 toolchain을 stable-i686-pc-windows-msvc로 바꾸시고(rustup default stable-i686-pc-windows-msvc) 그리고 만약 rust 64bit로 설치하셨으면 지우시고 rust 32bit(+VS BUILD TOOLS 설치)로 설치하세요.

@AkiaCode
AkiaCode / init.sh
Created February 20, 2021 05:00
Create Project (Golang)
go mod init github.com/{github-username}/{project-name}
go get -u github.com/gin-gonic/gin
go mod vendor