
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
github.com/wyllisMonteiro/mvc_go
It's a student project for building an application that allows user to create articles. I used strategy design pattern with Golang and MVC architecture.
/warticle/.env
USERDB
like this USERDB=root
PASSDB
like this PASSDB=root
NAMEDB
like this NAMEDB=wiki
docker-compose.yml
MYSQL_ROOT_PASSWORD, MYSQL_DATABASE, MYSQL_USER, MYSQL_PASSWORD
At the begining there is no articles because db is empty
Use docker-compose up --build -d
If you need to update Golang code you can execute docker-compose up --build -d app
Application at http://localhost:9000
Godoc at http://localhost:6060
$ sudo nano $HOME/.config/Code/User/settings.json
{
"go.lintTool":"golangci-lint",
"go.lintFlags": [
"--fast"
],
.golangci.yml
file, there are all the necessary toolsExample :
For example, you want to create unit tests to a file called auth.go Create a new file called auth_test.go at the same location than auth.go In that file, add all functions needed to make tests with Test in prefix function name like TestLogin(), TestLogout(). For more details about writting tests check this link : https://medium.com/better-programming/easy-guide-to-unit-testing-in-golang-4fc1e9d96679
$ go test ./...
$ golangci-lint run
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.