
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
github.com/varun-r-mallya/MVC-LMS-SDS
Advanced tools
.env from .env.exampledocker-compose up --build to start the server systemctl start httpd
systemctl enable httpd
cp ./.conf/srv.index.html /srv/http/index.html
mkdir /etc/httpd/conf/vhosts
cp ./.conf/xeonlib.org.conf /etc/httpd/conf/vhosts/xeonlib.org
mkdir /srv/xeonlib.org
cp ./.conf/srv.index.html /srv/xeonlib.org/index.html
chown -R root:http /srv/xeonlib.org
rm /etc/httpd/conf/httpd.conf
cp ./.conf/httpd.conf /etc/httpd/conf/httpd.conf
echo "127.0.0.1 xeonlib.org" >> /etc/hosts
systemctl restart httpd
docker-compose down to stop the server./init.sh as root (ONLY FOR ARCH)/etc/hosts filego migrate and add connection strings to your MySQL / MariaDB database in the format given below and add it to the Makefile as shown below:migration_up:
@read -p "Enter version: " v; \
migrate -path database/migration/ -database "mysql://username:password@tcp(localhost:port<usually 3306>)/databasename?" -verbose up $$v
migration_down:
@read -p "Enter version: " v; \
migrate -path database/migration/ -database "mysql://username:password@tcp(localhost:port<usually 3306>)/databasename?" -verbose down $$v
migration_fix:
@read -p "Enter version: " v; \
migrate -path database/migration/ -database "mysql://username:password@tcp(localhost:port<usually 3306>)/databasename?" force $$v
./init.sh scriptmake migration_up to run the migrations and press enter to up all versions..env.example file to .env and paste the contents there and add required credentialsair (hot reload support)curl -sSfL https://raw.githubusercontent.com/cosmtrek/air/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
make dev to start in development modemake build to get a binary in ./target/ directory.env, use mode dev to get Logs, use mode prod to get only system critical/spotlit logsdocker build -t xeonlib1 .docker run -p 8080:8080 xeonlib1FAQs
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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.