SSTIPΞNinnubsec.hashnode.dev·Jun 18, 2023 · 1 min readSetup Nessus in DockerHow to Setup Nessus Vulnerability Scanner in Docker Requirements: Docker Guide: Get the Nessus activation code from the Tenable website: https://www.tenable.com/products/nessus/nessus-essentials Start docker and run the command below : docker...00
SSTIPΞNinstpn.hashnode.dev·Mar 9, 2023 · 1 min read[Code] Hello World! NodeJSReferences : https://nodejs.org/dist/latest-v16.x/docs/api/ Hello World. index.js const hello = 'Hello world'; console.log(hello); Read File System. const fs = require('fs'); const textIn = fs.readFileSync('./txt/motivation.txt', 'utf-8'); console.l...00
SSTIPΞNinstpn.hashnode.dev·Mar 9, 2023 · 1 min read[Code] Synchronous vs. Asynchronous CodeApa itu Synchronous Code?Seperti namanya, sinkronis berarti berada dalam urutan, yaitu setiap pernyataan kode dieksekusi satu per satu secara berurutan, sehingga setiap pernyataan harus menunggu antrian yang sebelumnya untuk diselesaikan agar pernyat...00
SSTIPΞNinnubsec.hashnode.dev·Feb 16, 2023 · 4 min readDevSecOps IntroductionWhat is DevSecOps? DevSecOps is a term derived from the acronym for development, security, and operation. It's not something new in the secure software development lifecycle, it's just an art to involve a security perspective from the beginning of th...00
SSTIPΞNinstpn.hashnode.dev·Jan 30, 2023 · 1 min read[Note] SSL ConfigurationCreate a self-signed certificate $ openssl req -new -x509 -sha256 -newkey rsa:2048 -nodes -keyout server.key -out cert.pem Create a signing request $ openssl req -new -sha256 -newkey rsa:2048 -nodes -keyout staging.key -out staging.csr00