![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/HauptJ/Golang-API-DNS
A simple Golang REST API for DNS queries.
8080
or the one specified in main.go
must be available.go get -u github.com/gorilla/mux
go get -u github.com/google/go-cmp/cmp
go get -u github.com/HauptJ/Golang-API-DNS/MXLookup
go get -u github.com/HauptJ/Golang-API-DNS/AddrLookup
go get -u github.com/HauptJ/Golang-API-DNS/CNAMELookup
go get -u github.com/HauptJ/Golang-API-DNS/HostLookup
go build main.go
./main
or .\main.exe
To Build and Run:
NOTE 1: Port 8880 or the one specified in docker-compose.yml and main.go must be available.
NOTE 2: On Windows 10 Pro or greater? You can use Chocolatey to install Docker Desktop for Windows and everything else listed below.
Install Docker and Docker Compose.
Docker
Chocolatey for Windows
Docker Compose
Chocolatey for Windows
Build and Run the container:
docker-compose build
docker-compose up
To stop
docker-compose down
/mx/{host}
/mx/hauptj.com
[
{
"Host": "string",
"Pref": int
},
...
]
[
{
"Host": "aspmx.l.google.com.",
"Pref": 10
},
{
"Host": "alt1.aspmx.l.google.com.",
"Pref": 20
},
{
"Host": "alt2.aspmx.l.google.com.",
"Pref": 30
},
{
"Host": "alt3.aspmx.l.google.com.",
"Pref": 40
},
{
"Host": "alt4.aspmx.l.google.com.",
"Pref": 50
}
]
/addr/{host}
/addr/1.1.1.1
[
"one.one.one.one."
]
/cname/research.swtch.com
string
"ghs.google.com."
/host/localhost
[
"string",
"string"
]
[
"::1",
"127.0.0.1"
]
TODO:
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.