This instruction is tested on Ubuntu 22.04 LTS
- UDP 4500
- UDP 500
- Custom protocol 50
| const fs = require('fs'); | |
| const parser = require('fast-xml-parser'); | |
| const soapRequest = require('./soap'); | |
| const url = ''; // your SOAP service url | |
| const headers = { | |
| 'Content-Type': 'text/xml;charset=UTF-8', | |
| 'soapAction': '', // SOAP Action url, if needed |
This snippet is about cross-platform AES-GCM-256 encryption & decryption, Where payload is being encrypted using JAVA and decrypted using NODE
sample config :
{
"masterKey": "sfcpnnjFG6dULJfo1BEGqczpfN0SmwZ6bgKO5FcDRfI=",
"iterations": 2333,
"keyLength": 32,
"digest": "sha512"
| <html> | |
| <head> | |
| <title>WebSocket demo</title> | |
| </head> | |
| <body> | |
| <div> | |
| <form> | |
| <label for="numberfield">Number</label> | |
| <input type="text" id="numberfield" placeholder="12"/><br /> |
| brew install tinyproxy | |
| tinyproxy -c /usr/local/etc/tinyproxy/tinyproxy.conf -d | |
| Tests: | |
| NO AUTH | |
| curl -iv --noproxy "*" --location http://www.google.com | |
| AUTH FAIL |
| GNU AFFERO GENERAL PUBLIC LICENSE | |
| Version 3, 19 November 2007 | |
| Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> | |
| Everyone is permitted to copy and distribute verbatim copies | |
| of this license document, but changing it is not allowed. | |
| Preamble | |
| The GNU Affero General Public License is a free, copyleft license for |
| # Source: https://gist.github.com/fca66711eaf0440483eba42ee013311a | |
| ##################################### | |
| # How to Apply GitOps to Everything # | |
| # Combining Argo CD and Crossplane # | |
| # https://youtu.be/yrj4lmScKHQ # | |
| ##################################### | |
| # Referenced videos: | |
| # - Argo CD - Applying GitOps Principles To Manage Production Environment In Kubernetes: https://youtu.be/vpWQeoaiRM4 |
| apiVersion: storage.k8s.io/v1 | |
| kind: StorageClass | |
| metadata: | |
| name: do-block-storage-xfs | |
| provisioner: dobs.csi.digitalocean.com | |
| parameters: | |
| fsType: xfs | |
| reclaimPolicy: Retain | |
| volumeBindingMode: WaitForFirstConsumer |
| /* | |
| * Just copy and paste the code. | |
| */ | |
| package editabletableview; | |
| import java.time.LocalDate; | |
| import java.time.ZoneId; | |
| import java.time.format.DateTimeFormatter; | |
| import java.time.format.FormatStyle; | |
| import java.util.Date; |