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 /
aws /
aws-sdk-go@v1.50.8 /
[ HOME SHELL ]
Name
Size
Permission
Action
.changelog
[ DIR ]
dr-xr-xr-x
.github
[ DIR ]
dr-xr-xr-x
aws
[ DIR ]
dr-xr-xr-x
awstesting
[ DIR ]
dr-xr-xr-x
example
[ DIR ]
dr-xr-xr-x
internal
[ DIR ]
dr-xr-xr-x
models
[ DIR ]
dr-xr-xr-x
private
[ DIR ]
dr-xr-xr-x
service
[ DIR ]
dr-xr-xr-x
.gitignore
204
B
-r--r--r--
.godoc_config
492
B
-r--r--r--
CHANGELOG.md
1.21
MB
-r--r--r--
CHANGELOG_PENDING.md
53
B
-r--r--r--
CODE_OF_CONDUCT.md
309
B
-r--r--r--
CONTRIBUTING.md
7.08
KB
-r--r--r--
LICENSE.txt
11.09
KB
-r--r--r--
Makefile
5.98
KB
-r--r--r--
NOTICE.txt
120
B
-r--r--r--
README.md
22.35
KB
-r--r--r--
buildspec.yml
492
B
-r--r--r--
doc.go
18.75
KB
-r--r--r--
go.mod
168
B
-r--r--r--
go.sum
1.37
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
LINTIGNOREDOC='service/[^/]+/(api|service|waiters)\.go:.+(comment on exported|should have comment or be unexported)' LINTIGNORECONST='service/[^/]+/(api|service|waiters)\.go:.+(type|struct field|const|func) ([^ ]+) should be ([^ ]+)' LINTIGNORESTUTTER='service/[^/]+/(api|service)\.go:.+(and that stutters)' LINTIGNOREINFLECT='service/[^/]+/(api|errors|service)\.go:.+(method|const) .+ should be ' LINTIGNOREINFLECTS3UPLOAD='service/s3/s3manager/upload\.go:.+struct field SSEKMSKeyId should be ' LINTIGNOREENDPOINTS='aws/endpoints/(defaults|dep_service_ids).go:.+(method|const) .+ should be ' LINTIGNOREDEPS='vendor/.+\.go' LINTIGNOREPKGCOMMENT='service/[^/]+/doc_custom.go:.+package comment should be of the form' LINTIGNORESINGLEFIGHT='internal/sync/singleflight/singleflight.go:.+error should be the last type' UNIT_TEST_TAGS="example codegen awsinclude" ALL_TAGS="example codegen awsinclude integration perftest" # SDK's Core and client packages that are compatable with Go 1.5+. SDK_CORE_PKGS=./aws/... ./private/... ./internal/... SDK_CLIENT_PKGS=./service/... SDK_COMPA_PKGS=${SDK_CORE_PKGS} ${SDK_CLIENT_PKGS} # SDK additional packages that are used for development of the SDK. SDK_EXAMPLES_PKGS=./example/... SDK_TESTING_PKGS=./awstesting/... SDK_MODELS_PKGS=./models/... SDK_ALL_PKGS=${SDK_COMPA_PKGS} ${SDK_TESTING_PKGS} ${SDK_EXAMPLES_PKGS} ${SDK_MODELS_PKGS} TEST_TIMEOUT=-timeout 5m all: generate unit ################### # Code Generation # ################### generate: cleanup-models gen-test gen-endpoints gen-services gen-test: gen-protocol-test gen-codegen-test gen-codegen-test: @echo "Generating SDK API tests" go generate ./private/model/api/codegentest/service gen-services: @echo "Generating SDK clients" go generate ./service gen-protocol-test: @echo "Generating SDK protocol tests" go generate ./private/protocol/... gen-endpoints: @echo "Generating SDK endpoints" go generate ./models/endpoints cleanup-models: @echo "Cleaning up stale model versions" go run -tags codegen ./private/model/cli/cleanup-models/* "./models/apis/*/*/api-2.json" ################### # Unit/CI Testing # ################### build: go build -o /dev/null -tags ${ALL_TAGS} ${SDK_ALL_PKGS} unit-no-verify: @echo "go test SDK and vendor packages" go test ${TEST_TIMEOUT} -v -count=1 -tags ${UNIT_TEST_TAGS} ${SDK_ALL_PKGS} unit: verify build unit-no-verify unit-with-race-cover: verify build @echo "go test SDK and vendor packages" go test ${TEST_TIMEOUT} -v -count=1 -tags ${UNIT_TEST_TAGS} -race -cpu=1,2,4 ${SDK_ALL_PKGS} unit-old-go-race-cover: @echo "go test SDK only packages for old Go versions" go test ${TEST_TIMEOUT} -v -count=1 -race -cpu=1,2,4 ${SDK_COMPA_PKGS} ci-test: generate unit-with-race-cover ci-test-generate-validate ci-test-generate-validate: @echo "CI test validate no generated code changes" git update-index --assume-unchanged go.mod go.sum git add . -A gitstatus=`git diff --cached --ignore-space-change`; \ echo "$$gitstatus"; \ if [ "$$gitstatus" != "" ] && [ "$$gitstatus" != "skipping validation" ]; then echo "$$gitstatus"; exit 1; fi git update-index --no-assume-unchanged go.mod go.sum ####################### # Integration Testing # ####################### integration: core-integ client-integ core-integ: @echo "Integration Testing SDK core" AWS_REGION="" go test -count=1 -tags "integration" -v -run '^TestInteg_' ${SDK_CORE_PKGS} ./awstesting/... client-integ: @echo "Integration Testing SDK clients" AWS_REGION="" go test -count=1 -tags "integration" -v -run '^TestInteg_' ./service/... s3crypto-integ: @echo "Integration Testing S3 Cyrpto utility" AWS_REGION="" go test -count=1 -tags "s3crypto_integ integration" -v -run '^TestInteg_' ./service/s3/s3crypto cleanup-integ-buckets: @echo "Cleaning up SDK integraiton resources" go run -tags "integration" ./awstesting/cmd/bucket_cleanup/main.go "aws-sdk-go-integration" ################### # Sandbox Testing # ################### sandbox-tests: sandbox-test-go1.5 sandbox-test-go1.6 sandbox-test-go1.7 sandbox-test-go1.8 sandbox-test-go1.9 sandbox-test-go1.10 sandbox-test-go1.11 sandbox-test-go1.12 sandbox-test-go1.13 sandbox-test-go1.14 sandbox-test-go1.15 sandbox-test-go1.16 sandbox-test-go1.17 sandbox-test-gotip sandbox-build-%: @# sandbox-build-go1.17 @# sandbox-build-gotip docker build \ -f ./awstesting/sandbox/Dockerfile.test.$(subst sandbox-build-,,$@) \ -t "aws-sdk-go-$(subst sandbox-build-,,$@)" . sandbox-run-%: sandbox-build-% @# sandbox-run-go1.17 @# sandbox-run-gotip docker run -i -t "aws-sdk-go-$(subst sandbox-run-,,$@)" bash sandbox-test-%: sandbox-build-% @# sandbox-test-go1.17 @# sandbox-test-gotip docker run -t "aws-sdk-go-$(subst sandbox-test-,,$@)" update-aws-golang-tip: docker build --no-cache=true -f ./awstesting/sandbox/Dockerfile.golang-tip -t "aws-golang:tip" . ################## # Linting/Verify # ################## verify: lint vet lint: @echo "go lint SDK and vendor packages" @lint=`golint ./...`; \ dolint=`echo "$$lint" | grep -E -v -e ${LINTIGNOREDOC} -e ${LINTIGNORECONST} -e ${LINTIGNORESTUTTER} -e ${LINTIGNOREINFLECT} -e ${LINTIGNOREDEPS} -e ${LINTIGNOREINFLECTS3UPLOAD} -e ${LINTIGNOREPKGCOMMENT} -e ${LINTIGNOREENDPOINTS} -e ${LINTIGNORESINGLEFIGHT}`; \ echo "$$dolint"; \ if [ "$$dolint" != "" ]; then exit 1; fi vet: go vet -tags "example codegen awsinclude integration" --all ${SDK_ALL_PKGS} ################ # Dependencies # ################ get-deps: @echo "getting pre go module dependnecies" go get github.com/jmespath/go-jmespath get-deps-verify: @echo "go get SDK verification utilities" go get golang.org/x/lint/golint ############## # Benchmarks # ############## bench: @echo "go bench SDK packages" go test -count=1 -run NONE -bench . -benchmem -tags 'bench' ${SDK_ALL_PKGS} bench-protocol: @echo "go bench SDK protocol marshallers" go test -count=1 -run NONE -bench . -benchmem -tags 'bench' ./private/protocol/... ############# # Utilities # ############# docs: @echo "generate SDK docs" $(AWS_DOC_GEN_TOOL) `pwd` api_info: @go run private/model/cli/api-info/api-info.go
Close